diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index b12768ccf..88cdc0bde 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -8,20 +8,34 @@ jobs:
strategy:
fail-fast: false
matrix:
- java_version: ['11', '17', '20']
+ java_version: ['17', '20']
os: [ubuntu-latest, windows-latest, macOS-latest]
+ include:
+ - os: windows-latest
+ prefix: win
+ - os: ubuntu-latest
+ prefix: nix
+ - os: macOS-latest
+ prefix: mac
steps:
- - uses: actions/checkout@v3.1.0
+ - uses: actions/checkout@v4.1.0
+ with:
+ submodules: true
+ lfs: true
- name: Set up JDK ${{ matrix.java_version }}
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
- distribution: 'adopt'
+ distribution: 'liberica'
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Archive test results
- if: failure()
- uses: actions/upload-artifact@v3.1.0
+ if: always() && matrix.prefix == 'nix'
+ uses: EnricoMi/publish-unit-test-result-action@v2
+ with:
+ junit_files: "**/test-results/test/**/*.xml"
+ - name: Archive test results
+ if: always() && matrix.prefix != 'nix'
+ uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
- name: junit_report_${{ matrix.os }}_${{ matrix.java_version }}
- path: build/reports/tests/test
+ junit_files: "**/test-results/test/**/*.xml"
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
index b302a2832..2ee163185 100644
--- a/.github/workflows/gh-pages.yml
+++ b/.github/workflows/gh-pages.yml
@@ -16,21 +16,23 @@ jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3.1.0
+ - uses: actions/checkout@v4.1.0
+ with:
+ submodules: true
+ lfs: true
- name: Setup JDK
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 17
- distribution: 'adopt'
-
+ distribution: 'liberica'
- name: Build javadoc
run: ./gradlew --no-daemon javadoc
- name: Set up Python
- uses: actions/setup-python@v4.2.0
+ uses: actions/setup-python@v5.0.0
with:
- python-version: '3.6'
+ python-version: '3.10'
architecture: 'x64'
- name: Install dependencies
@@ -122,7 +124,7 @@ jobs:
cp -R temp/site/. public/dev/en
- name: Deploy
- uses: peaceiris/actions-gh-pages@v3.8.0
+ uses: peaceiris/actions-gh-pages@v3.9.3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_branch: gh-pages
diff --git a/.github/workflows/publish-to-sonatype.yml b/.github/workflows/publish-to-sonatype.yml
new file mode 100644
index 000000000..df99ce4f4
--- /dev/null
+++ b/.github/workflows/publish-to-sonatype.yml
@@ -0,0 +1,37 @@
+name: Publish to Sonatype
+
+on:
+ release:
+ types: [published]
+ push:
+ branches:
+ - develop
+ workflow_dispatch:
+
+jobs:
+ publish:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up JDK
+ uses: actions/setup-java@v4
+ with:
+ java-version: 17
+ distribution: 'liberica'
+ - name: Publish to Sonatype
+ run: ./gradlew publishMavenPublicationToSonatypeRepository -PsimplifyVersion
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }}
+ ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
+ ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_SIGNING_KEY }}
+ ORG_GRADLE_PROJECT_signingInMemoryPassword: ${{ secrets.GPG_SIGNING_PASSWORD }}
+ - name: Close repository
+ if: github.event_name == 'release'
+ run: ./gradlew closeAndReleaseRepository
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }}
+ ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
+ ORG_GRADLE_PROJECT_nexusUsername: ${{ secrets.SONATYPE_USERNAME }}
+ ORG_GRADLE_PROJECT_nexusPassword: ${{ secrets.SONATYPE_PASSWORD }}
diff --git a/.github/workflows/qa-sq.yml b/.github/workflows/qa-sq.yml
new file mode 100644
index 000000000..eb32ed7a9
--- /dev/null
+++ b/.github/workflows/qa-sq.yml
@@ -0,0 +1,31 @@
+name: QA
+
+on:
+ push:
+ branches:
+ - develop
+ - master
+ pull_request:
+
+jobs:
+ QA:
+ runs-on: ubuntu-latest
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.event.repository.full_name
+ steps:
+ - uses: actions/checkout@v4.1.0
+ with:
+ fetch-depth: ''
+ submodules: true
+ lfs: true
+ - run: |
+ git fetch --prune --unshallow
+ - name: Set up JDK 17
+ uses: actions/setup-java@v4
+ with:
+ java-version: 17
+ distribution: 'liberica'
+ - name: SonarCloud Scan
+ run: ./gradlew check sonar
+ env:
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml
deleted file mode 100644
index fac1d0ccf..000000000
--- a/.github/workflows/qa.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-name: QA
-
-on:
- push:
- branches:
- - develop
- - master
- pull_request:
-
-jobs:
- QA:
- runs-on: ubuntu-latest
- if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.event.repository.full_name
- steps:
- - uses: actions/checkout@v3.1.0
- with:
- fetch-depth: ''
- - run: |
- git fetch --prune --unshallow
- - name: Set up JDK 17
- uses: actions/setup-java@v3
- with:
- java-version: 17
- distribution: 'adopt'
- - name: SonarCloud Scan
- run: ./gradlew check sonarqube
- env:
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 3987ce14a..4f81bd928 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,4 +5,10 @@ build/
*.orig
/.idea/jarRepositories.xml
/.idea/compiler.xml
-/.idea/**/*.iml
+/.idea/inspectionProfiles/Project_Default.xml
+/.idea/modules.xml
+*.iml
+/.idea/workspace.xml
+/.idea/sonar*
+
+/.idea/misc.xml
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 000000000..579e59c8e
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,8 @@
+[submodule "src/test/resources/ext/designer/ssl_3_1"]
+ path = src/test/resources/ext/designer/ssl_3_1
+ url = ../ssl_3_1.git
+ shallow = true
+[submodule "src/test/resources/ext/edt/ssl_3_1"]
+ path = src/test/resources/ext/edt/ssl_3_1
+ url = ../ssl_3_1_edt.git
+ shallow = true
diff --git a/.idea/.name b/.idea/.name
deleted file mode 100644
index 4e322887b..000000000
--- a/.idea/.name
+++ /dev/null
@@ -1 +0,0 @@
-mdclasses
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
deleted file mode 100644
index a55e7a179..000000000
--- a/.idea/codeStyles/codeStyleConfig.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/dictionaries/vmaksimov.xml b/.idea/dictionaries/vmaksimov.xml
deleted file mode 100644
index 4347b031c..000000000
--- a/.idea/dictionaries/vmaksimov.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- autonumeration
- mdclass
- xdto
- автонумерации
- враппер
- десериализации
- парсим
-
-
-
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index cae81d0c5..a176339ca 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -1,21 +1,16 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/mdclasses.iml b/.idea/mdclasses.iml
deleted file mode 100644
index 78b2cc53b..000000000
--- a/.idea/mdclasses.iml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
deleted file mode 100644
index 8f27022c6..000000000
--- a/.idea/misc.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 3607d3056..000000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index f29f32db5..ba670089a 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -4,5 +4,6 @@
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
deleted file mode 100644
index dfe8de79f..000000000
--- a/.idea/workspace.xml
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1557156891962
-
-
- 1557156891962
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MDObject
- JAVA
- EXPRESSION
-
-
- jaxbUnmarshaller.unmarshal(XML)
- JAVA
- EXPRESSION
-
-
- ((UnmarshalException)((UnmarshalException)jaxbUnmarshaller.unmarshal(XML)).cause).detailMessage
- JAVA
- javax.xml.bind.UnmarshalException
- EXPRESSION
-
-
- context
- JAVA
- EXPRESSION
-
-
- el
- JAVA
- EXPRESSION
-
-
- (org.github._1c_syntax.mdclasses.original.MetaDataObject) ((JAXBElement) jaxbUnmarshaller.unmarshal(XML)).getValue()
- JAVA
- EXPRESSION
-
-
- ((JAXBElement) test).getValue()
- JAVA
- javax.xml.bind.JAXBElement
- EXPRESSION
-
-
- test
- JAVA
- EXPRESSION
-
-
- ((MetaDataObject)((JAXBElement)jaxbUnmarshaller.unmarshal(XML)).value).configuration
- JAVA
- org.github._1c_syntax.mdclasses.original.MetaDataObject,javax.xml.bind.JAXBElement
- EXPRESSION
-
-
-
-
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 89c582c4d..000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-language: java
-
-jdk:
- - openjdk11
-
-addons:
- sonarcloud:
- organization: "1c-syntax"
-
-after_script:
- - ./gradlew sonarqube
-
-git:
- depth: false
-
-before_cache:
- - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- - rm -fr $HOME/.gradle/caches/*/plugin-resolution/
-cache:
- directories:
- - $HOME/.gradle/caches/
- - $HOME/.gradle/wrapper/
\ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
index d8fcacbe8..b8a24ca79 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,46 +1,65 @@
-import java.net.URI
+import me.qoomon.gitversioning.commons.GitRefType
import java.util.*
plugins {
`java-library`
`maven-publish`
jacoco
+ signing
id("org.cadixdev.licenser") version "0.6.1"
- id("com.github.gradle-git-version-calculator") version "1.1.0"
- id("io.freefair.lombok") version "8.3"
- id("io.freefair.javadoc-links") version "8.3"
- id("io.freefair.javadoc-utf-8") version "8.3"
+ id("me.qoomon.git-versioning") version "6.4.3"
+ id("com.gorylenko.gradle-git-properties") version "2.4.1"
+ id("io.freefair.lombok") version "8.4"
+ id("io.freefair.javadoc-links") version "8.4"
+ id("io.freefair.javadoc-utf-8") version "8.4"
+ id("io.freefair.maven-central.validate-poms") version "8.4"
+ id("ru.vyarus.pom") version "2.2.2"
id("org.sonarqube") version "4.4.1.3373"
+ id("io.codearte.nexus-staging") version "0.30.0"
}
-group = "com.github.1c-syntax"
-version = gitVersionCalculator.calculateVersion("v")
+group = "io.github.1c-syntax"
+gitVersioning.apply {
+ refs {
+ considerTagsOnBranches = true
+ tag("v(?[0-9].*)") {
+ version = "\${ref.tagVersion}\${dirty}"
+ }
+ branch(".+") {
+ version = "\${ref}-\${commit.short}\${dirty}"
+ }
+ }
+
+ rev {
+ version = "\${commit.short}\${dirty}"
+ }
+}
+val isSnapshot = gitVersioning.gitVersionDetails.refType != GitRefType.TAG
repositories {
mavenLocal()
mavenCentral()
maven(url = "https://jitpack.io")
+ maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
- // https://mvnrepository.com/artifact/io.vavr/vavr
- implementation("io.vavr", "vavr", "0.10.2")
-
implementation("org.apache.commons", "commons-collections4", "4.4")
// https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream
- implementation("com.thoughtworks.xstream", "xstream", "1.4.19")
+ implementation("com.thoughtworks.xstream", "xstream", "1.4.20")
// логирование
implementation("org.slf4j", "slf4j-api", "1.7.30")
// прочее
implementation("commons-io", "commons-io", "2.8.0")
- implementation("org.apache.commons", "commons-lang3", "3.11")
- implementation("com.github.1c-syntax", "utils", "0.4.0")
- implementation("io.github.1c-syntax", "bsl-common-library", "0.3.0")
- implementation("io.github.1c-syntax", "supportconf", "0.12.1")
+ implementation("com.github.1c-syntax", "utils", "0.5.1")
+ implementation("io.github.1c-syntax", "bsl-common-library", "0.5.0")
+ implementation("io.github.1c-syntax", "supportconf", "0.12.1") {
+ exclude("io.github.1c-syntax", "bsl-common-library")
+ }
// быстрый поиск классов
implementation("io.github.classgraph", "classgraph", "4.8.147")
@@ -60,8 +79,8 @@ dependencies {
}
java {
- sourceCompatibility = JavaVersion.VERSION_11
- targetCompatibility = JavaVersion.VERSION_11
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
withSourcesJar()
withJavadocJar()
}
@@ -101,14 +120,25 @@ tasks.withType {
options.compilerArgs.add("-parameters")
}
-sonarqube {
+tasks.test {
+ jvmArgs("--add-opens=java.base/java.util=ALL-UNNAMED")
+}
+
+tasks.javadoc {
+ options {
+ this as StandardJavadocDocletOptions
+ noComment(false)
+ }
+}
+
+sonar {
properties {
property("sonar.sourceEncoding", "UTF-8")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.organization", "1c-syntax")
property("sonar.projectKey", "1c-syntax_mdclasses")
property("sonar.projectName", "MDClasses")
- property("sonar.exclusions", "**/gen/**/*.*")
+ property("sonar.exclusions", "**/resources/**/*.*")
property("sonar.coverage.jacoco.xmlReportPaths", "$buildDir/reports/jacoco/test/jacoco.xml")
}
}
@@ -125,8 +155,7 @@ license {
ext["year"] = "2019 - " + Calendar.getInstance().get(Calendar.YEAR)
ext["name"] = "Tymko Oleg , Maximov Valery "
ext["project"] = "MDClasses"
- exclude("**/edt*/**")
- exclude("**/origin*/**")
+ exclude("**/*.yml")
exclude("**/*.bin")
exclude("**/*.html")
exclude("**/*.properties")
@@ -135,13 +164,43 @@ license {
exclude("**/*.os")
exclude("**/*.bsl")
exclude("**/*.orig")
- exclude("**/*.yml")
+}
+
+signing {
+ val signingInMemoryKey: String? by project // env.ORG_GRADLE_PROJECT_signingInMemoryKey
+ val signingInMemoryPassword: String? by project // env.ORG_GRADLE_PROJECT_signingInMemoryPassword
+ if (signingInMemoryKey != null) {
+ useInMemoryPgpKeys(signingInMemoryKey, signingInMemoryPassword)
+ sign(publishing.publications)
+ }
}
publishing {
+ repositories {
+ maven {
+ name = "sonatype"
+ url = if (isSnapshot)
+ uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
+ else
+ uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
+
+ val sonatypeUsername: String? by project
+ val sonatypePassword: String? by project
+
+ credentials {
+ username = sonatypeUsername // ORG_GRADLE_PROJECT_sonatypeUsername
+ password = sonatypePassword // ORG_GRADLE_PROJECT_sonatypePassword
+ }
+ }
+ }
publications {
create("maven") {
from(components["java"])
+
+ if (isSnapshot && project.hasProperty("simplifyVersion")) {
+ version = findProperty("git.ref.slug") as String + "-SNAPSHOT"
+ }
+
pom {
description.set("Metadata read/write library for Language 1C (BSL)")
url.set("https://github.com/1c-syntax/mdclasses")
@@ -180,6 +239,11 @@ publishing {
}
}
+nexusStaging {
+ serverUrl = "https://s01.oss.sonatype.org/service/local/"
+ stagingProfileId = "15bd88b4d17915" // ./gradlew getStagingProfile
+}
+
tasks.register("precommit") {
description = "Run all precommit tasks"
group = "Developer tools"
diff --git a/docs/ru/features.md b/docs/ru/features.md
new file mode 100644
index 000000000..61f952337
--- /dev/null
+++ b/docs/ru/features.md
@@ -0,0 +1,30 @@
+# Возможности
+
+Ниже перечислены текущие возможности библиотеки.
+
+## Общее
+
+Библиотека предоставляет возможность чтения описания объектов из каталога исходных файлов проектов 1С:Предприятие. Поддерживаются оба официальных формата
+- формат выгрузки конфигуратора
+- формат проектов EDT
+
+## Поддерживаемые типы контейнеров объектов метаданных
+
+На данный момент библиотека предоставляет возможность чтения информации
+- конфигураций
+- расширений конфигураций
+- внешних отчетов и обработок
+
+Эти объекты в контексте библиотеки являются некими "контейнерами метаданных", т.е. для чтения необходимо указывать расположение именно корневых объектов, а не файлов объектов метаданных, форм и т.д.
+Реализация объектов-контейнеров метаданных располагается в пакете [mdclasses](com.github._1c_syntax.bsl.mdclasses), там же расположена фабрика для создания объекта из каталога файлов.
+
+## Поддерживаемые метаданные
+
+На данный момент поддерживается загрузка всех видов метаданных, существующих в версиях платформы 1С до 8.3.24. В заивисимости от типа объекта и потребностей, объем читаемой информации может различаться (реализация чтения дополнительной информации выполняется от задач).
+Актуальное содержимое того или иного вида объекта метаданных можно всегда находится в классе его реализации в пакете [mdo](com.github._1c_syntax.bsl.mdo).
+
+Немного о структуре пакета:
+- в корне расположены классы видов объектов метаданных (Справочники, Документы, Перечисления и т.д.), базовые интерфейсы
+- в пакете `children` находятся классы с дочерними (несамостоятельными) объектами (формы, макеты, модули т.д.)
+- в пакете `storage` расположены хранилища вспомогательной информации (содержимое макетов, XDTO-схем и т.д.)
+- в пакете `support` находятся вспомогательные классы и перечисления
diff --git a/docs/ru/index.md b/docs/ru/index.md
index cd298c7fe..8474caff7 100644
--- a/docs/ru/index.md
+++ b/docs/ru/index.md
@@ -6,3 +6,4 @@
- [Примеры использования](examples.md)
- [Системные требования](systemRequirements.md)
+- [Возможности](features.md)
diff --git a/docs/ru/systemRequirements.md b/docs/ru/systemRequirements.md
index f5dc501da..dae8db841 100644
--- a/docs/ru/systemRequirements.md
+++ b/docs/ru/systemRequirements.md
@@ -6,7 +6,7 @@
MDClasses представляет собой Java библиотеку, соответственно ее использование возможно в приложения, использующих JVM.
-На данный момент библиотека разрабатывается с использованием Java 11, но в рамках сборочных конвейеров происходит проверка работоспособности при использовании более свежих версий, в частности версии Java 16.
+На данный момент библиотека разрабатывается с использованием Java 17, но в рамках сборочных конвейеров происходит проверка работоспособности при использовании более свежих версий, в частности версии Java 20.
## Поддерживаемые операционные системы
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 000000000..c36ba2461
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,2 @@
+org.gradle.parallel=true
+org.gradle.jvmargs=-Xmx1024m -XX:MaxMetaspaceSize=512m
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index 80187ac30..3fa8f862f 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
diff --git a/jitpack.yml b/jitpack.yml
index adb3fe10c..efde7bf25 100644
--- a/jitpack.yml
+++ b/jitpack.yml
@@ -1,2 +1,2 @@
jdk:
- - openjdk11
+ - openjdk17
diff --git a/lombok.config b/lombok.config
index 0206de4de..6f8b6a6f9 100644
--- a/lombok.config
+++ b/lombok.config
@@ -1,4 +1,4 @@
lombok.anyConstructor.addConstructorProperties=true
lombok.addLombokGeneratedAnnotation=true
lombok.log.fieldName=LOGGER
-lombok.extern.findbugs.addSuppressFBWarnings = true
+lombok.extern.findbugs.addSuppressFBWarnings=true
diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/CF.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/CF.java
new file mode 100644
index 000000000..51d71703e
--- /dev/null
+++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/CF.java
@@ -0,0 +1,168 @@
+/*
+ * This file is a part of MDClasses.
+ *
+ * Copyright (c) 2019 - 2023
+ * Tymko Oleg , Maximov Valery and contributors
+ *
+ * SPDX-License-Identifier: LGPL-3.0-or-later
+ *
+ * MDClasses is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3.0 of the License, or (at your option) any later version.
+ *
+ * MDClasses is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with MDClasses.
+ */
+package com.github._1c_syntax.bsl.mdclasses;
+
+import com.github._1c_syntax.bsl.mdo.CommonModule;
+import com.github._1c_syntax.bsl.mdo.MD;
+import com.github._1c_syntax.bsl.mdo.Module;
+import com.github._1c_syntax.bsl.mdo.ModuleOwner;
+import com.github._1c_syntax.bsl.mdo.Subsystem;
+import com.github._1c_syntax.bsl.mdo.children.ObjectModule;
+import com.github._1c_syntax.bsl.mdo.support.ApplicationRunMode;
+import com.github._1c_syntax.bsl.mdo.support.ScriptVariant;
+import com.github._1c_syntax.bsl.mdo.support.UsePurposes;
+import com.github._1c_syntax.bsl.support.CompatibilityMode;
+import com.github._1c_syntax.bsl.types.MdoReference;
+import com.github._1c_syntax.bsl.types.ModuleType;
+
+import java.net.URI;
+import java.util.Collections;
+import java.util.List;
+import java.util.Map;
+import java.util.stream.Collectors;
+
+public interface CF extends MDClass, ConfigurationTree {
+
+ /**
+ * Язык приложения по умолчанию
+ */
+ MdoReference getDefaultLanguage();
+
+ /**
+ * Язык, на котором ведется разработка
+ */
+ ScriptVariant getScriptVariant();
+
+ /**
+ * Режим совместимости
+ */
+ CompatibilityMode getCompatibilityMode();
+
+ /**
+ * Режим совместимости расширений
+ */
+ CompatibilityMode getConfigurationExtensionCompatibilityMode();
+
+ /**
+ * Режим запуска приложения по умолчанию
+ */
+ ApplicationRunMode getDefaultRunMode();
+
+ /**
+ * Разработчик решения
+ */
+ String getVendor();
+
+ /**
+ * Версия
+ */
+ String getVersion();
+
+ /**
+ * Назначения использования форм
+ */
+ List getUsePurposes();
+
+ /**
+ * Возвращает соответствие пути к модулю его типу
+ */
+ default Map getModulesByType() {
+ return getAllModules().stream().collect(Collectors.toMap(Module::getUri, Module::getModuleType));
+ }
+
+ /**
+ * Возвращает соответствие типов модулей их путям к файлам сгруппированные по представлению ссылки объекта-владельца
+ */
+ default Map> modulesByMDORef() {
+ return getPlainChildren().stream()
+ .filter(ModuleOwner.class::isInstance)
+ .map(ModuleOwner.class::cast)
+ .collect(Collectors.toMap(
+ (MD md) -> md.getMdoReference().getMdoRef(),
+ md -> md.getModules().stream()
+ .collect(Collectors.toMap(Module::getModuleType, Module::getUri))
+ )
+ );
+ }
+
+ /**
+ * Возвращает соответствие типов модулей их путям к файлам для дочернего объекта
+ */
+ default Map mdoModuleTypes(MdoReference mdoReference) {
+ var child = findChild(mdoReference);
+ if (child.isPresent() && child.get() instanceof ModuleOwner moduleOwner) {
+ return moduleOwner.getModuleTypes();
+ } else {
+ return Collections.emptyMap();
+ }
+ }
+
+ /**
+ * Возвращает соответствие типов модулей их путям к файлам для дочернего объекта
+ */
+ default Map mdoModuleTypes(String mdoRef) {
+ return mdoModuleTypes(MdoReference.create(mdoRef));
+ }
+
+ /**
+ * Возвращает соответствие пути файла модуля ссылке его владельца
+ */
+ default Map modulesByObject() {
+ return getAllModules().stream().collect(Collectors.toMap(Module::getUri, (Module module) -> {
+ if (module instanceof ObjectModule objectModule) {
+ return objectModule.getOwner();
+ } else {
+ return ((CommonModule) module).getMdoReference();
+ }
+ }));
+ }
+
+ /**
+ * Возвращает список подсистем, в состав которых входит объект метаданных
+ *
+ * @param md объект метаданных
+ * @param addParentSubsystem - признак необходимости добавлять родительскую (текущую) подсистему в список,
+ * если объект присутствует в дочерних.
+ * Используется для кейса: раз есть в дочерней, то считаем что и ко всем родителям
+ * тоже относится
+ * @return список подсистем
+ */
+ default List includedSubsystems(MD md, boolean addParentSubsystem) {
+ return includedSubsystems(md.getMdoReference(), addParentSubsystem);
+ }
+
+ /**
+ * Возвращает список подсистем, в состав которых входит ссылка
+ *
+ * @param mdoReference ссылка на объект метаданных
+ * @param addParentSubsystem - признак необходимости добавлять родительскую (текущую) подсистему в список,
+ * если объект присутствует в дочерних.
+ * Используется для кейса: раз есть в дочерней, то считаем что и ко всем родителям
+ * тоже относится
+ * @return список подсистем
+ */
+ default List includedSubsystems(MdoReference mdoReference, boolean addParentSubsystem) {
+ return getSubsystems().parallelStream()
+ .flatMap(subsystem -> subsystem.included(mdoReference, addParentSubsystem).stream())
+ .toList();
+ }
+}
diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java
new file mode 100644
index 000000000..3bc867be7
--- /dev/null
+++ b/src/main/java/com/github/_1c_syntax/bsl/mdclasses/Configuration.java
@@ -0,0 +1,318 @@
+/*
+ * This file is a part of MDClasses.
+ *
+ * Copyright (c) 2019 - 2023
+ * Tymko Oleg , Maximov Valery and contributors
+ *
+ * SPDX-License-Identifier: LGPL-3.0-or-later
+ *
+ * MDClasses is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3.0 of the License, or (at your option) any later version.
+ *
+ * MDClasses is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with MDClasses.
+ */
+package com.github._1c_syntax.bsl.mdclasses;
+
+import com.github._1c_syntax.bsl.mdo.AccountingRegister;
+import com.github._1c_syntax.bsl.mdo.AccumulationRegister;
+import com.github._1c_syntax.bsl.mdo.Bot;
+import com.github._1c_syntax.bsl.mdo.BusinessProcess;
+import com.github._1c_syntax.bsl.mdo.CalculationRegister;
+import com.github._1c_syntax.bsl.mdo.Catalog;
+import com.github._1c_syntax.bsl.mdo.ChartOfAccounts;
+import com.github._1c_syntax.bsl.mdo.ChartOfCalculationTypes;
+import com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes;
+import com.github._1c_syntax.bsl.mdo.CommandGroup;
+import com.github._1c_syntax.bsl.mdo.CommonAttribute;
+import com.github._1c_syntax.bsl.mdo.CommonCommand;
+import com.github._1c_syntax.bsl.mdo.CommonForm;
+import com.github._1c_syntax.bsl.mdo.CommonModule;
+import com.github._1c_syntax.bsl.mdo.CommonPicture;
+import com.github._1c_syntax.bsl.mdo.CommonTemplate;
+import com.github._1c_syntax.bsl.mdo.Constant;
+import com.github._1c_syntax.bsl.mdo.DataProcessor;
+import com.github._1c_syntax.bsl.mdo.DefinedType;
+import com.github._1c_syntax.bsl.mdo.Document;
+import com.github._1c_syntax.bsl.mdo.DocumentJournal;
+import com.github._1c_syntax.bsl.mdo.DocumentNumerator;
+import com.github._1c_syntax.bsl.mdo.Enum;
+import com.github._1c_syntax.bsl.mdo.EventSubscription;
+import com.github._1c_syntax.bsl.mdo.ExchangePlan;
+import com.github._1c_syntax.bsl.mdo.ExternalDataSource;
+import com.github._1c_syntax.bsl.mdo.FilterCriterion;
+import com.github._1c_syntax.bsl.mdo.FunctionalOption;
+import com.github._1c_syntax.bsl.mdo.FunctionalOptionsParameter;
+import com.github._1c_syntax.bsl.mdo.HTTPService;
+import com.github._1c_syntax.bsl.mdo.InformationRegister;
+import com.github._1c_syntax.bsl.mdo.IntegrationService;
+import com.github._1c_syntax.bsl.mdo.Interface;
+import com.github._1c_syntax.bsl.mdo.Language;
+import com.github._1c_syntax.bsl.mdo.MD;
+import com.github._1c_syntax.bsl.mdo.Module;
+import com.github._1c_syntax.bsl.mdo.Report;
+import com.github._1c_syntax.bsl.mdo.Role;
+import com.github._1c_syntax.bsl.mdo.ScheduledJob;
+import com.github._1c_syntax.bsl.mdo.Sequence;
+import com.github._1c_syntax.bsl.mdo.SessionParameter;
+import com.github._1c_syntax.bsl.mdo.SettingsStorage;
+import com.github._1c_syntax.bsl.mdo.Style;
+import com.github._1c_syntax.bsl.mdo.StyleItem;
+import com.github._1c_syntax.bsl.mdo.Subsystem;
+import com.github._1c_syntax.bsl.mdo.Task;
+import com.github._1c_syntax.bsl.mdo.WSReference;
+import com.github._1c_syntax.bsl.mdo.WebService;
+import com.github._1c_syntax.bsl.mdo.XDTOPackage;
+import com.github._1c_syntax.bsl.mdo.support.ApplicationRunMode;
+import com.github._1c_syntax.bsl.mdo.support.DataLockControlMode;
+import com.github._1c_syntax.bsl.mdo.support.MultiLanguageString;
+import com.github._1c_syntax.bsl.mdo.support.ObjectBelonging;
+import com.github._1c_syntax.bsl.mdo.support.ScriptVariant;
+import com.github._1c_syntax.bsl.mdo.support.UseMode;
+import com.github._1c_syntax.bsl.mdo.support.UsePurposes;
+import com.github._1c_syntax.bsl.support.CompatibilityMode;
+import com.github._1c_syntax.bsl.support.SupportVariant;
+import com.github._1c_syntax.bsl.types.ConfigurationSource;
+import com.github._1c_syntax.bsl.types.MdoReference;
+import lombok.Builder;
+import lombok.Builder.Default;
+import lombok.EqualsAndHashCode;
+import lombok.NonNull;
+import lombok.Singular;
+import lombok.ToString;
+import lombok.Value;
+
+import java.util.Collections;
+import java.util.List;
+
+/**
+ * Корневой класс конфигурации 1с
+ */
+@Value
+@Builder
+@ToString(of = {"name", "uuid"})
+@EqualsAndHashCode(of = {"name", "uuid"})
+@NonNull
+public class Configuration implements CF {
+
+ /**
+ * Пустая конфигурация
+ */
+ public static final Configuration EMPTY = createEmptyConfiguration();
+
+ /*
+ * CF
+ */
+
+ @Default
+ ConfigurationSource configurationSource = ConfigurationSource.EMPTY;
+ @Default
+ String uuid = "";
+ @Default
+ String name = "";
+ @Default
+ MultiLanguageString synonym = MultiLanguageString.EMPTY;
+ @Default
+ MdoReference mdoReference = MdoReference.EMPTY;
+ @Default
+ ObjectBelonging objectBelonging = ObjectBelonging.OWN;
+ @Default
+ SupportVariant supportVariant = SupportVariant.NONE;
+ @Default
+ String comment = "";
+ @Default
+ MdoReference defaultLanguage = MdoReference.EMPTY;
+ @Default
+ ScriptVariant scriptVariant = ScriptVariant.ENGLISH;
+ @Default
+ CompatibilityMode compatibilityMode = new CompatibilityMode();
+ @Default
+ CompatibilityMode configurationExtensionCompatibilityMode = new CompatibilityMode();
+ @Default
+ ApplicationRunMode defaultRunMode = ApplicationRunMode.AUTO;
+ @Default
+ List modules = Collections.emptyList();
+ @Default
+ String vendor = "";
+ @Default
+ String version = "";
+ @Singular("addUsePurposes")
+ List usePurposes;
+
+ @Singular
+ List subsystems;
+ @Singular
+ List commonModules;
+ @Singular
+ List sessionParameters;
+ @Singular
+ List roles;
+ @Singular
+ List commonAttributes;
+ @Singular
+ List exchangePlans;
+ @Singular("filterCriterion")
+ List filterCriteria;
+ @Singular
+ List eventSubscriptions;
+ @Singular
+ List scheduledJobs;
+ @Singular
+ List bots;
+ @Singular
+ List functionalOptions;
+ @Singular
+ List functionalOptionsParameters;
+ @Singular
+ List definedTypes;
+ @Singular
+ List settingsStorages;
+ @Singular
+ List commonForms;
+ @Singular
+ List commonCommands;
+ @Singular
+ List commandGroups;
+ @Singular
+ List commonTemplates;
+ @Singular
+ List commonPictures;
+ @Singular("Interface")
+ List interfaces;
+ @Singular
+ List xDTOPackages;
+ @Singular
+ List webServices;
+ @Singular
+ List httpServices;
+ @Singular
+ List wsReferences;
+ @Singular
+ List integrationServices;
+ @Singular
+ List styleItems;
+ @Singular
+ List
-
+
ОбщаяКартинка1
- Интерфейс1
ПараметрСеанса1
Роль1
- ТабличныйДокумент
- ТекстовыйДокумент
- ДвоичныеДанные
Active
HTML
+ ВнешняяКомпонента
ГеографическаяСхема
ГрафическаяСхема
- СКД
+ ДвоичныеДанные
МакетОформления
- ВнешняяКомпонента
+ СКД
+ ТабличныйДокумент
+ ТекстовыйДокумент
КритерийОтбора1
ПростойОбщийМодуль
ГлобальныйОбщийМодуль
@@ -176,12 +179,12 @@
ПакетXDTO1
WebСервис1
HTTPСервис1
- WSСсылка1
+ WSСсылка
ПодпискаНаСобытие1
РегламентноеЗадание1
ХранилищеНастроек1
ФункциональнаяОпция1
- ПараметрФункциональныхОпций1
+ ПараметрФункциональныхОпций
ОпределяемыйТип1
ОбщаяКоманда1
ГруппаКоманд1
@@ -205,7 +208,9 @@
РегистрРасчета1
БизнесПроцесс1
Задача1
- ВнешнийИсточникДанных1
+ Интерфейс1
+ Интерфейс2
+ ТекущаяСУБД
-
\ No newline at end of file
+
diff --git "a/src/test/resources/metadata/original/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..7f11f9adc
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/Ext/ManagerModule.bsl"
@@ -0,0 +1,3 @@
+Процедура ПередЗаписью(Отказ)
+ Сообщить(Отказ);
+КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/Ext/ValueManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/Ext/ValueManagerModule.bsl"
new file mode 100644
index 000000000..e013b09bf
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/Ext/ValueManagerModule.bsl"
@@ -0,0 +1,7 @@
+
+
+
+
+Процедура ПередЗаписью(Отказ)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
similarity index 96%
rename from "src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
index a180768eb..c1ae28c31 100644
--- "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
@@ -24,6 +24,7 @@
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270.xml"
new file mode 100644
index 000000000..bf7e56527
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270.xml"
@@ -0,0 +1,22 @@
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form.xml"
new file mode 100644
index 000000000..1897cb8de
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form.xml"
@@ -0,0 +1,1465 @@
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260.xml"
new file mode 100644
index 000000000..1aac1777f
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260.xml"
@@ -0,0 +1,22 @@
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
new file mode 100644
index 000000000..29cca232a
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
@@ -0,0 +1,78 @@
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml"
diff --git "a/src/test/resources/metadata/original/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
similarity index 96%
rename from "src/test/resources/metadata/original/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
index 1b59e2075..262d093cc 100644
--- "a/src/test/resources/metadata/original/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
@@ -31,7 +31,7 @@
-
+
Графа
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Ext/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/original/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
similarity index 88%
rename from "src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
index d567bff5b..11e78e6ae 100644
--- "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
@@ -277,6 +277,46 @@
+
+
+ Команда
+
+
+ ru
+ Команда
+
+
+
+ ActionsPanelTools
+
+ Single
+ false
+ Auto
+
+
+
+
+
+
+
+ Команда2
+
+
+ ru
+ Команда
+
+
+
+ ActionsPanelTools
+
+ Single
+ false
+ Auto
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/Ext/CommandModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/Ext/CommandModule.bsl"
new file mode 100644
index 000000000..cfa55b922
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/Ext/CommandModule.bsl"
@@ -0,0 +1,7 @@
+
+&НаКлиенте
+Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
+ //TODO: Вставить содержимое обработчика.
+ //ПараметрыФормы = Новый Структура("", );
+ //ОткрытьФорму("Документ.Команда.ФормаСписка", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
+КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl"
new file mode 100644
index 000000000..cfa55b922
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl"
@@ -0,0 +1,7 @@
+
+&НаКлиенте
+Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
+ //TODO: Вставить содержимое обработчика.
+ //ПараметрыФормы = Новый Структура("", );
+ //ОткрытьФорму("Документ.Команда.ФормаСписка", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
+КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
new file mode 100644
index 000000000..b6c29b02e
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
@@ -0,0 +1,149 @@
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
new file mode 100644
index 000000000..5f282702b
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
new file mode 100644
index 000000000..6c212f8fa
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
@@ -0,0 +1,110 @@
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
new file mode 100644
index 000000000..217b8d28d
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
@@ -0,0 +1,6 @@
+
+
+&НаКлиенте
+Процедура ОбработкаЗаписиНового(НовыйОбъект, Источник, СтандартнаяОбработка)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
new file mode 100644
index 000000000..5e166d881
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
@@ -0,0 +1,147 @@
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
new file mode 100644
index 000000000..5f282702b
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/Ext/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/original/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml"
diff --git "a/src/test/resources/metadata/original/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
similarity index 95%
rename from "src/test/resources/metadata/original/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
index bfd25e1bd..45b7447d8 100644
--- "a/src/test/resources/metadata/original/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
@@ -51,8 +51,7 @@
- true
- true
+ false
DontUse
Auto
false
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/Content.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/Content.xml"
new file mode 100644
index 000000000..de05d580c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/Content.xml"
@@ -0,0 +1,11 @@
+
+
+ -
+ Catalog.Справочник1
+ Allow
+
+ -
+ Document.Документ1
+ Deny
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/ObjectModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/ObjectModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git a/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ClientApplicationInterface.xml b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ClientApplicationInterface.xml
new file mode 100644
index 000000000..d950fdacc
--- /dev/null
+++ b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ClientApplicationInterface.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ b553047f-c9aa-4157-978d-448ecad24248
+
+
+
+
+ b2735bd3-d822-4430-ba59-c9e869693b24
+
+
+
+
+
+
+ 8e10648b-f52d-4ec2-b4dd-87de33778d95
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ExternalConnectionModule.bsl b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ExternalConnectionModule.bsl
new file mode 100644
index 000000000..d1526f1fb
--- /dev/null
+++ b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ExternalConnectionModule.bsl
@@ -0,0 +1,5 @@
+
+
+Процедура ПриНачалеРаботыСистемы()
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git a/src/test/resources/ext/designer/mdclasses/src/cf/Ext/HomePageWorkArea.xml b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/HomePageWorkArea.xml
new file mode 100644
index 000000000..61b849087
--- /dev/null
+++ b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/HomePageWorkArea.xml
@@ -0,0 +1,7 @@
+
+
+ TwoColumnsEqualWidth
+
+
+ Bottom
+
\ No newline at end of file
diff --git a/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ManagedApplicationModule.bsl b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ManagedApplicationModule.bsl
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/ManagedApplicationModule.bsl
@@ -0,0 +1,2 @@
+
+
diff --git a/src/test/resources/ext/designer/mdclasses/src/cf/Ext/SessionModule.bsl b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/SessionModule.bsl
new file mode 100644
index 000000000..aedc7afa4
--- /dev/null
+++ b/src/test/resources/ext/designer/mdclasses/src/cf/Ext/SessionModule.bsl
@@ -0,0 +1,5 @@
+
+
+Процедура УстановкаПараметровСеанса(ТребуемыеПараметры)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.xml"
new file mode 100644
index 000000000..c69b5f9cb
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.xml"
@@ -0,0 +1,33 @@
+
+
+
+
+
+ b513b106-193c-470a-ad10-2dd871df9239
+ 7b82b617-d4c3-4891-b767-21d0903438dc
+
+
+ bb3ebd55-bd67-4cd9-a4a2-5b961d1c3ffa
+ 98112850-1566-4eb1-869a-10ee351c9e95
+
+
+ cc58fa11-c198-432b-b88c-7e2fbe0b82db
+ 10d89052-a917-4ccd-a200-f8f3d6295519
+
+
+
+ ТекущаяСУБД
+
+
+ ru
+ Текущая СУБД
+
+
+
+ Managed
+
+
+
+
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205.xml"
new file mode 100644
index 000000000..03bb1eeda
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205.xml"
@@ -0,0 +1,418 @@
+
+
+
+
+
+ 5e99dd03-6c02-4a0f-9042-305028264b0e
+ 8687f240-4755-4595-91a8-511464607401
+
+
+ 797c1ff0-8f13-4ab9-9e13-947c9e851c54
+ e9968503-4649-4c80-a1d0-be298f852e50
+
+
+ 8ae77960-ef55-4af0-bba0-66a754f963ea
+ abf318a0-7342-4e25-8a0b-24d26bdf23b7
+
+
+ 691a4920-0cbe-4d60-b53d-924d6a045f47
+ f6a9bb52-1dad-445d-8e02-456c71565987
+
+
+ 908f7490-0859-4191-a004-d3d2cc7512af
+ 842637a9-27ff-47fa-8707-6655917bd1d3
+
+
+ 85f289f5-685b-4ca9-b9d4-4bad879e02a3
+ 6dea0141-ce89-4f2e-ba64-91fd420f591b
+
+
+ 7f4bc492-78e7-4a8f-b573-e4a6869f85d4
+ aa37e5a3-aea8-4809-95bb-b96fe517a291
+
+
+
+ ИнформацияОбОшибках
+
+
+ ru
+ Информация об ошибках
+
+
+
+ Table
+ ErrorInformation
+
+ NonobjectData
+
+
+
+
+
+ true
+ false
+
+ Auto
+ Begin
+ Directly
+ Auto
+
+
+
+
+
+
+
+
+
+
+
+ false
+ false
+ Auto
+
+ InDialog
+
+
+ Managed
+
+
+
+
+ Период
+
+
+ ru
+ Период
+
+
+
+
+ xs:string
+
+ 20
+ Variable
+
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ Period
+ false
+ true
+
+
+
+
+ ИдентификаторОшибки
+
+
+ ru
+ Идентификатор ошибки
+
+
+
+
+ cfg:DefinedType.ТипUIDСтрока
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ ErrorID
+ false
+ true
+
+
+
+
+ УровеньОшибки
+
+
+ ru
+ Уровень ошибки
+
+
+
+
+ v8:UUID
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ ErrorLevel
+ false
+ true
+
+
+
+
+ Категория
+
+
+ ru
+ Категория
+
+
+
+
+ v8:UUID
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ Category
+ false
+ true
+
+
+
+
+ НомерСеанса
+
+
+ ru
+ Номер сеанса
+
+
+
+
+ xs:decimal
+
+ 15
+ 0
+ Nonnegative
+
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ SessionNumber
+ false
+ true
+
+
+
+
+ Пользователь
+
+
+ ru
+ Пользователь
+
+
+
+
+ v8:UUID
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ CurrentUser
+ false
+ true
+
+
+
+
+ ДатаУведомления
+
+
+ ru
+ Дата уведомления
+
+
+
+
+ xs:string
+
+ 20
+ Variable
+
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ DateOfNotice
+ false
+ true
+
+
+
+
+ ОписаниеОшибки
+
+
+ ru
+ Описание ошибки
+
+
+
+
+ xs:string
+
+ 0
+ Variable
+
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+
+
+ Auto
+ Auto
+ Auto
+
+ ErrorDescription
+ false
+ true
+
+
+
+
+
+
+ Command
+
+
+ ru
+ Command
+
+
+
+ ActionsPanelTools
+
+ Single
+ false
+ Auto
+
+
+
+
+
+ Template
+
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Commands/Command/Ext/CommandModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Commands/Command/Ext/CommandModule.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Commands/Command/Ext/CommandModule.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Ext/ManagerModule.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Ext/RecordSetModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Ext/RecordSetModule.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Ext/RecordSetModule.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm.xml"
new file mode 100644
index 000000000..78e6a3a1d
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm.xml"
@@ -0,0 +1,21 @@
+
+
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Ext/Form.xml"
new file mode 100644
index 000000000..105fb5622
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Ext/Form.xml"
@@ -0,0 +1,21 @@
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Ext/Form/Module.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Ext/Form/Module.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm.xml"
new file mode 100644
index 000000000..a3b6a465f
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm.xml"
@@ -0,0 +1,21 @@
+
+
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Ext/Form.xml"
new file mode 100644
index 000000000..105fb5622
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Ext/Form.xml"
@@ -0,0 +1,21 @@
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Ext/Form/Module.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Ext/Form/Module.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template.xml"
new file mode 100644
index 000000000..528671e7e
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+ Template
+
+
+ ru
+ Template
+
+
+
+ SpreadsheetDocument
+
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template/Ext/Template.xml"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template/Ext/Template.xml"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/metadata/original/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/Ext/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/original/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.xml"
new file mode 100644
index 000000000..1b200e408
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.xml"
@@ -0,0 +1,18 @@
+
+
+
+
+ ПараметрФункциональныхОпций
+
+
+ ru
+ Параметр функциональных опций
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
new file mode 100644
index 000000000..87e5d16dc
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
@@ -0,0 +1,58 @@
+
+
+
+
+ HTTPСервис1
+
+
+ test.test
+ AutoUse
+ 20
+
+
+
+
+ ШаблонURL
+
+
+ ru
+ Шаблон URL
+
+
+
+ /*
+
+
+
+
+ Метод
+
+
+ ru
+ Метод
+
+
+
+ GET
+ ШаблонURLМетод
+
+
+
+
+ Метод1
+
+
+ ru
+ Метод1
+
+
+
+ DELETE
+ ШаблонURLМетод1
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl"
new file mode 100644
index 000000000..a7dd5bd17
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl"
@@ -0,0 +1,14 @@
+Процедура Метод()
+КонецПроцедуры
+
+
+
+Функция ШаблонURLМетод(Запрос)
+ Ответ = Новый HTTPСервисОтвет(200);
+ Возврат Ответ;
+КонецФункции
+
+Функция ШаблонURLМетод1(Запрос)
+ Ответ = Новый HTTPСервисОтвет(200);
+ Возврат Ответ;
+КонецФункции
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
new file mode 100644
index 000000000..93ff53e7c
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
@@ -0,0 +1,101 @@
+
+
+
+
+
+ 1b35d8b5-6682-42e9-b6d1-3f268d33dd59
+ 4a2190b7-a9b4-4491-b8cb-56411ec751f0
+
+
+ 7b310ff4-a50d-4255-87a0-4e6deaa917ac
+ d0455001-262e-4d47-bff6-8202e4bba609
+
+
+ 51f30b43-1c6a-4261-9f5c-a6fbb904fb49
+ e0e800b4-e3dc-4026-b983-a3ad404112ae
+
+
+ 7937c8e3-a6fc-443a-afe7-cad0d37d5283
+ e25078c9-65a6-4bdb-80b3-1b1707713af8
+
+
+ 9de53169-8425-4e8b-a323-b71457a7d07d
+ 41c0f45f-be8f-4141-9254-cea81f78a965
+
+
+ af026454-0f88-4c18-83f9-262c98a8ef9c
+ 161c22d0-254f-49c5-bea2-138eef379b70
+
+
+ e0c9de77-853e-44ac-bc6e-b53340795e6d
+ 5ad35c5b-5cec-4f18-b070-2351614cbcdb
+
+
+
+ РегистрСведений1
+
+
+ true
+ InDialog
+
+
+
+
+ Nonperiodical
+ Independent
+ false
+ false
+ Managed
+ DontUse
+ false
+ false
+
+
+
+
+
+
+
+
+
+ Измерение1
+
+
+
+ xs:string
+
+ 10
+ Variable
+
+
+ false
+
+
+
+ false
+
+ false
+ false
+
+
+ false
+
+ DontCheck
+ Items
+
+
+ Auto
+ Auto
+
+
+ Auto
+ false
+ true
+ false
+ DontIndex
+ Use
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/Ext/RecordSetModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/Ext/RecordSetModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/Ext/RecordSetModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/original/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml"
diff --git "a/src/test/resources/metadata/original/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml"
diff --git "a/src/test/resources/metadata/original/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin" "b/src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin"
similarity index 100%
rename from "src/test/resources/metadata/original/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2012.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2012.xml"
new file mode 100644
index 000000000..ec10f51e9
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2012.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+ Интерфейс2
+
+
+ ru
+ Second
+
+
+ Второй интерфейс
+ false
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\220\320\273\320\261\320\260\320\275\321\201\320\272\320\270\320\271.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\220\320\273\320\261\320\260\320\275\321\201\320\272\320\270\320\271.xml"
new file mode 100644
index 000000000..dc316ab00
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\220\320\273\320\261\320\260\320\275\321\201\320\272\320\270\320\271.xml"
@@ -0,0 +1,20 @@
+
+
+
+
+ Албанский
+
+
+ ru
+ Албанский
+
+
+ sq
+ Shqip
+
+
+
+ sq
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
similarity index 93%
rename from "src/test/resources/metadata/original/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
index 1305cf41e..2011ce7bf 100644
--- "a/src/test/resources/metadata/original/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
@@ -5,16 +5,16 @@
Русский
- ru
- Русский
+ ja
+ ロシア語
- en
- Russian
+ sq
+ Rusisht
- ja
- ロシア語
+ ru
+ Русский
diff --git "a/src/test/resources/metadata/original/Languages/\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.xml"
similarity index 77%
rename from "src/test/resources/metadata/original/Languages/\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.xml"
index d37717894..4e8f1cba8 100644
--- "a/src/test/resources/metadata/original/Languages/\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Languages/\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.xml"
@@ -1,6 +1,6 @@
-
+
Японский
@@ -8,22 +8,10 @@
ru
Японский
-
- en
- Japanese
-
ja
日本語
-
- en
- Russian
-
-
- ja
- ロシア語
-
ja
diff --git "a/src/test/resources/metadata/original/Reports/\320\236\321\202\321\207\320\265\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
similarity index 90%
rename from "src/test/resources/metadata/original/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
index 499b07ebf..93682bcc5 100644
--- "a/src/test/resources/metadata/original/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
@@ -28,6 +28,10 @@
-
+
+ МакетОтчета
+ СКД
+ ТекстовыйДокумент
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Ext/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Ext/ObjectModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Ext/ObjectModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Ext/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260.xml"
new file mode 100644
index 000000000..bfe46dc15
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+ МакетОтчета
+
+
+ ru
+ Макет отчета
+
+
+
+ SpreadsheetDocument
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Ext/Template.xml"
new file mode 100644
index 000000000..8e5770505
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Ext/Template.xml"
@@ -0,0 +1,56 @@
+
+
+
+ ru
+ ru
+
+ ru
+ Русский
+ Русский
+
+
+ Alb
+ Албанский
+
+
+
+ 2
+
+
+ 2
+
+
+ 1
+
+ 0
+
+ Comment
+ 0
+ 1
+
+
+ ru
+
+
+
+ 1
+ -20
+ 0
+ 50
+ 1
+ 20
+ 0
+ 22
+ true
+
+
+
+
+
+ true
+ 3
+
+ Top
+ #FFFAD9
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224.xml"
new file mode 100644
index 000000000..af9aaf308
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+ СКД
+
+
+ ru
+ СКД
+
+
+
+ DataCompositionSchema
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224/Ext/Template.xml"
new file mode 100644
index 000000000..5a6750b21
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224/Ext/Template.xml"
@@ -0,0 +1,158 @@
+
+
+
+ ИсточникДанных1
+ Local
+
+
+ НаборДанных1
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.Код КАК Код1
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+
+ НаборДанных2
+
+ ИмяПредопределенныхДанных
+ ИмяПредопределенныхДанных
+
+
+ Ссылка
+ Ссылка
+
+
+ Предопределенный
+ Предопределенный
+
+
+ Наименование
+ Наименование
+
+
+ ВерсияДанных
+ ВерсияДанных
+
+
+ ПометкаУдаления
+ ПометкаУдаления
+
+
+ Код
+ Код
+
+
+ Реквизит1
+ Реквизит1
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.ВерсияДанных КАК ВерсияДанных,
+ ПервыйСправочник.ПометкаУдаления КАК ПометкаУдаления,
+ ПервыйСправочник.Код КАК Код,
+ ПервыйСправочник.Наименование КАК Наименование,
+ ПервыйСправочник.Реквизит1 КАК Реквизит1,
+ ПервыйСправочник.Предопределенный КАК Предопределенный,
+ ПервыйСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+
+ НаборДанных3
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ -
+ НаборДанных2
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.Код КАК Код1
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+ -
+ НаборДанных1
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.Код КАК Код1
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+ -
+ НаборДанных4
+
-
+ НаборДанных3
+ ИсточникДанных1
+ набор2
+
+
+
+
+ НаборДанных3
+ ИсточникДанных1
+ набор3
+
+
+ Основной
+ Основной
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
new file mode 100644
index 000000000..1969f3b0f
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+ ТекстовыйДокумент
+
+
+ ru
+ Текстовый документ
+
+
+
+ TextDocument
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Ext/Template.txt" "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Ext/Template.txt"
new file mode 100644
index 000000000..5f282702b
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Ext/Template.txt"
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Roles/\320\240\320\276\320\273\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Roles/\320\240\320\276\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Roles/\320\240\320\276\320\273\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Roles/\320\240\320\276\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/original/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
similarity index 90%
rename from "src/test/resources/metadata/original/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
index 08bdf86a1..9f784dca0 100644
--- "a/src/test/resources/metadata/original/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
@@ -1,5 +1,5 @@
-
-
+
+
false
true
false
@@ -220,4 +220,4 @@
true
-
\ No newline at end of file
+
diff --git "a/src/test/resources/metadata/original/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
diff --git "a/src/test/resources/metadata/original/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/Ext/RecordSetModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/Ext/RecordSetModule.bsl"
new file mode 100644
index 000000000..aa549a418
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/Ext/RecordSetModule.bsl"
@@ -0,0 +1,7 @@
+
+
+
+
+Процедура ПередЗаписью(Отказ, Замещение)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml"
diff --git "a/src/test/resources/metadata/original/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/Ext/ManagerModule.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/Ext/ManagerModule.bsl"
new file mode 100644
index 000000000..0fd4dd411
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/Ext/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/original/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Styles/\320\241\321\202\320\270\320\273\321\214.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Styles/\320\241\321\202\320\270\320\273\321\214.xml"
new file mode 100644
index 000000000..3529875a0
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Styles/\320\241\321\202\320\270\320\273\321\214.xml"
@@ -0,0 +1,15 @@
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
new file mode 100644
index 000000000..a0875e6a3
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
@@ -0,0 +1,26 @@
+
+
+
+
+ ВтораяПодсистема
+
+
+ ru
+ Вторая подсистема
+
+
+
+ true
+ true
+
+
+
+ CalculationRegister.РегистрРасчета1
+ AccountingRegister.РегистрБухгалтерии1
+ Enum.Перечисление1
+ CommonForm.Форма
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Ext/CommandInterface.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Ext/CommandInterface.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Ext/CommandInterface.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Ext/CommandInterface.xml"
diff --git "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
similarity index 86%
rename from "src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
index b2e70dede..341d1467d 100644
--- "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
@@ -14,10 +14,7 @@
true
-
- ChartOfAccounts.ПланСчетов1
- BusinessProcess.БизнесПроцесс1
-
+
ПодчиненнаяПодсистема
diff --git "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
similarity index 95%
rename from "src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
index 16c60bf32..5cb1307e0 100644
--- "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
@@ -17,7 +17,6 @@
Catalog.Справочник1
DataProcessor.Обработка1
-
diff --git "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
similarity index 91%
rename from "src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
index 9f51e92b7..32fc72103 100644
--- "a/src/test/resources/metadata/original/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
@@ -17,9 +17,10 @@
ChartOfAccounts.ПланСчетов1
BusinessProcess.БизнесПроцесс1
- Subsystem.ПерваяПодсистема
-
+
+ ПодчиненнаяПодсистема3Уровня
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Ext/CommandInterface.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Ext/CommandInterface.xml"
new file mode 100644
index 000000000..ab5ee793e
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Ext/CommandInterface.xml"
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.xml"
new file mode 100644
index 000000000..6094c620d
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.xml"
@@ -0,0 +1,25 @@
+
+
+
+
+ ПодчиненнаяПодсистема3Уровня
+
+
+ ru
+ Подчиненная подсистема3 уровня
+
+
+
+ true
+ true
+
+
+
+ Task.Задача1
+ Enum.Перечисление1
+ DocumentNumerator.НумераторДокументов1
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/Ext/CommandInterface.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/Ext/CommandInterface.xml"
new file mode 100644
index 000000000..ab5ee793e
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/Ext/CommandInterface.xml"
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
similarity index 94%
rename from "src/test/resources/metadata/original/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
index da30d6ddf..da9cb6434 100644
--- "a/src/test/resources/metadata/original/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
@@ -71,9 +71,15 @@
РеквизитАдресации
-
+
+
+ ru
+ Реквизит адресации
+
+
+ xs:string
10
Variable
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260.xml"
new file mode 100644
index 000000000..a7e8fbb90
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260.xml"
@@ -0,0 +1,22 @@
+
+
+
+
+
+ 5627aa3f-232e-431e-b190-ad311acb8693
+ 113d66f6-a45a-447c-8ca5-ff010d3f264d
+
+
+
+ WSСсылка
+
+
+ ru
+ WSСсылка
+
+
+
+ http://ya.ru
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
similarity index 75%
rename from "src/test/resources/metadata/original/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
index 9a287ea95..32352f8a4 100644
--- "a/src/test/resources/metadata/original/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
@@ -12,10 +12,15 @@
20
-
+
- Операция1
-
+ Операция
+
+
+ ru
+ Операция
+
+
xs:string
false
@@ -25,15 +30,20 @@
-
+
- Операция2
-
+ Операция1
+
+
+ ru
+ Операция1
+
+
xs:string
- true
- true
- Операция2
+ false
+ false
+ Операция11
Managed
diff --git "a/src/test/resources/ext/designer/mdclasses/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl"
new file mode 100644
index 000000000..641bb2e74
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl"
@@ -0,0 +1,8 @@
+
+Функция Операция1()
+ // Вставить содержимое обработчика.
+КонецФункции
+
+Функция Операция11()
+ // Вставить содержимое обработчика.
+КонецФункции
diff --git "a/src/test/resources/metadata/original/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml" "b/src/test/resources/ext/designer/mdclasses/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml"
diff --git "a/src/test/resources/metadata/original/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Ext/Package.bin" "b/src/test/resources/ext/designer/mdclasses/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Ext/Package.bin"
similarity index 99%
rename from "src/test/resources/metadata/original/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Ext/Package.bin"
rename to "src/test/resources/ext/designer/mdclasses/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Ext/Package.bin"
index 7ee32dd54..73471fdff 100644
--- "a/src/test/resources/metadata/original/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Ext/Package.bin"
+++ "b/src/test/resources/ext/designer/mdclasses/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Ext/Package.bin"
@@ -1,7521 +1,7523 @@
-
-
-
-
- (((0[1-9]{1}|[1-2]{1}[0-9]{1})\.(0[1-9]{1}|1[0-2]{1}))|((30)\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\.(01|03|05|07|08|10|12)))\.(18[0-9]{2}|19[0-9]{2}|20[0-9]{2})
-
-
-
-
-
-
-
-
-
- 0
-
-
-
- Первая
- Вторая
- Третья
- Четвертая
- Пятая
- Шестая
- Седьмая
- Восьмая
- Девятая
- Десятая
- Отдельная
-
-
- Аванс
- Предоплата
- Кредит
- ОтсрочкаПлатежа
-
-
- ВПользуПоставщика
- НаПрочиеДоходы
-
-
- ЗаСчетСтороннейКомпании
- ЗаСчетПоставщика
- НаПрочиеРасходы
-
-
- ПоФактическомуИспользованию
- ЭкспортСырьевыхТоваров
- ЭкспортНеСырьевыхТоваров
- НеОблагаетсяНДС
- ОблагаетсяЕНВД
- ОблагаетсяНДС
- ОпределяетсяРаспределением
-
-
- Расчетный
- Депозитный
- Ссудный
- ЧековыеКнижки
- Аккредитивы
- Иной
-
-
- Билеты
- Путевки
- ПочтовыеМарки
- ТалоныНаГСМ
- Прочее
-
-
- СПокупателем
- СПоставщиком
- СКомиссионером
- СКомитентом
- СКомитентомНаЗакупку
- СКомиссионеромНаЗакупку
- Прочее
-
-
- ПочтовыйАдрес
- ЮридическийАдрес
- ФактическийАдрес
- Телефон
- ТелефонДомашний
- ТелефонРабочий
- Факс
- ВебСтраница
- АдресЭлектроннойПочты
- Skype
- ПользовательскаяКИДругое
- ПользовательскаяКИТелефон
- ПользовательскаяКИАдрес
- ПользовательскаяКИАдресЭлектроннойПочты
- ПользовательскаяКИВебСтраница
- ПользовательскаяКИФакс
- ПользовательскаяКИSkype
-
-
- Пиво
- АлкогольнаяПродукция
- СпиртосодержащаяПищеваяПродукция
- СпиртосодержащаяНеПищеваяПродукция
- Спирт
-
-
- НематериальныйАктив
- РасходыНаНИОКР
-
-
- ВозвратОтКлиента
- ВозвратОтКомиссионера
- ВозвратОтРозничногоПокупателя
-
-
- ВозвратПоставщику
- ВозвратКомитенту
-
-
- ВыпускПродукцииНаСклад
- ВыпускПродукцииВПодразделение
-
-
- СогласованноеИзменение
- ИсправлениеОшибки
-
-
- СписаниеЗадолженности
- ПереносЗадолженности
- ПроведениеВзаимозачета
-
-
- ОплатаОтКлиентаПлатежнойКартой
- ВозвратОплатыКлиентуНаПлатежнуюКарту
-
-
- ПокупкаУПоставщика
- ПриемНаКомиссию
- ЗакупкаПоИмпорту
-
-
- ВзносНаличными
- Инкассация
-
-
- РеализацияКлиенту
- ПередачаНаКомиссию
- ОтгрузкаБезПереходаПравСобственности_ВПути
- ОтгрузкаБезПереходаПравСобственности_Реализовано
-
-
- ПрочееСписание
- ВнутренняяПередача
-
-
- Сборка
- Разборка
-
-
- Покупка
- Доплата
- Возврат
- ЗаменаВозврат
- ЗаменаПокупка
-
-
- Руководитель
- ГлавныйБухгалтер
- РуководительКадровойСлужбы
- Кассир
- ОтветственныйЗаБухгалтерскиеРегистры
- ОтветственныйЗаНалоговыеРегистры
- УполномоченныйПредставитель
- Исполнитель
- Прочее
-
-
- СПоставщиком
- СПокупателем
- КредитыИЗаймы
- Прочее
-
-
- Долг
- Аванс
-
-
- КраткосрочныеКредиты
- ПроцентыПоКраткосрочнымКредитам
- КраткосрочныеЗаймы
- ПроцентыПоКраткосрочнымЗаймам
- ДолгосрочныеКредиты
- ПроцентыПоДолгосрочнымКредитам
- ДолгосрочныеЗаймы
- ПроцентыПоДолгосрочнымЗаймам
- Комиссия
-
-
- Займы
- Подотчет
- ДоговорПодряда
- Депоненты
-
-
- НаТовар
- ПодарочнаяКарта
- Дисконтная
-
-
- ПринятиеКУчету
- ВводВЭксплуатацию
- ПринятиеКУчетуСВводомВЭксплуатацию
- НачислениеАмортизации
- ВнутреннееПеремещение
- ТекущийРемонт
- СреднийРемонт
- КапитальныйРемонт
- Переоценка
- Реконструкция
- Достройка
- Дооборудование
- ЧастичнаяЛиквидация
- Модернизация
- ПодготовкаКПередаче
- Передача
- Списание
- Прочее
-
-
- НаРеализацию
- Корректировочный
- НаАванс
- НаАвансКомитента
- СуммовыеРазницы
- НалоговыйАгент
- НаПоступление
-
-
- Акция
- БанковскийСертификат
- ВексельПокупателя
- ВексельСобственный
- ВексельТретьихЛиц
- Облигация
-
-
- ТОРГ12
- АктНаПередачуПрав
-
-
- Здания
- Сооружения
- МашиныИОборудование
- ОфисноеОборудование
- ТранспортныеСредства
- ПроизводственныйИХозяйственныйИнвентарь
- РабочийСкот
- ПродуктивныйСкот
- МноголетниеНасаждения
- ЗемельныеУчастки
- ОбъектыПриродопользования
- КапитальныеВложенияВАрендованноеИмущество
- ПрочееИмуществоТребующееГосударственнойРегистрации
- ДругиеВидыОсновныхСредств
-
-
- ПродажаНаЭкспорт
- ПродажаНеОблагаетсяНДС
- ПродажаОблагаетсяЕНВД
- ПродажаОблагаетсяНДС
- ОблагаетсяНДСУПокупателя
-
-
- НалоговыйАгентПоНДС
- НДСИсчисляетсяПокупателем
- НеОблагаетсяНДС
- ОблагаетсяЕНВД
- ОблагаетсяНДС
- ЭлектронныеУслуги
-
-
- Мужской
- Женский
-
-
- НачислениеАмортизации
- ВключениеВРасходыПриПринятииКУчету
- СтоимостьНеВключаетсяВРасходы
- ПринятиеКУчетуЛизинговогоОС
- ВключитьВСоставАмортизируемогоИмущества
-
-
- НачислениеАмортизации
- НачислениеИзноса
- СтоимостьНеПогашается
- НачислениеИзносаПоЕНАОФ
- СписаниеПриПринятииКУчету
- ПринятиеКУчетуЛизинговогоОС
- СписатьАмортизациюНаЗатратыПриПринятииКУчету
-
-
- Самовывоз
- ДоКлиента
- СиламиПеревозчика
- СиламиПеревозчикаПоАдресу
- СиламиПоставщикаДоНашегоСклада
- СиламиПеревозчикаДоНашегоСклада
- СиламиПеревозчикаДоПунктаПередачи
- НашимиСиламиСАдресаОтправителя
- КПолучателюОпределяетСлужбаДоставки
- ОтОтправителяОпределяетСлужбаДоставки
- ПоручениеЭкспедиторуСоСклада
- ПоручениеЭкспедиторуНаСклад
- ПоручениеЭкспедиторуВПункте
-
-
- НеОплачен
- ОплаченЧастично
- Оплачен
- Отменен
-
-
- НеОтгружен
- ОтгруженЧастично
- Отгружен
- Отменен
-
-
- ЧерезБанк
- ЧерезКассу
- ЧерезРаздатчика
- ПеречислениемНаСчета
-
-
- ПриПередаче
- ПоСроку
- ПоНаработке
-
-
- НаБумажномНосителе
- ВЭлектронномВиде
-
-
- Линейный
- УменьшаемогоОстатка
- ПропорциональноОбъемуПродукции
-
-
- Линейный
- Нелинейный
- ПоЕНАОФ
-
-
- Линейный
- УменьшаемогоОстатка
- ПоСуммеЧиселЛетИспользования
- ПропорциональноОбъемуПродукции
- ПоЕНАОФ
- ПоЕНАОФНа1000кмПробега
-
-
- Автоматически
- ПоДокументу
- НеПогашать
-
-
- ПриобретениеЗаПлату
- Строительство
- ВкладВУставныйКапитал
- ВОбменНаДругоеИмущество
- БезвозмездноеПоступление
- ПоДоговоруАренды
- ПоступлениеВДоверительноеУправление
- ВкладВСовместнуюДеятельность
- Иное
- ПоДоговоруЛизинга
-
-
- ПроцентОтСуммыПродажи
- ПроцентОтРазницыСуммПродажиИПоступления
- НеРассчитывается
-
-
- НДС4
- НДС4_104
- НДС18
- НДС18_118
- НДС2
- НДС2_102
- НДС10
- НДС10_110
- НДС0
- НДС20
- НДС20_120
- БезНДС
- НДСИсчисляетсяНалоговымАгентом
-
-
- НеСогласована
- Согласована
- КОплате
- Отклонена
-
-
- СырьеИМатериалы
- ПокупныеПолуфабрикатыИКомплектующие
- ВозвратнаяТара
- Топливо
- ЗапасныеЧасти
- ПрочиеМатериалы
- СтроительныеМатериалы
- ИнвентарьИХозяйственныеПринадлежности
- СпецоснасткаИСпецодеждаНаСкладе
- СобственныеТовары
- ПокупныеИзделия
- ГотоваяПродукция
- КомиссионныеТовары
- ДавальческиеСырьеИМатериалы
-
-
- Товар
- Услуга
- Работа
- МногооборотнаяТара
-
-
- Аккредитив
- БанковскийОрдер
- ИнкассовоеПоручение
- ПлатежныйОрдер
- ПлатежноеПоручение
- ПлатежноеТребование
-
-
- Аннулирован
- ЗакрытПринудительно
- ИзвещениеНаПодписи
- НаПодписи
- НаУтверждении
- НеПолучен
- НеСформирован
- ОбменЗавершен
- ОбменЗавершенСИсправлениями
- ОжидаетсяАннулирование
- ОжидаетсяИзвещениеОПолучении
- ОжидаетсяИсправление
- ОжидаетсяОтправка
- ОжидаетсяОтправкаИзвещения
- ОжидаетсяОтправкаОператору
- ОжидаетсяОтправкаПолучателю
- ОжидаетсяПередачаОператору
- ОжидаетсяПодтверждение
- ОжидаетсяПодтверждениеОператора
- Отклонен
- ОшибкаПередачи
- ТребуетсяАннулировать
- ТребуетсяУточнитьДокумент
-
-
- ВсеВыполнено
- ДействийНеТребуется
- ТребуютсяДействия
- Отклонен
-
-
- Оптовый
- Розничный
- НеавтоматизированнаяТорговаяТочка
-
-
- Собственные
- Агентские
-
-
- Наличная
- Безналичная
- ПлатежнаяКарта
-
-
- ЮридическоеЛицо
- ФизическоеЛицо
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Наличные
- Электронно
- Предоплата
- Постоплата
- ВстречноеПредставление
-
-
- Аванс
- ОплатаКредита
- ПередачаБезОплаты
- ПередачаСПолнойОплатой
- ПередачаСЧастичнойОплатой
- ПредоплатаПолная
- ПредоплатаЧастичная
-
-
- БанковскийПлатежныйАгент
- БанковскийПлатежныйСубАгент
- ПлатежныйАгент
- ПлатежныйСубАгент
- Поверенный
- Комиссионер
- Агент
-
-
- Общая
- УпрощеннаяДоход
- УпрощеннаяДоходМинусРасход
- ЕНВД
- ЕдиныйСельскохозяйственныйНалог
- ПатентнаяСистема
-
-
- Товар
- ПодакцизныйТовар
- Работа
- Услуга
- СтавкаАзартнойИгры
- ВыигрышАзартнойИгры
- ЛотерейныйБилет
- ВыигрышЛотереи
- ПредоставлениеРезультатаИнтеллектуальнойДеятельности
- ПлатежВыплата
- АгентскоеВознаграждение
- СоставнойПредметРасчета
- ИнойПредметРасчета
- ИмущественноеПраво
- ВнереализационныйДоход
- СтраховыеВзносы
- ТорговыйСбор
- КурортныйСбор
-
-
-
-
-
-
- МаркированныйТовар
- МонотоварнаяУпаковка
- МультитоварнаяУпаковка
-
-
- PDF417
- ITF14
- EAN8
- EAN13
- Code39
- Code128
- SSCC
- GS1_DataBarExpandedStacked
- GS1_128
- QR
-
-
-
-
-
- РегламентированнаяОтчетность
- ОтчетностьПоМСФО
-
-
- НеОкгруглять
- ОкруглятьДо1000
- ОкруглятьДо1000000
-
-
- День
- Неделя
- Декада
- Месяц
- Квартал
- Полугодье
- Год
-
-
-
-
- Принят
- Подтвержден
- ГотовКВыдаче
- ПереданВДоставку
- Выполнен
- Отменен
- Комплектуется
-
-
-
-
- ОтгрузкаПоВозвратуПоставщику
- ОтгрузкаПоПеремещению
- ОтгрузкаКлиенту
-
-
- ПриемкаОтПоставщика
- ПриемкаПоПеремещению
- ПриемкаПоВозвратуОтКлиента
-
-
-
-
-
- ДоходыБезОграниченияВзысканий
- ЗарплатаВознаграждения
- КомпенсацииНеоблагаемые
- КомпенсацииОблагаемые
-
-
-
-
-
-
-
- Алкогольная
- Табак
- Обувь
- ЛегкаяПромышленность
- МолочнаяПродукция
- Шины
- Фотоаппараты
- Духи
- Велосипеды
- КреслаКоляски
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ВодительскоеУдостоверение
- ВоенныйБилет
- ВоенныйБилетОфицераЗапаса
- ДипломатическийПаспорт
- ЗагранпаспортРФ
- ЗагранпаспортСССР
- ПаспортРФ
- ПаспортСССР
- ПаспортМинморфлота
- ПаспортМоряка
- СвидетельствоОРождении
- УдостоверениеОфицера
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- День
- Месяц
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Доверенность
- Приказ
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ОсновнаяСистемаНалогообложения
- ОсобыйПорядокНалогообложения
- РаспределяемыеЗатраты
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- КредитыПолученные
- ЗаймыПолученные
- ЗаймыВыданныеСотрудникам
- Депозиты
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Проценты
- Комиссия
-
-
-
-
- Краткосрочный
- Долгосрочный
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ПолучениеНаличных
- Инкассация
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ (((0[1-9]{1}|[1-2]{1}[0-9]{1})\.(0[1-9]{1}|1[0-2]{1}))|((30)\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\.(01|03|05|07|08|10|12)))\.(18[0-9]{2}|19[0-9]{2}|20[0-9]{2})
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+ Первая
+ Вторая
+ Третья
+ Четвертая
+ Пятая
+ Шестая
+ Седьмая
+ Восьмая
+ Девятая
+ Десятая
+ Отдельная
+
+
+ Аванс
+ Предоплата
+ Кредит
+ ОтсрочкаПлатежа
+
+
+ ВПользуПоставщика
+ НаПрочиеДоходы
+
+
+ ЗаСчетСтороннейКомпании
+ ЗаСчетПоставщика
+ НаПрочиеРасходы
+
+
+ ПоФактическомуИспользованию
+ ЭкспортСырьевыхТоваров
+ ЭкспортНеСырьевыхТоваров
+ НеОблагаетсяНДС
+ ОблагаетсяЕНВД
+ ОблагаетсяНДС
+ ОпределяетсяРаспределением
+
+
+ Расчетный
+ Депозитный
+ Ссудный
+ ЧековыеКнижки
+ Аккредитивы
+ Иной
+
+
+ Билеты
+ Путевки
+ ПочтовыеМарки
+ ТалоныНаГСМ
+ Прочее
+
+
+ СПокупателем
+ СПоставщиком
+ СКомиссионером
+ СКомитентом
+ СКомитентомНаЗакупку
+ СКомиссионеромНаЗакупку
+ Прочее
+
+
+ ПочтовыйАдрес
+ ЮридическийАдрес
+ ФактическийАдрес
+ Телефон
+ ТелефонДомашний
+ ТелефонРабочий
+ Факс
+ ВебСтраница
+ АдресЭлектроннойПочты
+ Skype
+ ПользовательскаяКИДругое
+ ПользовательскаяКИТелефон
+ ПользовательскаяКИАдрес
+ ПользовательскаяКИАдресЭлектроннойПочты
+ ПользовательскаяКИВебСтраница
+ ПользовательскаяКИФакс
+ ПользовательскаяКИSkype
+
+
+ Пиво
+ АлкогольнаяПродукция
+ СпиртосодержащаяПищеваяПродукция
+ СпиртосодержащаяНеПищеваяПродукция
+ Спирт
+
+
+ НематериальныйАктив
+ РасходыНаНИОКР
+
+
+ ВозвратОтКлиента
+ ВозвратОтКомиссионера
+ ВозвратОтРозничногоПокупателя
+
+
+ ВозвратПоставщику
+ ВозвратКомитенту
+
+
+ ВыпускПродукцииНаСклад
+ ВыпускПродукцииВПодразделение
+
+
+ СогласованноеИзменение
+ ИсправлениеОшибки
+
+
+ СписаниеЗадолженности
+ ПереносЗадолженности
+ ПроведениеВзаимозачета
+
+
+ ОплатаОтКлиентаПлатежнойКартой
+ ВозвратОплатыКлиентуНаПлатежнуюКарту
+
+
+ ПокупкаУПоставщика
+ ПриемНаКомиссию
+ ЗакупкаПоИмпорту
+
+
+ ВзносНаличными
+ Инкассация
+
+
+ РеализацияКлиенту
+ ПередачаНаКомиссию
+ ОтгрузкаБезПереходаПравСобственности_ВПути
+ ОтгрузкаБезПереходаПравСобственности_Реализовано
+
+
+ ПрочееСписание
+ ВнутренняяПередача
+
+
+ Сборка
+ Разборка
+
+
+ Покупка
+ Доплата
+ Возврат
+ ЗаменаВозврат
+ ЗаменаПокупка
+
+
+ Руководитель
+ ГлавныйБухгалтер
+ РуководительКадровойСлужбы
+ Кассир
+ ОтветственныйЗаБухгалтерскиеРегистры
+ ОтветственныйЗаНалоговыеРегистры
+ УполномоченныйПредставитель
+ Исполнитель
+ Прочее
+
+
+ СПоставщиком
+ СПокупателем
+ КредитыИЗаймы
+ Прочее
+
+
+ Долг
+ Аванс
+
+
+ КраткосрочныеКредиты
+ ПроцентыПоКраткосрочнымКредитам
+ КраткосрочныеЗаймы
+ ПроцентыПоКраткосрочнымЗаймам
+ ДолгосрочныеКредиты
+ ПроцентыПоДолгосрочнымКредитам
+ ДолгосрочныеЗаймы
+ ПроцентыПоДолгосрочнымЗаймам
+ Комиссия
+
+
+ Займы
+ Подотчет
+ ДоговорПодряда
+ Депоненты
+
+
+ НаТовар
+ ПодарочнаяКарта
+ Дисконтная
+
+
+ ПринятиеКУчету
+ ВводВЭксплуатацию
+ ПринятиеКУчетуСВводомВЭксплуатацию
+ НачислениеАмортизации
+ ВнутреннееПеремещение
+ ТекущийРемонт
+ СреднийРемонт
+ КапитальныйРемонт
+ Переоценка
+ Реконструкция
+ Достройка
+ Дооборудование
+ ЧастичнаяЛиквидация
+ Модернизация
+ ПодготовкаКПередаче
+ Передача
+ Списание
+ Прочее
+
+
+ НаРеализацию
+ Корректировочный
+ НаАванс
+ НаАвансКомитента
+ СуммовыеРазницы
+ НалоговыйАгент
+ НаПоступление
+
+
+ Акция
+ БанковскийСертификат
+ ВексельПокупателя
+ ВексельСобственный
+ ВексельТретьихЛиц
+ Облигация
+
+
+ ТОРГ12
+ АктНаПередачуПрав
+
+
+ Здания
+ Сооружения
+ МашиныИОборудование
+ ОфисноеОборудование
+ ТранспортныеСредства
+ ПроизводственныйИХозяйственныйИнвентарь
+ РабочийСкот
+ ПродуктивныйСкот
+ МноголетниеНасаждения
+ ЗемельныеУчастки
+ ОбъектыПриродопользования
+ КапитальныеВложенияВАрендованноеИмущество
+ ПрочееИмуществоТребующееГосударственнойРегистрации
+ ДругиеВидыОсновныхСредств
+
+
+ ПродажаНаЭкспорт
+ ПродажаНеОблагаетсяНДС
+ ПродажаОблагаетсяЕНВД
+ ПродажаОблагаетсяНДС
+ ОблагаетсяНДСУПокупателя
+
+
+ НалоговыйАгентПоНДС
+ НДСИсчисляетсяПокупателем
+ НеОблагаетсяНДС
+ ОблагаетсяЕНВД
+ ОблагаетсяНДС
+ ЭлектронныеУслуги
+
+
+ Мужской
+ Женский
+
+
+ НачислениеАмортизации
+ ВключениеВРасходыПриПринятииКУчету
+ СтоимостьНеВключаетсяВРасходы
+ ПринятиеКУчетуЛизинговогоОС
+ ВключитьВСоставАмортизируемогоИмущества
+
+
+ НачислениеАмортизации
+ НачислениеИзноса
+ СтоимостьНеПогашается
+ НачислениеИзносаПоЕНАОФ
+ СписаниеПриПринятииКУчету
+ ПринятиеКУчетуЛизинговогоОС
+ СписатьАмортизациюНаЗатратыПриПринятииКУчету
+
+
+ Самовывоз
+ ДоКлиента
+ СиламиПеревозчика
+ СиламиПеревозчикаПоАдресу
+ СиламиПоставщикаДоНашегоСклада
+ СиламиПеревозчикаДоНашегоСклада
+ СиламиПеревозчикаДоПунктаПередачи
+ НашимиСиламиСАдресаОтправителя
+ КПолучателюОпределяетСлужбаДоставки
+ ОтОтправителяОпределяетСлужбаДоставки
+ ПоручениеЭкспедиторуСоСклада
+ ПоручениеЭкспедиторуНаСклад
+ ПоручениеЭкспедиторуВПункте
+
+
+ НеОплачен
+ ОплаченЧастично
+ Оплачен
+ Отменен
+
+
+ НеОтгружен
+ ОтгруженЧастично
+ Отгружен
+ Отменен
+
+
+ ЧерезБанк
+ ЧерезКассу
+ ЧерезРаздатчика
+ ПеречислениемНаСчета
+
+
+ ПриПередаче
+ ПоСроку
+ ПоНаработке
+
+
+ НаБумажномНосителе
+ ВЭлектронномВиде
+
+
+ Линейный
+ УменьшаемогоОстатка
+ ПропорциональноОбъемуПродукции
+
+
+ Линейный
+ Нелинейный
+ ПоЕНАОФ
+
+
+ Линейный
+ УменьшаемогоОстатка
+ ПоСуммеЧиселЛетИспользования
+ ПропорциональноОбъемуПродукции
+ ПоЕНАОФ
+ ПоЕНАОФНа1000кмПробега
+
+
+ Автоматически
+ ПоДокументу
+ НеПогашать
+
+
+ ПриобретениеЗаПлату
+ Строительство
+ ВкладВУставныйКапитал
+ ВОбменНаДругоеИмущество
+ БезвозмездноеПоступление
+ ПоДоговоруАренды
+ ПоступлениеВДоверительноеУправление
+ ВкладВСовместнуюДеятельность
+ Иное
+ ПоДоговоруЛизинга
+
+
+ ПроцентОтСуммыПродажи
+ ПроцентОтРазницыСуммПродажиИПоступления
+ НеРассчитывается
+
+
+ НДС4
+ НДС4_104
+ НДС18
+ НДС18_118
+ НДС2
+ НДС2_102
+ НДС10
+ НДС10_110
+ НДС0
+ НДС20
+ НДС20_120
+ БезНДС
+ НДСИсчисляетсяНалоговымАгентом
+
+
+ НеСогласована
+ Согласована
+ КОплате
+ Отклонена
+
+
+ СырьеИМатериалы
+ ПокупныеПолуфабрикатыИКомплектующие
+ ВозвратнаяТара
+ Топливо
+ ЗапасныеЧасти
+ ПрочиеМатериалы
+ СтроительныеМатериалы
+ ИнвентарьИХозяйственныеПринадлежности
+ СпецоснасткаИСпецодеждаНаСкладе
+ СобственныеТовары
+ ПокупныеИзделия
+ ГотоваяПродукция
+ КомиссионныеТовары
+ ДавальческиеСырьеИМатериалы
+
+
+ Товар
+ Услуга
+ Работа
+ МногооборотнаяТара
+
+
+ Аккредитив
+ БанковскийОрдер
+ ИнкассовоеПоручение
+ ПлатежныйОрдер
+ ПлатежноеПоручение
+ ПлатежноеТребование
+
+
+ Аннулирован
+ ЗакрытПринудительно
+ ИзвещениеНаПодписи
+ НаПодписи
+ НаУтверждении
+ НеПолучен
+ НеСформирован
+ ОбменЗавершен
+ ОбменЗавершенСИсправлениями
+ ОжидаетсяАннулирование
+ ОжидаетсяИзвещениеОПолучении
+ ОжидаетсяИсправление
+ ОжидаетсяОтправка
+ ОжидаетсяОтправкаИзвещения
+ ОжидаетсяОтправкаОператору
+ ОжидаетсяОтправкаПолучателю
+ ОжидаетсяПередачаОператору
+ ОжидаетсяПодтверждение
+ ОжидаетсяПодтверждениеОператора
+ Отклонен
+ ОшибкаПередачи
+ ТребуетсяАннулировать
+ ТребуетсяУточнитьДокумент
+
+
+ ВсеВыполнено
+ ДействийНеТребуется
+ ТребуютсяДействия
+ Отклонен
+
+
+ Оптовый
+ Розничный
+ НеавтоматизированнаяТорговаяТочка
+
+
+ Собственные
+ Агентские
+
+
+ Наличная
+ Безналичная
+ ПлатежнаяКарта
+
+
+ ЮридическоеЛицо
+ ФизическоеЛицо
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Наличные
+ Электронно
+ Предоплата
+ Постоплата
+ ВстречноеПредставление
+
+
+ Аванс
+ ОплатаКредита
+ ПередачаБезОплаты
+ ПередачаСПолнойОплатой
+ ПередачаСЧастичнойОплатой
+ ПредоплатаПолная
+ ПредоплатаЧастичная
+
+
+ БанковскийПлатежныйАгент
+ БанковскийПлатежныйСубАгент
+ ПлатежныйАгент
+ ПлатежныйСубАгент
+ Поверенный
+ Комиссионер
+ Агент
+
+
+ Общая
+ УпрощеннаяДоход
+ УпрощеннаяДоходМинусРасход
+ ЕНВД
+ ЕдиныйСельскохозяйственныйНалог
+ ПатентнаяСистема
+
+
+ Товар
+ ПодакцизныйТовар
+ Работа
+ Услуга
+ СтавкаАзартнойИгры
+ ВыигрышАзартнойИгры
+ ЛотерейныйБилет
+ ВыигрышЛотереи
+ ПредоставлениеРезультатаИнтеллектуальнойДеятельности
+ ПлатежВыплата
+ АгентскоеВознаграждение
+ СоставнойПредметРасчета
+ ИнойПредметРасчета
+ ИмущественноеПраво
+ ВнереализационныйДоход
+ СтраховыеВзносы
+ ТорговыйСбор
+ КурортныйСбор
+
+
+
+
+
+
+ МаркированныйТовар
+ МонотоварнаяУпаковка
+ МультитоварнаяУпаковка
+
+
+ PDF417
+ ITF14
+ EAN8
+ EAN13
+ Code39
+ Code128
+ SSCC
+ GS1_DataBarExpandedStacked
+ GS1_128
+ QR
+
+
+
+
+
+ РегламентированнаяОтчетность
+ ОтчетностьПоМСФО
+
+
+ НеОкгруглять
+ ОкруглятьДо1000
+ ОкруглятьДо1000000
+
+
+ День
+ Неделя
+ Декада
+ Месяц
+ Квартал
+ Полугодье
+ Год
+
+
+
+
+ Принят
+ Подтвержден
+ ГотовКВыдаче
+ ПереданВДоставку
+ Выполнен
+ Отменен
+ Комплектуется
+
+
+
+
+ ОтгрузкаПоВозвратуПоставщику
+ ОтгрузкаПоПеремещению
+ ОтгрузкаКлиенту
+
+
+ ПриемкаОтПоставщика
+ ПриемкаПоПеремещению
+ ПриемкаПоВозвратуОтКлиента
+
+
+
+
+
+ ДоходыБезОграниченияВзысканий
+ ЗарплатаВознаграждения
+ КомпенсацииНеоблагаемые
+ КомпенсацииОблагаемые
+
+
+
+
+
+
+
+ Алкогольная
+ Табак
+ Обувь
+ ЛегкаяПромышленность
+ МолочнаяПродукция
+ Шины
+ Фотоаппараты
+ Духи
+ Велосипеды
+ КреслаКоляски
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ВодительскоеУдостоверение
+ ВоенныйБилет
+ ВоенныйБилетОфицераЗапаса
+ ДипломатическийПаспорт
+ ЗагранпаспортРФ
+ ЗагранпаспортСССР
+ ПаспортРФ
+ ПаспортСССР
+ ПаспортМинморфлота
+ ПаспортМоряка
+ СвидетельствоОРождении
+ УдостоверениеОфицера
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ День
+ Месяц
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Доверенность
+ Приказ
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ОсновнаяСистемаНалогообложения
+ ОсобыйПорядокНалогообложения
+ РаспределяемыеЗатраты
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ КредитыПолученные
+ ЗаймыПолученные
+ ЗаймыВыданныеСотрудникам
+ Депозиты
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Проценты
+ Комиссия
+
+
+
+
+ Краткосрочный
+ Долгосрочный
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ПолучениеНаличных
+ Инкассация
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original_3_18/Bots/\320\221\320\276\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Bots/\320\221\320\276\321\2021.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Bots/\320\221\320\276\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Bots/\320\221\320\276\321\2021.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Bots/\320\221\320\276\321\2021/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Bots/\320\221\320\276\321\2021/Ext/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Bots/\320\221\320\276\321\2021/Ext/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Bots/\320\221\320\276\321\2021/Ext/Module.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Ext/ObjectModule.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Ext/ObjectModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Ext/ObjectModule.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Ext/ObjectModule.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl"
diff --git a/src/test/resources/metadata/original/CommonTemplates/Active.xml b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/Active.xml
similarity index 100%
rename from src/test/resources/metadata/original/CommonTemplates/Active.xml
rename to src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/Active.xml
diff --git a/src/test/resources/metadata/edt/src/CommonTemplates/Active/Template.axdt b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/Active/Ext/Template.bin
similarity index 100%
rename from src/test/resources/metadata/edt/src/CommonTemplates/Active/Template.axdt
rename to src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/Active/Ext/Template.bin
diff --git a/src/test/resources/metadata/original/CommonTemplates/HTML.xml b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/HTML.xml
similarity index 100%
rename from src/test/resources/metadata/original/CommonTemplates/HTML.xml
rename to src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/HTML.xml
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml"
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Ext/Template.xml"
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.xml"
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Ext/Template.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Ext/Template.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Ext/Template.xml"
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\241\320\232\320\224.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\241\320\232\320\224.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\241\320\232\320\224.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\241\320\232\320\224.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\241\320\232\320\224/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\241\320\232\320\224/Ext/Template.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonTemplates/\320\241\320\232\320\224/Ext/Template.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\241\320\232\320\224/Ext/Template.xml"
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
diff --git "a/src/test/resources/metadata/original/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
similarity index 100%
rename from "src/test/resources/metadata/original/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
diff --git "a/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Ext/Template.txt" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Ext/Template.txt"
new file mode 100644
index 000000000..5f282702b
--- /dev/null
+++ "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Ext/Template.txt"
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/test/resources/metadata/original_3_18/Configuration.xml b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Configuration.xml
similarity index 100%
rename from src/test/resources/metadata/original_3_18/Configuration.xml
rename to src/test/resources/ext/designer/mdclasses_3_18/src/cf/Configuration.xml
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Ext/ObjectModule.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.xml"
diff --git "a/src/test/resources/metadata/original_3_18/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
diff --git a/src/test/resources/metadata/original_3_18/Ext/ManagedApplicationModule.bsl b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Ext/ManagedApplicationModule.bsl
similarity index 100%
rename from src/test/resources/metadata/original_3_18/Ext/ManagedApplicationModule.bsl
rename to src/test/resources/ext/designer/mdclasses_3_18/src/cf/Ext/ManagedApplicationModule.bsl
diff --git "a/src/test/resources/metadata/original_3_18/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
diff --git "a/src/test/resources/metadata/original_3_18/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.xml"
diff --git "a/src/test/resources/metadata/original_3_18/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Ext/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Ext/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Ext/Module.bsl"
diff --git "a/src/test/resources/metadata/original_3_18/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Roles/\320\240\320\276\320\273\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Roles/\320\240\320\276\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Roles/\320\240\320\276\320\273\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Roles/\320\240\320\276\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/original_3_18/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Roles/\320\240\320\276\320\273\321\2141/Ext/Rights.xml"
diff --git "a/src/test/resources/metadata/original_3_18/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses_3_18/src/cf/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_3_18/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses_3_18/src/cf/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
diff --git "a/src/test/resources/metadata/original_ext/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.xml"
diff --git "a/src/test/resources/metadata/original_ext/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml"
diff --git "a/src/test/resources/metadata/original_ext/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.xml"
diff --git "a/src/test/resources/metadata/original_ext/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.xml"
diff --git "a/src/test/resources/metadata/original_ext/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.xml"
diff --git "a/src/test/resources/metadata/original_ext/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/Ext/CommandModule.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/Ext/CommandModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/Ext/CommandModule.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/Ext/CommandModule.bsl"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Templates/\320\234\320\260\320\272\320\265\321\202.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Templates/\320\234\320\260\320\272\320\265\321\202.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Templates/\320\234\320\260\320\272\320\265\321\202.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Templates/\320\234\320\260\320\272\320\265\321\202.xml"
diff --git "a/src/test/resources/metadata/original_ext/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.xml"
diff --git "a/src/test/resources/metadata/original_ext/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.xml"
diff --git "a/src/test/resources/metadata/original_ext/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.xml"
diff --git "a/src/test/resources/metadata/original_ext/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/Ext/CommandModule.bsl"
diff --git "a/src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Ext/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Ext/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Ext/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Ext/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonTemplates/\320\234\320\260\320\272\320\265\321\202.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonTemplates/\320\234\320\260\320\272\320\265\321\202.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Ext/Template.xml"
diff --git "a/src/test/resources/metadata/original_ext/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021.xml"
diff --git a/src/test/resources/metadata/original_ext/Configuration.xml b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Configuration.xml
similarity index 100%
rename from src/test/resources/metadata/original_ext/Configuration.xml
rename to src/test/resources/ext/designer/mdclasses_ext/src/cf/Configuration.xml
diff --git "a/src/test/resources/metadata/original_ext/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.xml"
diff --git "a/src/test/resources/metadata/original_ext/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
diff --git "a/src/test/resources/metadata/original_ext/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
diff --git "a/src/test/resources/metadata/original_ext/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.xml"
diff --git "a/src/test/resources/metadata/original_ext/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.xml"
diff --git "a/src/test/resources/metadata/original_ext/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.xml"
diff --git "a/src/test/resources/metadata/original_ext/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.xml"
diff --git "a/src/test/resources/metadata/original_ext/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.xml"
diff --git "a/src/test/resources/metadata/original_ext/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml"
diff --git "a/src/test/resources/metadata/original_ext/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.xml"
diff --git "a/src/test/resources/metadata/original_ext/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
diff --git "a/src/test/resources/metadata/original_ext/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.xml"
diff --git "a/src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
diff --git "a/src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.xml"
diff --git "a/src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.xml"
diff --git "a/src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.xml"
diff --git "a/src/test/resources/metadata/original_ext/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Languages/\320\240\321\203\321\201\321\201\320\272\320\270\320\271.xml"
diff --git "a/src/test/resources/metadata/original_ext/Reports/\320\236\321\202\321\207\320\265\321\2021.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2021.xml"
diff --git "a/src/test/resources/metadata/original_ext/Reports/\320\236\321\202\321\207\320\265\321\2022.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2022.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Reports/\320\236\321\202\321\207\320\265\321\2022.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Reports/\320\236\321\202\321\207\320\265\321\2022.xml"
diff --git "a/src/test/resources/metadata/original_ext/Roles/\320\240\320\276\320\273\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Roles/\320\240\320\276\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Roles/\320\240\320\276\320\273\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Roles/\320\240\320\276\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/original_ext/Roles/\320\240\320\276\320\273\321\2142.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Roles/\320\240\320\276\320\273\321\2142.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Roles/\320\240\320\276\320\273\321\2142.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Roles/\320\240\320\276\320\273\321\2142.xml"
diff --git "a/src/test/resources/metadata/original_ext/Roles/\320\240\320\276\320\273\321\2142/Ext/Rights.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Roles/\320\240\320\276\320\273\321\2142/Ext/Rights.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Roles/\320\240\320\276\320\273\321\2142/Ext/Rights.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Roles/\320\240\320\276\320\273\321\2142/Ext/Rights.xml"
diff --git "a/src/test/resources/metadata/original_ext/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.xml"
diff --git "a/src/test/resources/metadata/original_ext/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.xml"
diff --git "a/src/test/resources/metadata/original_ext/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.xml"
diff --git "a/src/test/resources/metadata/original_ext/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.xml"
diff --git "a/src/test/resources/metadata/original_ext/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.xml"
diff --git "a/src/test/resources/metadata/original_ext/Styles/\320\241\321\202\320\270\320\273\321\2141.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/original_ext/Styles/\320\241\321\202\320\270\320\273\321\2142.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Styles/\320\241\321\202\320\270\320\273\321\2142.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Styles/\320\241\321\202\320\270\320\273\321\2142.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Styles/\320\241\321\202\320\270\320\273\321\2142.xml"
diff --git "a/src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.xml"
diff --git "a/src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml"
diff --git "a/src/test/resources/metadata/original_ext/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602.xml"
diff --git "a/src/test/resources/metadata/original_ext/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/Ext/WSDefinition.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/Ext/WSDefinition.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/Ext/WSDefinition.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/Ext/WSDefinition.xml"
diff --git "a/src/test/resources/metadata/original_ext/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
diff --git "a/src/test/resources/metadata/original_ext/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012.xml"
diff --git "a/src/test/resources/metadata/original_ext/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1.xml"
diff --git "a/src/test/resources/metadata/original_ext/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2.xml" "b/src/test/resources/ext/designer/mdclasses_ext/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2.xml"
similarity index 100%
rename from "src/test/resources/metadata/original_ext/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2.xml"
rename to "src/test/resources/ext/designer/mdclasses_ext/src/cf/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2.xml"
diff --git a/src/test/resources/ext/designer/ssl_3_1 b/src/test/resources/ext/designer/ssl_3_1
new file mode 160000
index 000000000..472d8fd83
--- /dev/null
+++ b/src/test/resources/ext/designer/ssl_3_1
@@ -0,0 +1 @@
+Subproject commit 472d8fd83b51a81e9abed684af6e57bacbf63bfe
diff --git a/src/test/resources/ext/edt/external/.project b/src/test/resources/ext/edt/external/.project
new file mode 100644
index 000000000..5b6ad8a70
--- /dev/null
+++ b/src/test/resources/ext/edt/external/.project
@@ -0,0 +1,18 @@
+
+
+ ВнешнийОтчетФайлы
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextBuilder
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextNature
+ com._1c.g5.v8.dt.core.V8ExternalObjectsNature
+
+
diff --git a/src/test/resources/metadata/edt/.settings/org.eclipse.core.resources.prefs b/src/test/resources/ext/edt/external/.settings/org.eclipse.core.resources.prefs
similarity index 100%
rename from src/test/resources/metadata/edt/.settings/org.eclipse.core.resources.prefs
rename to src/test/resources/ext/edt/external/.settings/org.eclipse.core.resources.prefs
diff --git a/src/test/resources/ext/edt/external/DT-INF/PROJECT.PMF b/src/test/resources/ext/edt/external/DT-INF/PROJECT.PMF
new file mode 100644
index 000000000..41667bc95
--- /dev/null
+++ b/src/test/resources/ext/edt/external/DT-INF/PROJECT.PMF
@@ -0,0 +1,4 @@
+Manifest-Version: 1.0
+Runtime-Version: 8.3.19
+X-External-Script-Variant: Russian
+X-External-Languages: ru;name="Русский"
diff --git "a/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\236\320\261\321\213\321\207\320\275\320\260\321\217\320\244\320\276\321\200\320\274\320\260/Form.oform" "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\236\320\261\321\213\321\207\320\275\320\260\321\217\320\244\320\276\321\200\320\274\320\260/Form.oform"
new file mode 100644
index 000000000..753648112
Binary files /dev/null and "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\236\320\261\321\213\321\207\320\275\320\260\321\217\320\244\320\276\321\200\320\274\320\260/Form.oform" differ
diff --git "a/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form" "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form"
new file mode 100644
index 000000000..0776c05c6
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form"
@@ -0,0 +1,110 @@
+
+
+
+ Реквизит1
+ 1
+ true
+ true
+
+ true
+
+
+
+ Реквизит1
+
+
+
+ Реквизит1РасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ OnOpen
+ ПриОткрытии
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ ExternalDataProcessorObject.ТестоваяВнешняяОбработка
+
+
+ true
+
+
+ true
+
+ true
+
+
+ Реквизит1
+ 2
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+
+
+
+
diff --git "a/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl" "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
new file mode 100644
index 000000000..396915de3
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
@@ -0,0 +1,5 @@
+
+&НаКлиенте
+Процедура ПриОткрытии(Отказ)
+ // Вставить содержимое обработчика.
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/ObjectModule.bsl" "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/ObjectModule.bsl"
new file mode 100644
index 000000000..9b0eae341
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+Процедура Старт() Экспорт
+КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Templates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx" "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Templates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
new file mode 100644
index 000000000..5c373fa99
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/Templates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
@@ -0,0 +1,38 @@
+
+
+
+ ru
+ ru
+
+ ru
+ Русский
+ Русский
+
+
+
+ 1
+
+
+ 0
+
+
+
+ 0
+
+
+ ru
+ 1
+
+
+
+
+
+
+ true
+ 1
+ 1
+ 1
+
+ 72
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260.mdo" "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260.mdo"
new file mode 100644
index 000000000..59cfa5436
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalDataProcessors/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260.mdo"
@@ -0,0 +1,84 @@
+
+
+
+
+
+ ТестоваяВнешняяОбработка
+
+ ru
+ Тестовая внешняя обработка
+
+
+ ExternalDataProcessor.ТестоваяВнешняяОбработка.Form.Форма
+ ExternalDataProcessor.ТестоваяВнешняяОбработка.Form.ОбычнаяФорма
+
+ РеквизитОбработки
+
+ ru
+ Реквизит обработки
+
+
+ String
+
+ 10
+
+
+
+
+
+
+
+
+
+
+ ТабличнаяЧастьОбработки
+
+ ru
+ Табличная часть обработки
+
+
+ РеквизитТЧ
+
+ ru
+ Реквизит ТЧ
+
+
+ String
+
+ 10
+
+
+
+
+
+
+
+
+
+
+ Форма
+
+ ru
+ Форма
+
+ PersonalComputer
+ MobileDevice
+
+
+ ОбычнаяФорма
+
+ ru
+ Обычная форма
+
+ Ordinary
+ PersonalComputer
+ MobileDevice
+
+
+ Макет
+
+ ru
+ Макет
+
+
+
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\260/Form.form"
new file mode 100644
index 000000000..81a16734b
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\260/Form.form"
@@ -0,0 +1,4964 @@
+
+
+
+ КомпоновщикНастроекНастройки
+ 1
+
+ ru
+ Таблица настроек
+
+ true
+ true
+
+ true
+
+
+ Отчет.SettingsComposer.Settings
+
+ None
+
+ КомпоновщикНастроекНастройкиКоманднаяПанель
+ 3
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ OnActivateRow
+ КомпоновщикНастроекНастройкиПриАктивизацииСтроки
+
+
+ OnActivateField
+ КомпоновщикНастроекНастройкиПриАктивизацииПоля
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиСтрокаПоиска
+ 5
+
+ КомпоновщикНастроекНастройкиСтрокаПоискаРасширеннаяПодсказка
+ 7
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиСтрокаПоискаКонтекстноеМеню
+ 6
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиСостояниеПросмотра
+ 8
+
+ КомпоновщикНастроекНастройкиСостояниеПросмотраРасширеннаяПодсказка
+ 10
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиСостояниеПросмотраКонтекстноеМеню
+ 9
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиУправлениеПоиском
+ 11
+
+ КомпоновщикНастроекНастройкиУправлениеПоискомРасширеннаяПодсказка
+ 13
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиУправлениеПоискомКонтекстноеМеню
+ 12
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиРасширеннаяПодсказка
+ 4
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиКонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ ExpandAllLevels
+ true
+ true
+ true
+ true
+ AsFileRef
+
+
+ СтраницыНастроек
+ 14
+
+ СтраницаПараметровДанных
+ 16
+
+ КомпоновщикНастроекНастройкиПараметрыДанных
+ 18
+
+ ru
+ Настройки параметров
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemDataParameters
+
+ None
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхКоманднаяПанель
+ 20
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхСтрокаПоиска
+ 22
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхСтрокаПоискаРасширеннаяПодсказка
+ 24
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхСтрокаПоискаКонтекстноеМеню
+ 23
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхСостояниеПросмотра
+ 25
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхСостояниеПросмотраРасширеннаяПодсказка
+ 27
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхСостояниеПросмотраКонтекстноеМеню
+ 26
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхУправлениеПоиском
+ 28
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхУправлениеПоискомРасширеннаяПодсказка
+ 30
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхУправлениеПоискомКонтекстноеМеню
+ 29
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхРасширеннаяПодсказка
+ 21
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыДанныхКонтекстноеМеню
+ 19
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 50
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ ExpandAllLevels
+ true
+ true
+ AsFileRef
+
+ true
+ true
+
+ true
+
+
+ ru
+ Параметры
+
+
+ СтраницаПараметровДанныхРасширеннаяПодсказка
+ 17
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ Vertical
+ true
+
+
+
+ СтраницаПользовательскихПолей
+ 31
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоля
+ 33
+
+ ru
+ Настройки пользовательских полей
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemUserFields
+
+ None
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляКоманднаяПанель
+ 35
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляСтрокаПоиска
+ 37
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляСтрокаПоискаРасширеннаяПодсказка
+ 39
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляСтрокаПоискаКонтекстноеМеню
+ 38
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляСостояниеПросмотра
+ 40
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляСостояниеПросмотраРасширеннаяПодсказка
+ 42
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляСостояниеПросмотраКонтекстноеМеню
+ 41
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляУправлениеПоиском
+ 43
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляУправлениеПоискомРасширеннаяПодсказка
+ 45
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляУправлениеПоискомКонтекстноеМеню
+ 44
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляРасширеннаяПодсказка
+ 36
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПользовательскиеПоляКонтекстноеМеню
+ 34
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ 60
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+ true
+ true
+
+ true
+
+
+ ru
+ Пользовательские поля
+
+
+ СтраницаПользовательскихПолейРасширеннаяПодсказка
+ 32
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionUserFields
+
+ AlwaysHorizontal
+ true
+
+
+
+ СтраницаПолейГруппировки
+ 46
+
+ СтраницыПолейГруппировки
+ 48
+
+ НастройкиПолейГруппировки
+ 50
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировок
+ 52
+
+ ru
+ Доступные поля группируемых полей
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemGroupFields.GroupFieldsAvailableFields
+
+ None
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокКоманднаяПанель
+ 54
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокСтрокаПоиска
+ 56
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокСтрокаПоискаРасширеннаяПодсказка
+ 58
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокСтрокаПоискаКонтекстноеМеню
+ 57
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокСостояниеПросмотра
+ 59
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокСостояниеПросмотраРасширеннаяПодсказка
+ 61
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокСостояниеПросмотраКонтекстноеМеню
+ 60
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокУправлениеПоиском
+ 62
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокУправлениеПоискомРасширеннаяПодсказка
+ 64
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокУправлениеПоискомКонтекстноеМеню
+ 63
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокРасширеннаяПодсказка
+ 55
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиДоступныеПоляПолейГруппировокКонтекстноеМеню
+ 53
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 30
+ true
+ true
+ 15
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировки
+ 65
+
+ ru
+ Таблица группируемых полей
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemGroupFields
+
+ None
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиКоманднаяПанель
+ 67
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиСтрокаПоиска
+ 69
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиСтрокаПоискаРасширеннаяПодсказка
+ 71
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиСтрокаПоискаКонтекстноеМеню
+ 70
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиСостояниеПросмотра
+ 72
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиСостояниеПросмотраРасширеннаяПодсказка
+ 74
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиСостояниеПросмотраКонтекстноеМеню
+ 73
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиУправлениеПоиском
+ 75
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиУправлениеПоискомРасширеннаяПодсказка
+ 77
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиУправлениеПоискомКонтекстноеМеню
+ 76
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиРасширеннаяПодсказка
+ 68
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПоляГруппировкиКонтекстноеМеню
+ 66
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ 60
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница группируемых полей
+
+
+ НастройкиПолейГруппировкиРасширеннаяПодсказка
+ 51
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ AlwaysHorizontal
+ LeftNarrowest
+ true
+
+
+
+ НедоступныеНастройкиПолейГруппировки
+ 78
+
+ НадписьНедоступныхПолейГруппировки
+ 80
+
+ ru
+ Текущий элемент не может содержать поля группировки.
+Выберите в дереве структуры группировку, для которой требуется просмотреть или изменить состав полей группировки.
+
+ true
+ true
+
+ true
+
+
+ НадписьНедоступныхПолейГруппировкиРасширеннаяПодсказка
+ 82
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьНедоступныхПолейГруппировкиКонтекстноеМеню
+ 81
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 2
+ true
+ true
+ false
+
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница недоступных группируемых полей
+
+
+ НедоступныеНастройкиПолейГруппировкиРасширеннаяПодсказка
+ 79
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы группируемых полей
+
+
+ СтраницыПолейГруппировкиРасширеннаяПодсказка
+ 49
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Группируемые поля
+
+
+ СтраницаПолейГруппировкиРасширеннаяПодсказка
+ 47
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionGroupFields
+
+ Vertical
+ true
+
+
+
+ СтраницаПолейВыбора
+ 83
+
+ ЛокальныеВыбранныеПоля
+ 85
+
+ ru
+ Текущий элемент имеет собственные настройки выбранных полей (для детальной настройки элемента)
+
+ true
+ true
+
+ true
+
+
+
+ ЛокальныеВыбранныеПоля
+
+
+ Right
+
+ OnChange
+ ЛокальныеВыбранныеПоляПриИзменении
+
+
+ ЛокальныеВыбранныеПоляРасширеннаяПодсказка
+ 87
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЛокальныеВыбранныеПоляКонтекстноеМеню
+ 86
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ СтраницыПолейВыбора
+ 88
+
+ НастройкиВыбранныхПолей
+ 90
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбора
+ 92
+
+ ru
+ Доступные поля полей
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemSelection.SelectionAvailableFields
+
+ None
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораКоманднаяПанель
+ 94
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораСтрокаПоиска
+ 96
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораСтрокаПоискаРасширеннаяПодсказка
+ 98
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораСтрокаПоискаКонтекстноеМеню
+ 97
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораСостояниеПросмотра
+ 99
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораСостояниеПросмотраРасширеннаяПодсказка
+ 101
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораСостояниеПросмотраКонтекстноеМеню
+ 100
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораУправлениеПоиском
+ 102
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораУправлениеПоискомРасширеннаяПодсказка
+ 104
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораУправлениеПоискомКонтекстноеМеню
+ 103
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораРасширеннаяПодсказка
+ 95
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборДоступныеПоляВыбораКонтекстноеМеню
+ 93
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 30
+ true
+ true
+ 15
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+
+ КомпоновщикНастроекНастройкиВыбор
+ 105
+
+ ru
+ Таблица полей
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemSelection
+
+ None
+
+ КомпоновщикНастроекНастройкиВыборКоманднаяПанель
+ 107
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиВыборСтрокаПоиска
+ 109
+
+ КомпоновщикНастроекНастройкиВыборСтрокаПоискаРасширеннаяПодсказка
+ 111
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборСтрокаПоискаКонтекстноеМеню
+ 110
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиВыборСостояниеПросмотра
+ 112
+
+ КомпоновщикНастроекНастройкиВыборСостояниеПросмотраРасширеннаяПодсказка
+ 114
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборСостояниеПросмотраКонтекстноеМеню
+ 113
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиВыборУправлениеПоиском
+ 115
+
+ КомпоновщикНастроекНастройкиВыборУправлениеПоискомРасширеннаяПодсказка
+ 117
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборУправлениеПоискомКонтекстноеМеню
+ 116
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиВыборРасширеннаяПодсказка
+ 108
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиВыборКонтекстноеМеню
+ 106
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 60
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ ExpandAllLevels
+ true
+ true
+ true
+ true
+ AsFileRef
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница полей
+
+
+ НастройкиВыбранныхПолейРасширеннаяПодсказка
+ 91
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ AlwaysHorizontal
+ LeftNarrowest
+ true
+
+
+
+ ОтключенныеНастройкиВыбранныхПолей
+ 118
+
+ НадписьЛокальныхВыбранныхПолей
+ 120
+
+ ru
+ Выбранные поля для текущего элемента будут автоматически формироваться на основании выбранных полей всего отчета.
+Выберите в дереве структуры элемент - отчет для редактирования его выбранных полей.
+Если необходимо, чтобы текущий элемент имел выбранные поля, отличные от выбранных полей отчета, установите флажок, расположенный над этим текстом.
+
+ true
+ true
+
+ true
+
+
+ НадписьЛокальныхВыбранныхПолейРасширеннаяПодсказка
+ 122
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьЛокальныхВыбранныхПолейКонтекстноеМеню
+ 121
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 3
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКВыбраннымПолямОтчета
+ 123
+
+ ru
+ Нажмите здесь для перехода к выбранным полям отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКВыбраннымПолямОтчетаРасширеннаяПодсказка
+ 125
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКВыбраннымПолямОтчетаКонтекстноеМеню
+ 124
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница отключенных полей
+
+
+ ОтключенныеНастройкиВыбранныхПолейРасширеннаяПодсказка
+ 119
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+
+ НедоступныеНастройкиВыбранныхПолей
+ 126
+
+ НадписьНедоступныхВыбранныхПолей
+ 128
+
+ ru
+ У текущего элемента не могут быть установлены выбранные поля.
+Выберите в дереве структуры элемент - отчет для редактирования его выбранных полей.
+
+ true
+ true
+
+ true
+
+
+ НадписьНедоступныхВыбранныхПолейРасширеннаяПодсказка
+ 130
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьНедоступныхВыбранныхПолейКонтекстноеМеню
+ 129
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 2
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКВыбраннымПолямОтчетаОтНедоступныхВыбранныхПолей
+ 131
+
+ ru
+ Нажмите здесь для перехода к выбранным полям отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКВыбраннымПолямОтчетаОтНедоступныхВыбранныхПолейРасширеннаяПодсказка
+ 133
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКВыбраннымПолямОтчетаОтНедоступныхВыбранныхПолейКонтекстноеМеню
+ 132
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница недоступных полей
+
+
+ НедоступныеНастройкиВыбранныхПолейРасширеннаяПодсказка
+ 127
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы полей
+
+
+ СтраницыПолейВыбораРасширеннаяПодсказка
+ 89
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Поля
+
+
+ СтраницаПолейВыбораРасширеннаяПодсказка
+ 84
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionSelection
+
+ Vertical
+ true
+
+
+
+ СтраницаОтбора
+ 134
+
+ ЛокальныйОтбор
+ 136
+
+ ru
+ Текущий элемент имеет собственный отбор (для фильтрации записей, выводимых в элементе)
+
+ true
+ true
+
+ true
+
+
+
+ ЛокальныйОтбор
+
+
+ Right
+
+ OnChange
+ ЛокальныйОтборПриИзменении
+
+
+ ЛокальныйОтборРасширеннаяПодсказка
+ 138
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЛокальныйОтборКонтекстноеМеню
+ 137
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ СтраницыОтбора
+ 139
+
+ НастройкиОтбора
+ 141
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбора
+ 143
+
+ ru
+ Доступные поля отбора
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemFilter.FilterAvailableFields
+
+ None
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораКоманднаяПанель
+ 145
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораСтрокаПоиска
+ 147
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораСтрокаПоискаРасширеннаяПодсказка
+ 149
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораСтрокаПоискаКонтекстноеМеню
+ 148
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораСостояниеПросмотра
+ 150
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораСостояниеПросмотраРасширеннаяПодсказка
+ 152
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораСостояниеПросмотраКонтекстноеМеню
+ 151
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораУправлениеПоиском
+ 153
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораУправлениеПоискомРасширеннаяПодсказка
+ 155
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораУправлениеПоискомКонтекстноеМеню
+ 154
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораРасширеннаяПодсказка
+ 146
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборДоступныеПоляОтбораКонтекстноеМеню
+ 144
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 30
+ true
+ true
+ 15
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+
+ КомпоновщикНастроекНастройкиОтбор
+ 156
+
+ ru
+ Таблица отбора
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemFilter
+
+ None
+
+ КомпоновщикНастроекНастройкиОтборКоманднаяПанель
+ 158
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиОтборСтрокаПоиска
+ 160
+
+ КомпоновщикНастроекНастройкиОтборСтрокаПоискаРасширеннаяПодсказка
+ 162
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборСтрокаПоискаКонтекстноеМеню
+ 161
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиОтборСостояниеПросмотра
+ 163
+
+ КомпоновщикНастроекНастройкиОтборСостояниеПросмотраРасширеннаяПодсказка
+ 165
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборСостояниеПросмотраКонтекстноеМеню
+ 164
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиОтборУправлениеПоиском
+ 166
+
+ КомпоновщикНастроекНастройкиОтборУправлениеПоискомРасширеннаяПодсказка
+ 168
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборУправлениеПоискомКонтекстноеМеню
+ 167
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиОтборРасширеннаяПодсказка
+ 159
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиОтборКонтекстноеМеню
+ 157
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 60
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ ExpandAllLevels
+ true
+ true
+ true
+ true
+ AsFileRef
+ All
+ false
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница полей
+
+
+ НастройкиОтбораРасширеннаяПодсказка
+ 142
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ AlwaysHorizontal
+ LeftNarrowest
+ true
+
+
+
+ ОтключенныеНастройкиОтбора
+ 169
+
+ НадписьЛокальногоОтбора
+ 171
+
+ ru
+ В текущем элементе отбор не установлен.
+Выберите в дереве структуры отчет для редактирования отбора отчета в целом.
+Если необходимо, чтобы текущий элемент имел собственный отбор, установите флажок, расположенный над этим текстом.
+
+ true
+ true
+
+ true
+
+
+ НадписьЛокальногоОтбораРасширеннаяПодсказка
+ 173
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьЛокальногоОтбораКонтекстноеМеню
+ 172
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 3
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКОтборуОтчета
+ 174
+
+ ru
+ Нажмите здесь для перехода к отбору отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКОтборуОтчетаРасширеннаяПодсказка
+ 176
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКОтборуОтчетаКонтекстноеМеню
+ 175
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница отключенного отбора
+
+
+ ОтключенныеНастройкиОтбораРасширеннаяПодсказка
+ 170
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+
+ НедоступныеНастройкиОтбора
+ 177
+
+ НадписьНедоступногоОтбора
+ 179
+
+ ru
+ У текущего элемента не может быть установлен отбор.
+Выберите в дереве структуры отчет для редактирования отбора отчета в целом.
+
+ true
+ true
+
+ true
+
+
+ НадписьНедоступногоОтбораРасширеннаяПодсказка
+ 181
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьНедоступногоОтбораКонтекстноеМеню
+ 180
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 2
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКОтборуОтчетаОтНедоступногоОтбора
+ 182
+
+ ru
+ Нажмите здесь для перехода к отбору отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКОтборуОтчетаОтНедоступногоОтбораРасширеннаяПодсказка
+ 184
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКОтборуОтчетаОтНедоступногоОтбораКонтекстноеМеню
+ 183
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница недоступного отбора
+
+
+ НедоступныеНастройкиОтбораРасширеннаяПодсказка
+ 178
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы отбора
+
+
+ СтраницыОтбораРасширеннаяПодсказка
+ 140
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Отбор
+
+
+ СтраницаОтбораРасширеннаяПодсказка
+ 135
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionFilter
+
+ Vertical
+ true
+
+
+
+ СтраницаПорядка
+ 185
+
+ ЛокальныйПорядок
+ 187
+
+ ru
+ Текущий элемент имеет собственную сортировку (для упорядочивания записей, выводимых в элементе)
+
+ true
+ true
+
+ true
+
+
+
+ ЛокальныйПорядок
+
+
+ Right
+
+ OnChange
+ ЛокальныйПорядокПриИзменении
+
+
+ ЛокальныйПорядокРасширеннаяПодсказка
+ 189
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЛокальныйПорядокКонтекстноеМеню
+ 188
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ СтраницыПорядка
+ 190
+
+ НастройкиПорядка
+ 192
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядка
+ 194
+
+ ru
+ Доступные поля сортировки
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemOrder.OrderAvailableFields
+
+ None
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаКоманднаяПанель
+ 196
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаСтрокаПоиска
+ 198
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаСтрокаПоискаРасширеннаяПодсказка
+ 200
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаСтрокаПоискаКонтекстноеМеню
+ 199
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаСостояниеПросмотра
+ 201
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаСостояниеПросмотраРасширеннаяПодсказка
+ 203
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаСостояниеПросмотраКонтекстноеМеню
+ 202
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаУправлениеПоиском
+ 204
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаУправлениеПоискомРасширеннаяПодсказка
+ 206
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаУправлениеПоискомКонтекстноеМеню
+ 205
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаРасширеннаяПодсказка
+ 197
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокДоступныеПоляПорядкаКонтекстноеМеню
+ 195
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 30
+ true
+ true
+ 15
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+
+ КомпоновщикНастроекНастройкиПорядок
+ 207
+
+ ru
+ Таблица сортировки
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemOrder
+
+ None
+
+ КомпоновщикНастроекНастройкиПорядокКоманднаяПанель
+ 209
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПорядокСтрокаПоиска
+ 211
+
+ КомпоновщикНастроекНастройкиПорядокСтрокаПоискаРасширеннаяПодсказка
+ 213
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокСтрокаПоискаКонтекстноеМеню
+ 212
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПорядокСостояниеПросмотра
+ 214
+
+ КомпоновщикНастроекНастройкиПорядокСостояниеПросмотраРасширеннаяПодсказка
+ 216
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокСостояниеПросмотраКонтекстноеМеню
+ 215
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПорядокУправлениеПоиском
+ 217
+
+ КомпоновщикНастроекНастройкиПорядокУправлениеПоискомРасширеннаяПодсказка
+ 219
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокУправлениеПоискомКонтекстноеМеню
+ 218
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПорядокРасширеннаяПодсказка
+ 210
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПорядокКонтекстноеМеню
+ 208
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ 60
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница сортировки
+
+
+ НастройкиПорядкаРасширеннаяПодсказка
+ 193
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ AlwaysHorizontal
+ LeftNarrowest
+ true
+
+
+
+ ОтключенныеНастройкиПорядка
+ 220
+
+ НадписьЛокальногоПорядка
+ 222
+
+ ru
+ В текущем элементе сортировка не установлена.
+Выберите в дереве структуры отчет для редактирования сортировки отчета в целом.
+Если необходимо, чтобы текущий элемент имел собственную сортировку, установите флажок, расположенный над этим текстом.
+
+ true
+ true
+
+ true
+
+
+ НадписьЛокальногоПорядкаРасширеннаяПодсказка
+ 224
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьЛокальногоПорядкаКонтекстноеМеню
+ 223
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 3
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКПорядкуОтчета
+ 225
+
+ ru
+ Нажмите здесь для перехода к сортировке отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКПорядкуОтчетаРасширеннаяПодсказка
+ 227
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКПорядкуОтчетаКонтекстноеМеню
+ 226
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница отключенной сортировки
+
+
+ ОтключенныеНастройкиПорядкаРасширеннаяПодсказка
+ 221
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+
+ НедоступныеНастройкиПорядка
+ 228
+
+ НадписьНедоступногоПорядка
+ 230
+
+ ru
+ У текущего элемента не может быть установлена сортировка.
+Выберите в дереве структуры отчет для редактирования сортировки отчета в целом.
+
+ true
+ true
+
+ true
+
+
+ НадписьНедоступногоПорядкаРасширеннаяПодсказка
+ 232
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьНедоступногоПорядкаКонтекстноеМеню
+ 231
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 2
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКПорядкуОтчетаОтНедоступногоПорядка
+ 233
+
+ ru
+ Нажмите здесь для перехода к сортировке отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКПорядкуОтчетаОтНедоступногоПорядкаРасширеннаяПодсказка
+ 235
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКПорядкуОтчетаОтНедоступногоПорядкаКонтекстноеМеню
+ 234
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница недоступной сортировки
+
+
+ НедоступныеНастройкиПорядкаРасширеннаяПодсказка
+ 229
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы сортировки
+
+
+ СтраницыПорядкаРасширеннаяПодсказка
+ 191
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Сортировка
+
+
+ СтраницаПорядкаРасширеннаяПодсказка
+ 186
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionOrder
+
+ Vertical
+ true
+
+
+
+ СтраницаУсловногоОформления
+ 236
+
+ ЛокальноеУсловноеОформление
+ 238
+
+ ru
+ Текущий элемент имеет собственное условное оформление (для оформления записей, выводимых в элементе)
+
+ true
+ true
+
+ true
+
+
+
+ ЛокальноеУсловноеОформление
+
+
+ Right
+
+ OnChange
+ ЛокальноеУсловноеОформлениеПриИзменении
+
+
+ ЛокальноеУсловноеОформлениеРасширеннаяПодсказка
+ 240
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЛокальноеУсловноеОформлениеКонтекстноеМеню
+ 239
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ СтраницыУсловногоОформления
+ 241
+
+ НастройкиУсловногоОформления
+ 243
+
+ КомпоновщикНастроекНастройкиУсловноеОформление
+ 245
+
+ ru
+ Таблица условного оформления
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemConditionalAppearance
+
+ None
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеКоманднаяПанель
+ 247
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеСтрокаПоиска
+ 249
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеСтрокаПоискаРасширеннаяПодсказка
+ 251
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеСтрокаПоискаКонтекстноеМеню
+ 250
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеСостояниеПросмотра
+ 252
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеСостояниеПросмотраРасширеннаяПодсказка
+ 254
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеСостояниеПросмотраКонтекстноеМеню
+ 253
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеУправлениеПоиском
+ 255
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеУправлениеПоискомРасширеннаяПодсказка
+ 257
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеУправлениеПоискомКонтекстноеМеню
+ 256
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеРасширеннаяПодсказка
+ 248
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиУсловноеОформлениеКонтекстноеМеню
+ 246
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+ AsFileRef
+ false
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница условного оформления
+
+
+ НастройкиУсловногоОформленияРасширеннаяПодсказка
+ 244
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ AlwaysHorizontal
+ true
+
+
+
+ ОтключенныеНастройкиУсловногоОформления
+ 258
+
+ НадписьЛокальногоУсловногоОформления
+ 260
+
+ ru
+ В текущем элементе условное оформление не установлено.
+Выберите в дереве структуры отчет для редактирования условного оформления отчета в целом.
+Если необходимо, чтобы текущий элемент имел собственное условное оформление, установите флажок, расположенный над этим текстом.
+
+ true
+ true
+
+ true
+
+
+ НадписьЛокальногоУсловногоОформленияРасширеннаяПодсказка
+ 262
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьЛокальногоУсловногоОформленияКонтекстноеМеню
+ 261
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 3
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКУсловномуОформлениюОтчета
+ 263
+
+ ru
+ Нажмите здесь для перехода к условному оформлению отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКУсловномуОформлениюОтчетаРасширеннаяПодсказка
+ 265
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКУсловномуОформлениюОтчетаКонтекстноеМеню
+ 264
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница отключенного условного оформления
+
+
+ ОтключенныеНастройкиУсловногоОформленияРасширеннаяПодсказка
+ 259
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+
+ НедоступныеНастройкиУсловногоОформления
+ 266
+
+ НадписьНедоступногоУсловногоОформления
+ 268
+
+ ru
+ У текущего элемента не может быть установлено условное оформление.
+Выберите в дереве структуры отчет для редактирования условного оформления отчета в целом.
+
+ true
+ true
+
+ true
+
+
+ НадписьНедоступногоУсловногоОформленияРасширеннаяПодсказка
+ 270
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьНедоступногоУсловногоОформленияКонтекстноеМеню
+ 269
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 2
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКУсловномуОформлениюОтчетаОтНедоступногоУсловногоОформления
+ 271
+
+ ru
+ Нажмите здесь для перехода к условному оформлению отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКУсловномуОформлениюОтчетаОтНедоступногоУсловногоОформленияРасширеннаяПодсказка
+ 273
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКУсловномуОформлениюОтчетаОтНедоступногоУсловногоОформленияКонтекстноеМеню
+ 272
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница недоступного условного оформления
+
+
+ НедоступныеНастройкиУсловногоОформленияРасширеннаяПодсказка
+ 267
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы условного оформления
+
+
+ СтраницыУсловногоОформленияРасширеннаяПодсказка
+ 242
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Условное оформление
+
+
+ СтраницаУсловногоОформленияРасширеннаяПодсказка
+ 237
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionConditionalAppearance
+
+ Vertical
+ true
+
+
+
+ СтраницаПараметровВывода
+ 274
+
+ ЛокальныеПараметрыВывода
+ 276
+
+ ru
+ Текущий элемент имеет собственные дополнительные настройки
+
+ true
+ true
+
+ true
+
+
+
+ ЛокальныеПараметрыВывода
+
+
+ Right
+
+ OnChange
+ ЛокальныеПараметрыВыводаПриИзменении
+
+
+ ЛокальныеПараметрыВыводаРасширеннаяПодсказка
+ 278
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЛокальныеПараметрыВыводаКонтекстноеМеню
+ 277
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ СтраницыПараметровВывода
+ 279
+
+ НастройкиПараметровВывода
+ 281
+
+ КомпоновщикНастроекНастройкиПараметрыВывода
+ 283
+
+ ru
+ Таблица дополнительных настроек
+
+ true
+ true
+
+ true
+
+
+ Items.КомпоновщикНастроекНастройки.CurrentData.ItemOutputParameters
+
+ None
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаКоманднаяПанель
+ 285
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаСтрокаПоиска
+ 287
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаСтрокаПоискаРасширеннаяПодсказка
+ 289
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаСтрокаПоискаКонтекстноеМеню
+ 288
+ true
+ true
+
+ true
+
+ true
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаСостояниеПросмотра
+ 290
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаСостояниеПросмотраРасширеннаяПодсказка
+ 292
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаСостояниеПросмотраКонтекстноеМеню
+ 291
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаУправлениеПоиском
+ 293
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаУправлениеПоискомРасширеннаяПодсказка
+ 295
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаУправлениеПоискомКонтекстноеМеню
+ 294
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+ true
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаРасширеннаяПодсказка
+ 286
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпоновщикНастроекНастройкиПараметрыВыводаКонтекстноеМеню
+ 284
+ true
+ true
+
+ true
+
+ true
+
+ Tree
+ true
+ true
+ true
+ 50
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ Auto
+ Auto
+ ExpandAllLevels
+ true
+ true
+ AsFileRef
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница дополнительных настроек
+
+
+ НастройкиПараметровВыводаРасширеннаяПодсказка
+ 282
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ AlwaysHorizontal
+ true
+
+
+
+ ОтключенныеНастройкиПараметровВывода
+ 296
+
+ НадписьЛокальныхПараметровВывода
+ 298
+
+ ru
+ В текущем элементе дополнительные настройки не установлены.
+Выберите в дереве структуры отчет для редактирования дополнительных настроек отчета в целом.
+Если необходимо, чтобы текущий элемент имел собственные дополнительные настройки, установите флажок, расположенный над этим текстом.
+
+ true
+ true
+
+ true
+
+
+ НадписьЛокальныхПараметровВыводаРасширеннаяПодсказка
+ 300
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьЛокальныхПараметровВыводаКонтекстноеМеню
+ 299
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 3
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКПараметрамВыводаОтчета
+ 301
+
+ ru
+ Нажмите здесь для перехода к дополнительным настройкам отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКПараметрамВыводаОтчетаРасширеннаяПодсказка
+ 303
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКПараметрамВыводаОтчетаКонтекстноеМеню
+ 302
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница отключенных дополнительных настроек
+
+
+ ОтключенныеНастройкиПараметровВыводаРасширеннаяПодсказка
+ 297
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+
+ НедоступныеНастройкиПараметровВывода
+ 304
+
+ НадписьНедоступныхПараметровВывода
+ 306
+
+ ru
+ У текущего элемента не могут быть установлены дополнительные настройки.
+Выберите в дереве структуры отчет для редактирования дополнительных настроек отчета в целом.
+
+ true
+ true
+
+ true
+
+
+ НадписьНедоступныхПараметровВыводаРасширеннаяПодсказка
+ 308
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НадписьНедоступныхПараметровВыводаКонтекстноеМеню
+ 307
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ 2
+ true
+ true
+ false
+
+ Left
+
+
+
+ ПереходКПараметрамВыводаОтчетаОтНедоступныхПараметровВывода
+ 309
+
+ ru
+ Нажмите здесь для перехода к дополнительным настройкам отчета.
+
+ true
+ true
+
+ true
+
+
+ ПереходКПараметрамВыводаОтчетаОтНедоступныхПараметровВыводаРасширеннаяПодсказка
+ 311
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПереходКПараметрамВыводаОтчетаОтНедоступныхПараметровВыводаКонтекстноеМеню
+ 310
+ true
+ true
+
+ true
+
+ true
+
+ Label
+ true
+ true
+
+
+ Click
+ ПерейтиКОтчету
+
+ true
+ Left
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страница недоступных дополнительных настроек
+
+
+ НедоступныеНастройкиПараметровВыводаРасширеннаяПодсказка
+ 305
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы дополнительных настроек
+
+
+ СтраницыПараметровВыводаРасширеннаяПодсказка
+ 280
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Дополнительные настройки
+
+
+ СтраницаПараметровВыводаРасширеннаяПодсказка
+ 275
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+
+ StdPicture.DataCompositionOutputParameters
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Группа настроек
+
+
+ СтраницыНастроекРасширеннаяПодсказка
+ 15
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ TabsOnTop
+ Auto
+
+
+ Bottom
+
+
+ -1
+ true
+ true
+
+ true
+
+ Right
+ true
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+ DontUse
+
+ Отчет
+ 1
+
+ ExternalReportObject.ТестовыйВнешнийОтчет
+
+
+ true
+
+
+ true
+
+ true
+
+
+ ЛокальныеВыбранныеПоля
+
+ ru
+ Локальные выбранные поля
+
+ 2
+
+ Boolean
+
+
+ true
+
+
+ true
+
+
+
+ ЛокальныйОтбор
+
+ ru
+ Локальный отбор
+
+ 3
+
+ Boolean
+
+
+ true
+
+
+ true
+
+
+
+ ЛокальныйПорядок
+
+ ru
+ Локальный порядок
+
+ 4
+
+ Boolean
+
+
+ true
+
+
+ true
+
+
+
+ ЛокальноеУсловноеОформление
+
+ ru
+ Локальное условное оформление
+
+ 5
+
+ Boolean
+
+
+ true
+
+
+ true
+
+
+
+ ЛокальныеПараметрыВывода
+
+ ru
+ Локальное условное оформление
+
+ 6
+
+ Boolean
+
+
+ true
+
+
+ true
+
+
+
+
+
+
+
+ Variant
+
+
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\260/Module.bsl"
new file mode 100644
index 000000000..83d0e1969
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\260/Module.bsl"
@@ -0,0 +1,347 @@
+&НаКлиенте
+Процедура ПоляГруппировкиНедоступны()
+
+ Элементы.СтраницыПолейГруппировки.ТекущаяСтраница = Элементы.НедоступныеНастройкиПолейГруппировки;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ВыбранныеПоляДоступны(ЭлементСтруктуры)
+
+ Если Отчет.КомпоновщикНастроек.Настройки.НаличиеВыбораУЭлемента(ЭлементСтруктуры) Тогда
+
+ ЛокальныеВыбранныеПоля = Истина;
+ Элементы.СтраницыПолейВыбора.ТекущаяСтраница = Элементы.НастройкиВыбранныхПолей;
+
+ Иначе
+
+ ЛокальныеВыбранныеПоля = Ложь;
+ Элементы.СтраницыПолейВыбора.ТекущаяСтраница = Элементы.ОтключенныеНастройкиВыбранныхПолей;
+
+ КонецЕсли;
+
+ Элементы.ЛокальныеВыбранныеПоля.ТолькоПросмотр = Ложь;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ВыбранныеПоляНедоступны()
+
+ ЛокальныеВыбранныеПоля = Ложь;
+ Элементы.ЛокальныеВыбранныеПоля.ТолькоПросмотр = Истина;
+ Элементы.СтраницыПолейВыбора.ТекущаяСтраница = Элементы.НедоступныеНастройкиВыбранныхПолей;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ОтборДоступен(ЭлементСтруктуры)
+
+ Если Отчет.КомпоновщикНастроек.Настройки.НаличиеОтбораУЭлемента(ЭлементСтруктуры) Тогда
+
+ ЛокальныйОтбор = Истина;
+ Элементы.СтраницыОтбора.ТекущаяСтраница = Элементы.НастройкиОтбора;
+
+ Иначе
+
+ ЛокальныйОтбор = Ложь;
+ Элементы.СтраницыОтбора.ТекущаяСтраница = Элементы.ОтключенныеНастройкиОтбора;
+
+ КонецЕсли;
+
+ Элементы.ЛокальныйОтбор.ТолькоПросмотр = Ложь;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ОтборНедоступен()
+
+ ЛокальныйОтбор = Ложь;
+ Элементы.ЛокальныйОтбор.ТолькоПросмотр = Истина;
+ Элементы.СтраницыОтбора.ТекущаяСтраница = Элементы.НедоступныеНастройкиОтбора;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ПорядокДоступен(ЭлементСтруктуры)
+
+ Если Отчет.КомпоновщикНастроек.Настройки.НаличиеПорядкаУЭлемента(ЭлементСтруктуры) Тогда
+
+ ЛокальныйПорядок = Истина;
+ Элементы.СтраницыПорядка.ТекущаяСтраница = Элементы.НастройкиПорядка;
+
+ Иначе
+
+ ЛокальныйПорядок = Ложь;
+ Элементы.СтраницыПорядка.ТекущаяСтраница = Элементы.ОтключенныеНастройкиПорядка;
+
+ КонецЕсли;
+
+ Элементы.ЛокальныйПорядок.ТолькоПросмотр = Ложь;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ПорядокНедоступен()
+
+ ЛокальныйПорядок = Ложь;
+ Элементы.ЛокальныйПорядок.ТолькоПросмотр = Истина;
+ Элементы.СтраницыПорядка.ТекущаяСтраница = Элементы.НедоступныеНастройкиПорядка;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура УсловноеОформлениеДоступно(ЭлементСтруктуры)
+
+ Если Отчет.КомпоновщикНастроек.Настройки.НаличиеУсловногоОформленияУЭлемента(ЭлементСтруктуры) Тогда
+
+ ЛокальноеУсловноеОформление = Истина;
+ Элементы.СтраницыУсловногоОформления.ТекущаяСтраница = Элементы.НастройкиУсловногоОформления;
+
+ Иначе
+
+ ЛокальноеУсловноеОформление = Ложь;
+ Элементы.СтраницыУсловногоОформления.ТекущаяСтраница = Элементы.ОтключенныеНастройкиУсловногоОформления;
+
+ КонецЕсли;
+
+ Элементы.ЛокальноеУсловноеОформление.ТолькоПросмотр = Ложь;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура УсловноеОформлениеНедоступно()
+
+ ЛокальноеУсловноеОформление = Ложь;
+ Элементы.ЛокальноеУсловноеОформление.ТолькоПросмотр = Истина;
+ Элементы.СтраницыУсловногоОформления.ТекущаяСтраница = Элементы.НедоступныеНастройкиУсловногоОформления;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ПараметрыВыводаДоступны(ЭлементСтруктуры)
+
+ Если Отчет.КомпоновщикНастроек.Настройки.НаличиеПараметровВыводаУЭлемента(ЭлементСтруктуры) Тогда
+
+ ЛокальныеПараметрыВывода = Истина;
+ Элементы.СтраницыПараметровВывода.ТекущаяСтраница = Элементы.НастройкиПараметровВывода;
+
+ Иначе
+
+ ЛокальныеПараметрыВывода = Ложь;
+ Элементы.СтраницыПараметровВывода.ТекущаяСтраница = Элементы.ОтключенныеНастройкиПараметровВывода;
+
+ КонецЕсли;
+
+ Элементы.ЛокальныеПараметрыВывода.ТолькоПросмотр = Ложь;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ПараметрыВыводаНедоступны()
+
+ ЛокальныеПараметрыВывода = Ложь;
+ Элементы.ЛокальныеПараметрыВывода.ТолькоПросмотр = Истина;
+ Элементы.СтраницыПараметровВывода.ТекущаяСтраница = Элементы.НедоступныеНастройкиПараметровВывода;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура КомпоновщикНастроекНастройкиПриАктивизацииПоля(Элемент)
+
+ Перем ВыбраннаяСтраница;
+
+ Если Элементы.КомпоновщикНастроекНастройки.ТекущийЭлемент.Имя = "КомпоновщикНастроекНастройкиНаличиеВыбора" Тогда
+
+ ВыбраннаяСтраница = Элементы.СтраницаПолейВыбора;
+
+ ИначеЕсли Элементы.КомпоновщикНастроекНастройки.ТекущийЭлемент.Имя = "КомпоновщикНастроекНастройкиНаличиеОтбора" Тогда
+
+ ВыбраннаяСтраница = Элементы.СтраницаОтбора;
+
+ ИначеЕсли Элементы.КомпоновщикНастроекНастройки.ТекущийЭлемент.Имя = "КомпоновщикНастроекНастройкиНаличиеПорядка" Тогда
+
+ ВыбраннаяСтраница = Элементы.СтраницаПорядка;
+
+ ИначеЕсли Элементы.КомпоновщикНастроекНастройки.ТекущийЭлемент.Имя = "КомпоновщикНастроекНастройкиНаличиеУсловногоОформления" Тогда
+
+ ВыбраннаяСтраница = Элементы.СтраницаУсловногоОформления;
+
+ ИначеЕсли Элементы.КомпоновщикНастроекНастройки.ТекущийЭлемент.Имя = "КомпоновщикНастроекНастройкиНаличиеПараметровВывода" Тогда
+
+ ВыбраннаяСтраница = Элементы.СтраницаПараметровВывода;
+
+ КонецЕсли;
+
+ Если ВыбраннаяСтраница <> Неопределено Тогда
+
+ Элементы.СтраницыНастроек.ТекущаяСтраница = ВыбраннаяСтраница;
+
+ КонецЕсли;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура КомпоновщикНастроекНастройкиПриАктивизацииСтроки(Элемент)
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ ТипЭлемента = ТипЗнч(ЭлементСтруктуры);
+
+ Если ТипЭлемента = Неопределено ИЛИ
+ ТипЭлемента = Тип("КоллекцияЭлементовСтруктурыДиаграммыКомпоновкиДанных") ИЛИ
+ ТипЭлемента = Тип("КоллекцияЭлементовСтруктурыТаблицыКомпоновкиДанных") Тогда
+
+ ПоляГруппировкиНедоступны();
+ ВыбранныеПоляНедоступны();
+ ОтборНедоступен();
+ ПорядокНедоступен();
+ УсловноеОформлениеНедоступно();
+ ПараметрыВыводаНедоступны();
+
+ ИначеЕсли ТипЭлемента = Тип("НастройкиКомпоновкиДанных") ИЛИ
+ ТипЭлемента = Тип("НастройкиВложенногоОбъектаКомпоновкиДанных") Тогда
+
+ ПоляГруппировкиНедоступны();
+
+ ЛокальныеВыбранныеПоля = Истина;
+ Элементы.ЛокальныеВыбранныеПоля.ТолькоПросмотр = Истина;
+ Элементы.СтраницыПолейВыбора.ТекущаяСтраница = Элементы.НастройкиВыбранныхПолей;
+
+ ЛокальныйОтбор = Истина;
+ Элементы.ЛокальныйОтбор.ТолькоПросмотр = Истина;
+ Элементы.СтраницыОтбора.ТекущаяСтраница = Элементы.НастройкиОтбора;
+
+ ЛокальныйПорядок = Истина;
+ Элементы.ЛокальныйПорядок.ТолькоПросмотр = Истина;
+ Элементы.СтраницыПорядка.ТекущаяСтраница = Элементы.НастройкиПорядка;
+
+ ЛокальноеУсловноеОформление = Истина;
+ Элементы.ЛокальноеУсловноеОформление.ТолькоПросмотр = Истина;
+ Элементы.СтраницыУсловногоОформления.ТекущаяСтраница = Элементы.НастройкиУсловногоОформления;
+
+ ЛокальныеПараметрыВывода = Истина;
+ Элементы.ЛокальныеПараметрыВывода.ТолькоПросмотр = Истина;
+ Элементы.СтраницыПараметровВывода.ТекущаяСтраница = Элементы.НастройкиПараметровВывода;
+
+ ИначеЕсли ТипЭлемента = Тип("ГруппировкаКомпоновкиДанных") ИЛИ
+ ТипЭлемента = Тип("ГруппировкаТаблицыКомпоновкиДанных") ИЛИ
+ ТипЭлемента = Тип("ГруппировкаДиаграммыКомпоновкиДанных") Тогда
+
+ Элементы.СтраницыПолейГруппировки.ТекущаяСтраница = Элементы.НастройкиПолейГруппировки;
+
+ ВыбранныеПоляДоступны(ЭлементСтруктуры);
+ ОтборДоступен(ЭлементСтруктуры);
+ ПорядокДоступен(ЭлементСтруктуры);
+ УсловноеОформлениеДоступно(ЭлементСтруктуры);
+ ПараметрыВыводаДоступны(ЭлементСтруктуры);
+
+ ИначеЕсли ТипЭлемента = Тип("ТаблицаКомпоновкиДанных") ИЛИ
+ ТипЭлемента = Тип("ДиаграммаКомпоновкиДанных") Тогда
+
+ ПоляГруппировкиНедоступны();
+ ВыбранныеПоляДоступны(ЭлементСтруктуры);
+ ОтборНедоступен();
+ ПорядокНедоступен();
+ УсловноеОформлениеДоступно(ЭлементСтруктуры);
+ ПараметрыВыводаДоступны(ЭлементСтруктуры);
+
+ КонецЕсли;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ПерейтиКОтчету(Элемент)
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ НастройкиЭлемента = Отчет.КомпоновщикНастроек.Настройки.НастройкиЭлемента(ЭлементСтруктуры);
+ Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока = Отчет.КомпоновщикНастроек.Настройки.ПолучитьИдентификаторПоОбъекту(НастройкиЭлемента);
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ЛокальныеВыбранныеПоляПриИзменении(Элемент)
+
+ Если ЛокальныеВыбранныеПоля Тогда
+
+ Элементы.СтраницыПолейВыбора.ТекущаяСтраница = Элементы.НастройкиВыбранныхПолей;
+
+ Иначе
+
+ Элементы.СтраницыПолейВыбора.ТекущаяСтраница = Элементы.ОтключенныеНастройкиВыбранныхПолей;
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ Отчет.КомпоновщикНастроек.Настройки.ОчиститьВыборЭлемента(ЭлементСтруктуры);
+
+ КонецЕсли;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ЛокальныйОтборПриИзменении(Элемент)
+
+ Если ЛокальныйОтбор Тогда
+
+ Элементы.СтраницыОтбора.ТекущаяСтраница = Элементы.НастройкиОтбора;
+
+ Иначе
+
+ Элементы.СтраницыОтбора.ТекущаяСтраница = Элементы.ОтключенныеНастройкиОтбора;
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ Отчет.КомпоновщикНастроек.Настройки.ОчиститьОтборЭлемента(ЭлементСтруктуры);
+
+ КонецЕсли;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ЛокальныйПорядокПриИзменении(Элемент)
+
+ Если ЛокальныйПорядок Тогда
+
+ Элементы.СтраницыПорядка.ТекущаяСтраница = Элементы.НастройкиПорядка;
+
+ Иначе
+
+ Элементы.СтраницыПорядка.ТекущаяСтраница = Элементы.ОтключенныеНастройкиПорядка;
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ Отчет.КомпоновщикНастроек.Настройки.ОчиститьПорядокЭлемента(ЭлементСтруктуры);
+
+ КонецЕсли;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ЛокальноеУсловноеОформлениеПриИзменении(Элемент)
+
+ Если ЛокальноеУсловноеОформление Тогда
+
+ Элементы.СтраницыУсловногоОформления.ТекущаяСтраница = Элементы.НастройкиУсловногоОформления;
+
+ Иначе
+
+ Элементы.СтраницыУсловногоОформления.ТекущаяСтраница = Элементы.ОтключенныеНастройкиУсловногоОформления;
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ Отчет.КомпоновщикНастроек.Настройки.ОчиститьУсловноеОформлениеЭлемента(ЭлементСтруктуры);
+
+ КонецЕсли;
+
+КонецПроцедуры
+
+&НаКлиенте
+Процедура ЛокальныеПараметрыВыводаПриИзменении(Элемент)
+
+ Если ЛокальныеПараметрыВывода Тогда
+
+ Элементы.СтраницыПараметровВывода.ТекущаяСтраница = Элементы.НастройкиПараметровВывода;
+
+ Иначе
+
+ Элементы.СтраницыПараметровВывода.ТекущаяСтраница = Элементы.ОтключенныеНастройкиПараметровВывода;
+
+ ЭлементСтруктуры = Отчет.КомпоновщикНастроек.Настройки.ПолучитьОбъектПоИдентификатору(Элементы.КомпоновщикНастроекНастройки.ТекущаяСтрока);
+ Отчет.КомпоновщикНастроек.Настройки.ОчиститьПараметрыВыводаЭлемента(ЭлементСтруктуры);
+ КонецЕсли;
+
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\272/Form.form" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\272/Form.form"
new file mode 100644
index 000000000..308505098
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\272/Form.form"
@@ -0,0 +1,82 @@
+
+
+
+ КомпоновщикНастроекПользовательскиеНастройки
+ 1
+ true
+ true
+
+ true
+
+
+ ru
+ Пользовательские настройки
+
+
+ КомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
+ 2
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ Vertical
+ true
+ true
+ Auto
+ Auto
+
+
+ Bottom
+
+
+ -1
+ true
+ true
+
+ true
+
+ Right
+ true
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ UseIfNecessary
+ true
+ true
+
+ Отчет
+ 1
+
+ ExternalReportObject.ТестовыйВнешнийОтчет
+
+
+ true
+
+
+ true
+
+ true
+
+
+
+
+
+
+ Settings
+ КомпоновщикНастроекПользовательскиеНастройки
+
+
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/Form.oform" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/Form.oform"
new file mode 100644
index 000000000..8484e2805
Binary files /dev/null and "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/Form.oform" differ
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\236\321\202\321\207\320\265\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\236\321\202\321\207\320\265\321\202\320\260/Form.form"
new file mode 100644
index 000000000..617d5bc0a
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\236\321\202\321\207\320\265\321\202\320\260/Form.form"
@@ -0,0 +1,41 @@
+
+
+ None
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Отчет
+ 1
+
+ ExternalReportObject.ТестовыйВнешнийОтчет
+
+
+ true
+
+
+ true
+
+ true
+
+
+
+
+
+
+
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\236\321\202\321\207\320\265\321\202\320\2601/Form.oform" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\236\321\202\321\207\320\265\321\202\320\2601/Form.oform"
new file mode 100644
index 000000000..b1e32b68e
Binary files /dev/null and "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Forms/\320\244\320\276\321\200\320\274\320\260\320\236\321\202\321\207\320\265\321\202\320\2601/Form.oform" differ
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/ObjectModule.bsl" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/ObjectModule.bsl"
new file mode 100644
index 000000000..3762f9eea
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/ObjectModule.bsl"
@@ -0,0 +1,8 @@
+
+Процедура ОбработкаПроверкиЗаполнения(Отказ, ПроверяемыеРеквизиты)
+ // Вставить содержимое обработчика.
+КонецПроцедуры
+
+Процедура ПриКомпоновкеРезультата(ДокументРезультат, ДанныеРасшифровки, СтандартнаяОбработка)
+ // Вставить содержимое обработчика.
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Templates/\320\236\321\201\320\275\320\276\320\262\320\275\320\260\321\217\320\241\321\205\320\265\320\274\320\260\320\232\320\276\320\274\320\277\320\276\320\275\320\276\320\262\320\272\320\270\320\224\320\260\320\275\320\275\321\213\321\205/Template.dcs" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Templates/\320\236\321\201\320\275\320\276\320\262\320\275\320\260\321\217\320\241\321\205\320\265\320\274\320\260\320\232\320\276\320\274\320\277\320\276\320\275\320\276\320\262\320\272\320\270\320\224\320\260\320\275\320\275\321\213\321\205/Template.dcs"
new file mode 100644
index 000000000..4de35c9c3
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/Templates/\320\236\321\201\320\275\320\276\320\262\320\275\320\260\321\217\320\241\321\205\320\265\320\274\320\260\320\232\320\276\320\274\320\277\320\276\320\275\320\276\320\262\320\272\320\270\320\224\320\260\320\275\320\275\321\213\321\205/Template.dcs"
@@ -0,0 +1,27 @@
+
+
+
+ ИсточникДанных1
+ Local
+
+
+ НаборДанных1
+
+ Значение
+ Значение
+
+
+ ru
+ Значение
+
+
+
+ ИсточникДанных1
+ Выбрать 1 КАК Значение
+
+
+ Основной
+ Основной
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202.mdo" "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202.mdo"
new file mode 100644
index 000000000..71ed14ee8
--- /dev/null
+++ "b/src/test/resources/ext/edt/external/src/ExternalReports/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202.mdo"
@@ -0,0 +1,112 @@
+
+
+
+
+
+ ТестовыйВнешнийОтчет
+
+ ru
+ Тестовый внешний отчет
+
+
+ ExternalReport.ТестовыйВнешнийОтчет.Form.ФормаОтчета
+ ExternalReport.ТестовыйВнешнийОтчет.Form.ФормаОтчета1
+ ExternalReport.ТестовыйВнешнийОтчет.Template.ОсновнаяСхемаКомпоновкиДанных
+ ExternalReport.ТестовыйВнешнийОтчет.Form.ФормаНастроек
+ ExternalReport.ТестовыйВнешнийОтчет.Form.ФормаНастроек1
+ ExternalReport.ТестовыйВнешнийОтчет.Form.ФормаВарианта
+
+ РевзитОтчета
+
+ ru
+ Ревзит отчета
+
+
+ String
+
+ 10
+
+
+
+
+
+
+
+
+
+
+ ТабличнаяЧасть
+
+ ru
+ Табличная часть
+
+
+ РеквизитТЧ
+
+ ru
+ Реквизит ТЧ
+
+
+ CatalogRef.Валюты
+
+
+
+
+
+
+
+ ФормаОтчета
+
+ ru
+ Форма отчета
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаНастроек
+
+ ru
+ Форма настроек
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаВарианта
+
+ ru
+ Форма варианта
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаОтчета1
+
+ ru
+ Форма отчета1
+
+ Ordinary
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаНастроек1
+
+ ru
+ Форма настроек1
+
+ Ordinary
+ PersonalComputer
+ MobileDevice
+
+
+ ОсновнаяСхемаКомпоновкиДанных
+
+ ru
+ Основная схема компоновки данных
+
+ DataCompositionSchema
+
+
diff --git a/src/test/resources/ext/edt/mdclasses/configuration/.project b/src/test/resources/ext/edt/mdclasses/configuration/.project
new file mode 100644
index 000000000..5dede4e0e
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses/configuration/.project
@@ -0,0 +1,18 @@
+
+
+ configuration
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextBuilder
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextNature
+ com._1c.g5.v8.dt.core.V8ConfigurationNature
+
+
diff --git a/src/test/resources/metadata/edt_3_18/.settings/org.eclipse.core.resources.prefs b/src/test/resources/ext/edt/mdclasses/configuration/.settings/org.eclipse.core.resources.prefs
similarity index 100%
rename from src/test/resources/metadata/edt_3_18/.settings/org.eclipse.core.resources.prefs
rename to src/test/resources/ext/edt/mdclasses/configuration/.settings/org.eclipse.core.resources.prefs
diff --git a/src/test/resources/ext/edt/mdclasses/configuration/DT-INF/PROJECT.PMF b/src/test/resources/ext/edt/mdclasses/configuration/DT-INF/PROJECT.PMF
new file mode 100644
index 000000000..44bf09169
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses/configuration/DT-INF/PROJECT.PMF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+Runtime-Version: 8.3.10
diff --git "a/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
index 07b4703ea..830077b32 100644
--- "a/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
@@ -1,51 +1,52 @@
-
-
-
-
-
-
-
-
-
-
-
- РегистрБухгалтерии1
-
- ru
- Регистр бухгалтерии
-
-
- en
- Accounting register
-
- true
- ChartOfAccounts.ПланСчетов1
- Managed
- true
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
- true
-
-
- Ресурс1
-
- Number
-
- 10
-
-
-
-
- Use
- true
-
-
+
+
+
+
+
+
+
+
+
+
+
+ РегистрБухгалтерии1
+
+ ru
+ Регистр бухгалтерии
+
+
+ en
+ Accounting register
+
+ true
+ ChartOfAccounts.ПланСчетов1
+ Managed
+ true
+
+ Измерение1
+
+ String
+
+ 10
+
+
+
+
+ Index
+ Use
+ true
+
+
+ Ресурс1
+
+ Number
+
+ 10
+
+
+
+
+ Use
+ true
+
+
diff --git "a/src/test/resources/metadata/edt/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
index 51332e271..71c077d51 100644
--- "a/src/test/resources/metadata/edt/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
@@ -1,44 +1,44 @@
-
-
-
-
-
-
-
-
-
-
- РегистрНакопления1
-
- ru
- Регистр накопления
-
- true
- Managed
- true
-
- Ресурс1
-
- Number
-
- 10
-
-
-
-
- Use
-
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
- true
-
-
+
+
+
+
+
+
+
+
+
+
+ РегистрНакопления1
+
+ ru
+ Регистр накопления
+
+ true
+ Managed
+ true
+
+ Ресурс1
+
+ Number
+
+ 10
+
+
+
+
+ Use
+
+
+ Измерение1
+
+ String
+
+ 10
+
+
+
+
+ Use
+ true
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/ObjectModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
index 4d9e3b187..cc8973852 100644
--- "a/src/test/resources/metadata/edt/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
@@ -1,26 +1,26 @@
-
-
-
-
-
-
-
-
-
-
- БизнесПроцесс1
- true
- BusinessProcess.БизнесПроцесс1.StandardAttribute.Number
- DontUse
- DontUse
- Managed
- Use
- InDialog
- String
- 9
- Variable
- true
- true
- Task.Задача1
- true
-
+
+
+
+
+
+
+
+
+
+
+ БизнесПроцесс1
+ true
+ BusinessProcess.БизнесПроцесс1.StandardAttribute.Number
+ DontUse
+ DontUse
+ Managed
+ Use
+ InDialog
+ String
+ 9
+ Variable
+ true
+ true
+ Task.Задача1
+ true
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/RecordSetModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/RecordSetModule.bsl"
new file mode 100644
index 000000000..5ebae878e
Binary files /dev/null and "b/src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/RecordSetModule.bsl" differ
diff --git "a/src/test/resources/metadata/edt/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
index 21549a053..9614cc0b7 100644
--- "a/src/test/resources/metadata/edt/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
@@ -1,54 +1,54 @@
-
-
-
-
-
-
-
-
-
-
-
- РегистрРасчета1
- true
- Month
- ChartOfCalculationTypes.ПланВидовРасчета1
- Managed
-
- Ресурс1
-
- Number
-
- 10
-
-
-
-
- Use
-
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
- true
-
-
-
-
-
-
-
- Перерасчет
-
- ru
- Перерасчет
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ РегистрРасчета1
+ true
+ Month
+ ChartOfCalculationTypes.ПланВидовРасчета1
+ Managed
+
+ Ресурс1
+
+ Number
+
+ 10
+
+
+
+
+ Use
+
+
+ Измерение1
+
+ String
+
+ 10
+
+
+
+
+ true
+ Use
+
+
+
+
+
+
+
+ Перерасчет
+
+ ru
+ Перерасчет
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
new file mode 100644
index 000000000..545bad0f7
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
@@ -0,0 +1,7 @@
+
+&НаКлиенте
+Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
+ //Вставить содержимое обработчика.
+ //ПараметрыФормы = Новый Структура("", );
+ //ОткрытьФорму("Справочник.Справочник1.ФормаСписка", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/formdata/dynamic_list/edt/Attributes/\320\234\320\276\320\271\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
similarity index 100%
rename from "src/test/resources/metadata/formdata/dynamic_list/edt/Attributes/\320\234\320\276\320\271\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
new file mode 100644
index 000000000..9a9b71bb7
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
@@ -0,0 +1,698 @@
+
+
+
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+ 1
+ true
+ true
+
+ true
+
+
+ ru
+ Группа пользовательских настроек
+
+ false
+
+ СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
+ 2
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ Vertical
+ WeakSeparation
+ true
+ true
+ Auto
+ DontUse
+
+
+
+ Список
+ 3
+ true
+ true
+
+ true
+
+
+ Список
+
+ true
+ None
+
+ Ссылка
+ 16
+ true
+ true
+
+ true
+
+
+ Список.Ref
+
+
+ СсылкаРасширеннаяПодсказка
+ 18
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СсылкаКонтекстноеМеню
+ 17
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Наименование
+ 19
+ true
+ true
+
+ true
+
+
+ Список.Description
+
+ true
+
+ НаименованиеРасширеннаяПодсказка
+ 21
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НаименованиеКонтекстноеМеню
+ 20
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Код
+ 22
+ true
+ true
+
+ true
+
+
+ Список.Code
+
+
+ КодРасширеннаяПодсказка
+ 24
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КодКонтекстноеМеню
+ 23
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ ПометкаУдаления
+ 25
+ true
+ true
+
+ true
+
+
+ Список.DeletionMark
+
+
+ ПометкаУдаленияРасширеннаяПодсказка
+ 27
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПометкаУдаленияКонтекстноеМеню
+ 26
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ Предопределенный
+ 28
+ true
+ true
+
+ true
+
+
+ Список.Predefined
+
+
+ ПредопределенныйРасширеннаяПодсказка
+ 30
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредопределенныйКонтекстноеМеню
+ 29
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ ИмяПредопределенныхДанных
+ 31
+ true
+ true
+
+ true
+
+
+ Список.PredefinedDataName
+
+
+ ИмяПредопределенныхДанныхРасширеннаяПодсказка
+ 33
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ИмяПредопределенныхДанныхКонтекстноеМеню
+ 32
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит1
+ 34
+ true
+ true
+
+ true
+
+
+ Список.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 36
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 35
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит2
+ 37
+ true
+ true
+
+ true
+
+
+ Список.Реквизит2
+
+
+ Реквизит2РасширеннаяПодсказка
+ 39
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит2КонтекстноеМеню
+ 38
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит3
+ 40
+ true
+ true
+
+ true
+
+
+ Список.Реквизит3
+
+
+ Реквизит3РасширеннаяПодсказка
+ 42
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит3КонтекстноеМеню
+ 41
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+ None
+
+ СписокКоманднаяПанель
+ 5
+ true
+ true
+
+ true
+
+ Left
+
+
+ true
+ true
+
+ true
+
+ СписокСтрокаПоиска
+ 7
+
+ СписокСтрокаПоискаРасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокСтрокаПоискаКонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ СписокСостояниеПросмотра
+ 10
+
+ СписокСостояниеПросмотраРасширеннаяПодсказка
+ 12
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокСостояниеПросмотраКонтекстноеМеню
+ 11
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+
+ true
+ Left
+
+
+
+ true
+ true
+
+ true
+
+ СписокУправлениеПоиском
+ 13
+
+ СписокУправлениеПоискомРасширеннаяПодсказка
+ 15
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокУправлениеПоискомКонтекстноеМеню
+ 14
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+
+ true
+
+
+
+ СписокРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокКонтекстноеМеню
+ 4
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ true
+ Auto
+ Auto
+ ExpandTopLevel
+ true
+ true
+ true
+
+ Список.DefaultPicture
+
+
+ 60
+
+ 0001-01-01T00:00:00
+ 0001-01-01T00:00:00
+
+
+ true
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+
+
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ ExternalEvent
+ ВнешнееСобытие
+
+ LockOwnerWindow
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Список
+ 1
+
+ DynamicList
+
+
+ true
+
+
+ true
+
+ true
+
+ Catalog.Справочник1
+ true
+ true
+ true
+ true
+
+
+
+
+
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
new file mode 100644
index 000000000..9346b751e
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
@@ -0,0 +1,6 @@
+
+
+&НаКлиенте
+Процедура ВнешнееСобытие(Источник, Событие, Данные)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
new file mode 100644
index 000000000..bbe57e8bb
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
@@ -0,0 +1,75 @@
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ DataProcessorObject.МояОбработка2
+ DataProcessorObject.МояОбработка1
+
+
+ true
+
+
+ true
+
+ true
+
+
+ МойСписок
+
+ ru
+ Мой список
+
+ 2
+
+ DynamicList
+
+
+ true
+
+
+ true
+
+
+ ВЫБРАТЬ
+ МойСправочник.Ссылка КАК Ссылка,
+ МойСправочник.ВерсияДанных КАК ВерсияДанных,
+ МойСправочник.ПометкаУдаления КАК ПометкаУдаления,
+ МойСправочник.Код КАК Код,
+ МойСправочник.Наименование КАК Наименование,
+ МойСправочник.Предопределенный КАК Предопределенный,
+ МойСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных
+ИЗ
+ Справочник.МойСправочник КАК МойСправочник
+ Catalog.МойСправочник
+ true
+ true
+ true
+ true
+
+
+
+
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
new file mode 100644
index 000000000..2993679b0
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
@@ -0,0 +1,6 @@
+
+
+&НаКлиенте
+Процедура ПриПовторномОткрытии()
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
new file mode 100644
index 000000000..173e9d3b9
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
@@ -0,0 +1,472 @@
+
+
+
+ Ссылка
+ 1
+ true
+ true
+
+ true
+
+
+ Объект.Ref
+
+
+ СсылкаРасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СсылкаКонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Код
+ 4
+ true
+ true
+
+ true
+
+
+ Объект.Code
+
+
+ КодРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КодКонтекстноеМеню
+ 5
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Наименование
+ 7
+ true
+ true
+
+ true
+
+
+ Объект.Description
+
+
+ НаименованиеРасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НаименованиеКонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ПометкаУдаления
+ 10
+ true
+ true
+
+ true
+
+
+ Объект.DeletionMark
+
+
+ ПометкаУдаленияРасширеннаяПодсказка
+ 12
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПометкаУдаленияКонтекстноеМеню
+ 11
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ EnterOnInput
+ true
+ Left
+ true
+
+
+
+ Предопределенный
+ 13
+ true
+ true
+
+ true
+
+
+ Объект.Predefined
+
+
+ ПредопределенныйРасширеннаяПодсказка
+ 15
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредопределенныйКонтекстноеМеню
+ 14
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ EnterOnInput
+ true
+ Left
+ true
+
+
+
+ ИмяПредопределенныхДанных
+ 16
+ true
+ true
+
+ true
+
+
+ Объект.PredefinedDataName
+
+
+ ИмяПредопределенныхДанныхРасширеннаяПодсказка
+ 18
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ИмяПредопределенныхДанныхКонтекстноеМеню
+ 17
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит1
+ 19
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 21
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 20
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит2
+ 22
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит2
+
+
+ Реквизит2РасширеннаяПодсказка
+ 24
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит2КонтекстноеМеню
+ 23
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит3
+ 25
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит3
+
+
+ Реквизит3РасширеннаяПодсказка
+ 27
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит3КонтекстноеМеню
+ 26
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ EnterOnInput
+ true
+ Left
+ true
+
+
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+ LockOwnerWindow
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ CatalogObject.Справочник1
+
+
+ true
+
+
+ true
+
+ true
+ true
+
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl"
new file mode 100644
index 000000000..5ebae878e
Binary files /dev/null and "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl" differ
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
index fe1073f1c..9f76a67e8 100644
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
@@ -1,152 +1,151 @@
-
-
-
-
-
-
-
-
-
- Справочник1
- true
- Catalog.Справочник1.StandardAttribute.Description
- Catalog.Справочник1.StandardAttribute.Code
- DontUse
- Use
- Managed
- Use
- 2
- true
- 9
- 25
- String
- Variable
- true
- true
- AsDescription
-
-
- ПредопределенныйЭлемент
- Предопределенный элемент
-
- 000000001
-
-
-
- InDialog
- BothWays
- Catalog.Справочник1.Form.ФормаЭлемента
- Catalog.Справочник1.Form.ФормаСписка
- Catalog.Справочник1.Form.ФормаВыбора
-
- Реквизит1
-
- String
-
- 10
-
-
-
-
-
-
-
- Use
- IndexWithAdditionalOrder
-
-
- Реквизит2
-
- Number
-
- 10
-
-
-
-
-
- Use
-
-
- Реквизит3
-
- Boolean
-
-
-
-
- Use
-
-
-
-
-
-
- ТабличнаяЧасть1
-
- Реквизит11
-
- String
-
- 10
-
-
-
-
- Use
-
-
- Реквизит22
-
- Number
-
- 10
-
-
-
-
- Use
-
-
-
- ФормаЭлемента
-
- ru
- Форма элемента
-
- PersonalComputer
- MobileDevice
-
-
- ФормаСписка
-
- ru
- Форма списка
-
- PersonalComputer
- MobileDevice
-
-
- ФормаВыбора
-
- ru
- Форма выбора
-
- PersonalComputer
- MobileDevice
-
-
- Макет
-
- ru
- Макет
-
-
-
- Команда1
- CommandGroup.ГруппаКоманд1
-
- Auto
-
-
-
+
+
+
+
+
+
+
+
+
+ Справочник1
+ true
+ Catalog.Справочник1.StandardAttribute.Description
+ Catalog.Справочник1.StandardAttribute.Code
+ DontUse
+ Use
+ Managed
+ Use
+ 2
+ true
+ 9
+ 25
+ String
+ Variable
+ true
+ true
+ AsDescription
+
+
+ ПредопределенныйЭлемент
+ Предопределенный элемент
+
+ 000000001
+
+
+
+ InDialog
+ BothWays
+ Catalog.Справочник1.Form.ФормаЭлемента
+ Catalog.Справочник1.Form.ФормаСписка
+ Catalog.Справочник1.Form.ФормаВыбора
+
+ Реквизит1
+
+ String
+
+ 10
+
+
+
+
+
+
+
+ IndexWithAdditionalOrder
+ Use
+
+
+ Реквизит2
+
+ Number
+
+ 10
+
+
+
+
+
+ Use
+
+
+ Реквизит3
+
+ Boolean
+
+
+
+
+ Use
+
+
+
+
+
+
+ ТабличнаяЧасть1
+
+ Реквизит11
+
+ String
+
+ 10
+
+
+
+
+ Use
+
+
+ Реквизит22
+
+ Number
+
+ 10
+
+
+
+
+ Use
+
+
+
+ ФормаЭлемента
+
+ ru
+ Форма элемента
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаСписка
+
+ ru
+ Форма списка
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаВыбора
+
+ ru
+ Форма выбора
+
+ PersonalComputer
+ MobileDevice
+
+
+ Макет
+
+ ru
+ Макет
+
+
+
+ Команда1
+ CommandGroup.ГруппаКоманд1
+
+ Auto
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/ObjectModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
similarity index 81%
rename from "src/test/resources/metadata/edt/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
index 3687f4ec0..47ddfad2f 100644
--- "a/src/test/resources/metadata/edt/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
@@ -1,45 +1,51 @@
-
-
-
-
-
-
-
-
-
-
-
- ПланСчетов1
- true
- ChartOfAccounts.ПланСчетов1.StandardAttribute.Description
- ChartOfAccounts.ПланСчетов1.StandardAttribute.Code
- DontUse
- DontUse
- Managed
- Use
- 9
- 25
- true
- InDialog
- BothWays
-
- ПризнакУчета
-
- ru
- Признак учета
-
-
- Boolean
-
-
-
- ПризнакУчета
-
- ru
- Признак учета
-
-
- Boolean
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ПланСчетов1
+ true
+ ChartOfAccounts.ПланСчетов1.StandardAttribute.Description
+ ChartOfAccounts.ПланСчетов1.StandardAttribute.Code
+ DontUse
+ DontUse
+ Managed
+ Use
+ 9
+ 25
+ true
+ InDialog
+ BothWays
+
+ ПризнакУчета
+
+ ru
+ Признак учета
+
+
+ Boolean
+
+
+
+
+
+
+ ПризнакУчета
+
+ ru
+ Признак учета
+
+
+ Boolean
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
index d9cdb2d46..7f981d007 100644
--- "a/src/test/resources/metadata/edt/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
@@ -1,31 +1,31 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ПланВидовРасчета1
- true
- ChartOfCalculationTypes.ПланВидовРасчета1.StandardAttribute.Description
- ChartOfCalculationTypes.ПланВидовРасчета1.StandardAttribute.Code
- DontUse
- DontUse
- Managed
- Use
- 9
- 40
- String
- Variable
- AsDescription
- InDialog
- BothWays
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ПланВидовРасчета1
+ true
+ ChartOfCalculationTypes.ПланВидовРасчета1.StandardAttribute.Description
+ ChartOfCalculationTypes.ПланВидовРасчета1.StandardAttribute.Code
+ DontUse
+ DontUse
+ Managed
+ Use
+ 9
+ 40
+ String
+ Variable
+ AsDescription
+ InDialog
+ BothWays
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ObjectModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
index 63a60a3a4..fef8a5976 100644
--- "a/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
@@ -1,34 +1,34 @@
-
-
-
-
-
-
-
-
-
-
- ПланВидовХарактеристик1
- true
- ChartOfCharacteristicTypes.ПланВидовХарактеристик1.StandardAttribute.Description
- ChartOfCharacteristicTypes.ПланВидовХарактеристик1.StandardAttribute.Code
- DontUse
- DontUse
- Managed
- Use
-
- String
-
- 10
-
-
- true
- 9
- Variable
- 25
- true
- true
- AsDescription
- InDialog
- BothWays
-
+
+
+
+
+
+
+
+
+
+
+ ПланВидовХарактеристик1
+ true
+ ChartOfCharacteristicTypes.ПланВидовХарактеристик1.StandardAttribute.Description
+ ChartOfCharacteristicTypes.ПланВидовХарактеристик1.StandardAttribute.Code
+ DontUse
+ DontUse
+ Managed
+ Use
+
+ String
+
+ 10
+
+
+ true
+ 9
+ Variable
+ 25
+ true
+ true
+ AsDescription
+ InDialog
+ BothWays
+
diff --git "a/src/test/resources/metadata/edt/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
index 543d3b5ef..86512ca18 100644
--- "a/src/test/resources/metadata/edt/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
@@ -1,5 +1,5 @@
-
-
- ГруппаКоманд1
- Auto
-
+
+
+ ГруппаКоманд1
+ Auto
+
diff --git "a/src/test/resources/metadata/edt/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
similarity index 93%
rename from "src/test/resources/metadata/edt/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
index 4c27fcfd8..c0c356a74 100644
--- "a/src/test/resources/metadata/edt/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
@@ -1,29 +1,28 @@
-
-
- ОбщийРеквизит1
-
- String
-
- 10
-
-
-
-
-
-
-
-
- Catalog.Справочник1
-
-
-
- Document.Документ1
-
-
- Use
- DontUse
- DontUse
- DontUse
- DontUse
- Use
-
+
+
+ ОбщийРеквизит1
+
+ String
+
+ 10
+
+
+
+
+
+
+
+
+ Catalog.Справочник1
+
+
+
+ Document.Документ1
+
+
+ DontUse
+ DontUse
+ DontUse
+ DontUse
+ Use
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
new file mode 100644
index 000000000..266b6b9dc
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
@@ -0,0 +1,7 @@
+
+&НаКлиенте
+Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
+ //Вставить содержимое обработчика.
+ //ПараметрыФормы = Новый Структура("", );
+ //ОткрытьФорму("ОбщаяФорма.", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
similarity index 91%
rename from "src/test/resources/metadata/edt/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
index 5c63e9cf1..0cc76c82e 100644
--- "a/src/test/resources/metadata/edt/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
@@ -1,8 +1,7 @@
-
-
- ОбщаяКоманда1
- NavigationPanelOrdinary
-
- Auto
-
-
+
+
+ ОбщаяКоманда1
+ NavigationPanelOrdinary
+
+ Auto
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
new file mode 100644
index 000000000..c4da07a74
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
@@ -0,0 +1,26 @@
+
+
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
diff --git "a/src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
index f24969d3b..057667e20 100644
--- "a/src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
@@ -1,10 +1,10 @@
-
-
- Форма
-
- ru
- Форма
-
- PersonalComputer
- MobileDevice
-
+
+
+ Форма
+
+ ru
+ Форма
+
+ PersonalComputer
+ MobileDevice
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
new file mode 100644
index 000000000..af8bf037b
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
@@ -0,0 +1,8 @@
+
+Процедура ПодпискаНаСобытие1ПередЗаписью(Источник, Отказ) Экспорт
+ // Вставить содержимое обработчика.
+КонецПроцедуры
+
+Процедура РегламентноеЗадание1() Экспорт
+ // Вставить содержимое обработчика.
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
index be621de54..4a5132fd7 100644
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
@@ -1,13 +1,13 @@
-
-
- ГлобальныйОбщийМодуль
-
- ru
- Глобальный общий модуль
-
- true
- true
- true
- true
- true
-
+
+
+ ГлобальныйОбщийМодуль
+
+ ru
+ Глобальный общий модуль
+
+ true
+ true
+ true
+ true
+ true
+
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
index 5d4feb149..8be88562c 100644
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
@@ -1,10 +1,10 @@
-
-
- ОбщийМодульВызовСервера
-
- ru
- Общий модуль вызов сервера
-
- true
- true
-
+
+
+ ОбщийМодульВызовСервера
+
+ ru
+ Общий модуль вызов сервера
+
+ true
+ true
+
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
index 7b7c9516b..ec40c79af 100644
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
@@ -1,10 +1,10 @@
-
-
- ОбщийМодульПовтИспВызов
-
- ru
- Общий модуль повт исп вызов
-
- true
- DuringRequest
-
+
+
+ ОбщийМодульПовтИспВызов
+
+ ru
+ Общий модуль повт исп вызов
+
+ true
+ DuringRequest
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/Module.bsl"
new file mode 100644
index 000000000..af8bf037b
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/Module.bsl"
@@ -0,0 +1,8 @@
+
+Процедура ПодпискаНаСобытие1ПередЗаписью(Источник, Отказ) Экспорт
+ // Вставить содержимое обработчика.
+КонецПроцедуры
+
+Процедура РегламентноеЗадание1() Экспорт
+ // Вставить содержимое обработчика.
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
index 95e65a6b5..005ffcd7a 100644
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
@@ -1,10 +1,10 @@
-
-
- ОбщийМодульПовтИспСеанс
-
- ru
- Общий модуль повт исп сеанс
-
- true
- DuringSession
-
+
+
+ ОбщийМодульПовтИспСеанс
+
+ ru
+ Общий модуль повт исп сеанс
+
+ true
+ DuringSession
+
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
index 2a3839903..d63b4ee55 100644
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
@@ -1,10 +1,10 @@
-
-
- ОбщийМодульПолныйеПрава
-
- ru
- Общий модуль полныйе права
-
- true
- true
-
+
+
+ ОбщийМодульПолныйеПрава
+
+ ru
+ Общий модуль полныйе права
+
+ true
+ true
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
new file mode 100644
index 000000000..af8bf037b
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
@@ -0,0 +1,8 @@
+
+Процедура ПодпискаНаСобытие1ПередЗаписью(Источник, Отказ) Экспорт
+ // Вставить содержимое обработчика.
+КонецПроцедуры
+
+Процедура РегламентноеЗадание1() Экспорт
+ // Вставить содержимое обработчика.
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
index 22a4e0e6b..c121d889f 100644
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
@@ -1,9 +1,9 @@
-
-
- ПростойОбщийМодуль
-
- ru
- Простой общий модуль
-
- true
-
+
+
+ ПростойОбщийМодуль
+
+ ru
+ Простой общий модуль
+
+ true
+
diff --git "a/src/test/resources/metadata/edt/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
index 3b5a290a0..07b5ca3a7 100644
--- "a/src/test/resources/metadata/edt/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
@@ -1,4 +1,4 @@
-
-
- ОбщаяКартинка1
-
+
+
+ ОбщаяКартинка1
+
diff --git a/src/test/resources/metadata/edt/src/CommonTemplates/Active/Active.mdo b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/Active/Active.mdo
similarity index 100%
rename from src/test/resources/metadata/edt/src/CommonTemplates/Active/Active.mdo
rename to src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/Active/Active.mdo
diff --git a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/Active/Template.axdt b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/Active/Template.axdt
similarity index 100%
rename from src/test/resources/metadata/edt_3_18/src/CommonTemplates/Active/Template.axdt
rename to src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/Active/Template.axdt
diff --git a/src/test/resources/metadata/edt/src/CommonTemplates/HTML/HTML.mdo b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/HTML/HTML.mdo
similarity index 100%
rename from src/test/resources/metadata/edt/src/CommonTemplates/HTML/HTML.mdo
rename to src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/HTML/HTML.mdo
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
new file mode 100644
index 000000000..f0d4db2b4
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
@@ -0,0 +1,17 @@
+
+
+ style:FieldBackColor
+ true
+ Lines
+ 20
+ 20
+
+ 10
+ 10
+ 10
+ 10
+ false
+ Auto
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
diff --git a/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ClientApplicationInterface.cai b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ClientApplicationInterface.cai
new file mode 100644
index 000000000..81372118e
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ClientApplicationInterface.cai
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/test/resources/metadata/edt/src/Configuration/Configuration.mdo b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/Configuration.mdo
similarity index 97%
rename from src/test/resources/metadata/edt/src/Configuration/Configuration.mdo
rename to src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/Configuration.mdo
index f399b3087..4fc89c701 100644
--- a/src/test/resources/metadata/edt/src/Configuration/Configuration.mdo
+++ b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/Configuration.mdo
@@ -1,154 +1,156 @@
-
-
- Конфигурация
-
-
-
-
-
-
- 8.3.10
- ManagedApplication
- PersonalComputer
- MobileDevice
- Russian
- true
- true
- Role.Роль1
- Multimedia
- Location
- Contacts
- Calendars
- Telephony
- PushNotification
- LocalNotification
- Print
- InAppPurchases
- Language.Русский
-
- ru
- Краткая информация
-
-
- en
- Short info
-
-
- ru
- Подробная информация
-
-
- en
- Detailed info
-
-
- ru
- Моя Программа
-
-
- en
- My program
-
- NotAutoFree
- UseWithWarnings
- DontUse
- 8.3.10
-
- Русский
-
- ru
- Русский
-
-
- sq
- Rusisht
-
-
- ja
- ロシア語
-
- ru
-
-
- Албанский
-
- sq
- Shqip
-
-
- ru
- Албанский
-
- sq
-
-
- Японский
-
- ru
- Японский
-
-
- ja
- 日本語
-
- ja
-
- Subsystem.ПерваяПодсистема
- Subsystem.ВтораяПодсистема
- StyleItem.ЭлементСтиля1
- Style.Стиль
- CommonPicture.ОбщаяКартинка1
- SessionParameter.ПараметрСеанса1
- Role.Роль1
- CommonTemplate.Active
- CommonTemplate.HTML
- CommonTemplate.ВнешняяКомпонента
- CommonTemplate.ГеографическаяСхема
- CommonTemplate.ГрафическаяСхема
- CommonTemplate.ДвоичныеДанные
- CommonTemplate.МакетОформления
- CommonTemplate.СКД
- CommonTemplate.ТабличныйДокумент
- CommonTemplate.ТекстовыйДокумент
- FilterCriterion.КритерийОтбора1
- CommonModule.ПростойОбщийМодуль
- CommonModule.ГлобальныйОбщийМодуль
- CommonModule.ОбщийМодульВызовСервера
- CommonModule.ОбщийМодульПовтИспВызов
- CommonModule.ОбщийМодульПовтИспСеанс
- CommonModule.ОбщийМодульПолныйеПрава
- CommonAttribute.ОбщийРеквизит1
- ExchangePlan.ПланОбмена1
- XDTOPackage.ПакетXDTO1
- WebService.WebСервис1
- HTTPService.HTTPСервис1
- WSReference.WSСсылка
- EventSubscription.ПодпискаНаСобытие1
- ScheduledJob.РегламентноеЗадание1
- SettingsStorage.ХранилищеНастроек1
- FunctionalOption.ФункциональнаяОпция1
- FunctionalOptionsParameter.ПараметрФункциональныхОпций
- DefinedType.ОпределяемыйТип1
- CommonCommand.ОбщаяКоманда1
- CommandGroup.ГруппаКоманд1
- Constant.Константа1
- CommonForm.Форма
- Catalog.Справочник1
- Document.Документ1
- DocumentNumerator.НумераторДокументов1
- Sequence.Последовательность1
- DocumentJournal.ЖурналДокументов1
- Enum.Перечисление1
- Report.Отчет1
- DataProcessor.Обработка1
- InformationRegister.РегистрСведений1
- InformationRegister.РегистрСведений2
- AccumulationRegister.РегистрНакопления1
- ChartOfCharacteristicTypes.ПланВидовХарактеристик1
- ChartOfAccounts.ПланСчетов1
- AccountingRegister.РегистрБухгалтерии1
- ChartOfCalculationTypes.ПланВидовРасчета1
- CalculationRegister.РегистрРасчета1
- BusinessProcess.БизнесПроцесс1
- Task.Задача1
-
+
+
+ Конфигурация
+
+
+
+
+
+
+ 8.3.10
+ ManagedApplication
+ PersonalComputer
+ MobileDevice
+ Russian
+ Role.Роль1
+ true
+ true
+ Multimedia
+ Location
+ Contacts
+ Calendars
+ Telephony
+ PushNotification
+ LocalNotification
+ Print
+ InAppPurchases
+ Language.Русский
+
+ ru
+ Краткая информация
+
+
+ en
+ Short info
+
+
+ ru
+ Подробная информация
+
+
+ en
+ Detailed info
+
+
+ ru
+ Моя Программа
+
+
+ en
+ My program
+
+ NotAutoFree
+ DontUse
+ 8.3.10
+
+ Русский
+
+ ja
+ ロシア語
+
+
+ sq
+ Rusisht
+
+
+ ru
+ Русский
+
+ ru
+
+
+ Албанский
+
+ ru
+ Албанский
+
+
+ sq
+ Shqip
+
+ sq
+
+
+ Японский
+
+ ru
+ Японский
+
+
+ ja
+ 日本語
+
+ ja
+
+ Subsystem.ПерваяПодсистема
+ Subsystem.ВтораяПодсистема
+ StyleItem.ЭлементСтиля1
+ Style.Стиль
+ CommonPicture.ОбщаяКартинка1
+ Interface.Интерфейс1
+ Interface.Интерфейс2
+ SessionParameter.ПараметрСеанса1
+ Role.Роль1
+ CommonTemplate.Active
+ CommonTemplate.HTML
+ CommonTemplate.ВнешняяКомпонента
+ CommonTemplate.ГеографическаяСхема
+ CommonTemplate.ГрафическаяСхема
+ CommonTemplate.ДвоичныеДанные
+ CommonTemplate.МакетОформления
+ CommonTemplate.СКД
+ CommonTemplate.ТабличныйДокумент
+ CommonTemplate.ТекстовыйДокумент
+ FilterCriterion.КритерийОтбора1
+ CommonModule.ПростойОбщийМодуль
+ CommonModule.ГлобальныйОбщийМодуль
+ CommonModule.ОбщийМодульВызовСервера
+ CommonModule.ОбщийМодульПовтИспВызов
+ CommonModule.ОбщийМодульПовтИспСеанс
+ CommonModule.ОбщийМодульПолныйеПрава
+ CommonAttribute.ОбщийРеквизит1
+ ExchangePlan.ПланОбмена1
+ XDTOPackage.ПакетXDTO1
+ WebService.WebСервис1
+ HTTPService.HTTPСервис1
+ WSReference.WSСсылка
+ EventSubscription.ПодпискаНаСобытие1
+ ScheduledJob.РегламентноеЗадание1
+ SettingsStorage.ХранилищеНастроек1
+ FunctionalOption.ФункциональнаяОпция1
+ FunctionalOptionsParameter.ПараметрФункциональныхОпций
+ DefinedType.ОпределяемыйТип1
+ CommonCommand.ОбщаяКоманда1
+ CommandGroup.ГруппаКоманд1
+ Constant.Константа1
+ CommonForm.Форма
+ Catalog.Справочник1
+ Document.Документ1
+ DocumentNumerator.НумераторДокументов1
+ Sequence.Последовательность1
+ DocumentJournal.ЖурналДокументов1
+ Enum.Перечисление1
+ Report.Отчет1
+ DataProcessor.Обработка1
+ InformationRegister.РегистрСведений1
+ InformationRegister.РегистрСведений2
+ AccumulationRegister.РегистрНакопления1
+ ChartOfCharacteristicTypes.ПланВидовХарактеристик1
+ ChartOfAccounts.ПланСчетов1
+ AccountingRegister.РегистрБухгалтерии1
+ ChartOfCalculationTypes.ПланВидовРасчета1
+ CalculationRegister.РегистрРасчета1
+ BusinessProcess.БизнесПроцесс1
+ Task.Задача1
+ ExternalDataSource.ТекущаяСУБД
+
diff --git a/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ExternalConnectionModule.bsl b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ExternalConnectionModule.bsl
new file mode 100644
index 000000000..bd4f980f3
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ExternalConnectionModule.bsl
@@ -0,0 +1,5 @@
+
+
+Процедура ПриНачалеРаботыСистемы()
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git a/src/test/resources/metadata/edt/src/Configuration/HomePageWorkArea.hpwa b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/HomePageWorkArea.hpwa
similarity index 97%
rename from src/test/resources/metadata/edt/src/Configuration/HomePageWorkArea.hpwa
rename to src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/HomePageWorkArea.hpwa
index 26b8a3e54..47fd84211 100644
--- a/src/test/resources/metadata/edt/src/Configuration/HomePageWorkArea.hpwa
+++ b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/HomePageWorkArea.hpwa
@@ -1,7 +1,7 @@
-
-
- TwoColumnsEqualWidth
- Bottom
-
-
-
+
+
+ TwoColumnsEqualWidth
+ Bottom
+
+
+
diff --git a/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ManagedApplicationModule.bsl b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ManagedApplicationModule.bsl
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/ManagedApplicationModule.bsl
@@ -0,0 +1,2 @@
+
+
diff --git a/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/SessionModule.bsl b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/SessionModule.bsl
new file mode 100644
index 000000000..a3e9da984
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses/configuration/src/Configuration/SessionModule.bsl
@@ -0,0 +1,5 @@
+
+
+Процедура УстановкаПараметровСеанса(ТребуемыеПараметры)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ManagerModule.bsl"
new file mode 100644
index 000000000..f4b68ad63
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ManagerModule.bsl"
@@ -0,0 +1,3 @@
+Процедура ПередЗаписью(Отказ)
+ Сообщить(Отказ);
+КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ValueManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ValueManagerModule.bsl"
new file mode 100644
index 000000000..6dce67c4b
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ValueManagerModule.bsl"
@@ -0,0 +1,7 @@
+
+
+
+
+Процедура ПередЗаписью(Отказ)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
index 852d61f85..6be30039a 100644
--- "a/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
@@ -1,18 +1,18 @@
-
-
-
-
-
-
- Константа1
-
- String
-
- 10
-
-
- true
-
-
- Managed
-
+
+
+
+
+
+
+ Константа1
+
+ String
+
+ 10
+
+
+ true
+
+
+ Managed
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Form.form"
new file mode 100644
index 000000000..54e02e8a1
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Form.form"
@@ -0,0 +1,3390 @@
+
+
+
+ ru
+ Журнал регистрации
+
+
+ ГруппаОтбора
+ 103
+
+ КоличествоПоказываемыхСобытий
+ 101
+
+ ru
+ Показывать
+
+ true
+ true
+
+ true
+
+
+ КоличествоПоказываемыхСобытий
+
+
+ ru
+ Количество последних событий, отбираемых из заданного интервала дат
+
+
+ OnChange
+ КоличествоПоказываемыхСобытийПриИзменении
+
+
+ КоличествоПоказываемыхСобытийExtendedTooltip
+ 136
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КоличествоПоказываемыхСобытийКонтекстноеМеню
+ 102
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Right
+ Enter
+ true
+ Left
+ true
+
+ 8
+ true
+ true
+ true
+
+ ru
+ ЧГ=0
+
+ true
+
+ 1
+
+
+ 10000
+
+
+
+ ru
+ 200 событий
+
+
+ 200
+
+
+
+
+ ru
+ 500 событий
+
+
+ 500
+
+
+
+
+ ru
+ 1000 событий
+
+
+ 1000
+
+
+
+
+ ru
+ 10000 событий
+
+
+ 10000
+
+
+
+ Style.BorderColor
+
+
+
+
+ Критичность
+ 170
+ true
+ true
+
+ true
+
+
+ Критичность
+
+
+ OnChange
+ КритичностьПриИзменении
+
+
+ КритичностьРасширеннаяПодсказка
+ 172
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КритичностьКонтекстноеМеню
+ 171
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ true
+ Left
+ true
+
+
+ Clearing
+ КритичностьОчистка
+
+ 15
+ true
+ true
+ false
+ true
+ true
+ true
+ true
+ true
+
+
+ ru
+ Ошибка
+
+
+ Ошибка
+
+
+
+
+ ru
+ Предупреждение
+
+
+ Предупреждение
+
+
+
+
+ ru
+ Информация
+
+
+ Информация
+
+
+
+
+ ru
+ Примечание
+
+
+ Примечание
+
+
+
+
+ ru
+ Все события
+
+
+ ВсеСобытия
+
+
+
+
+
+ ПредставлениеОтбора
+ 35
+
+ ru
+ Отбор
+
+ true
+ true
+
+ true
+
+
+ ПредставлениеОтбора
+
+
+ ПредставлениеОтбораExtendedTooltip
+ 137
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредставлениеОтбораКонтекстноеМеню
+ 36
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+ Left
+
+
+ Click
+ ПредставлениеОтбораНажатие
+
+ true
+ true
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Отбора
+
+
+ ГруппаОтбораExtendedTooltip
+ 135
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ HorizontalIfPossible
+ true
+ true
+ Auto
+ Auto
+
+
+
+ Страницы
+ 116
+
+ ЖурналРегистрации
+ 117
+
+ Журнал
+ 48
+
+ ru
+ Журнал
+
+ true
+ true
+
+ true
+
+
+ Журнал
+
+ false
+ None
+ Add
+ Change
+ Copy
+ CopyToClipboard
+ EndEdit
+ MoveDown
+ MoveUp
+
+ Дата
+ 51
+
+ ru
+ Дата, время
+
+ true
+ true
+
+ true
+
+
+ Журнал.Дата
+
+
+ ru
+ Дата события в часовом поясе программы.
+
+
+ ДатаExtendedTooltip
+ 146
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДатаКонтекстноеМеню
+ 52
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ true
+ Left
+ true
+
+ 5
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ ПредставлениеРазделенияДанныхСеанса
+ 119
+ true
+ true
+
+ true
+
+
+ Журнал.ПредставлениеРазделенияДанныхСеанса
+
+
+ ПредставлениеРазделенияДанныхСеансаExtendedTooltip
+ 147
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредставлениеРазделенияДанныхСеансаКонтекстноеМеню
+ 120
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ГруппаПользовательКомпьютерПриложение
+ 53
+
+ ИмяПользователя
+ 54
+
+ ru
+ Пользователь
+
+ true
+ true
+
+ true
+
+
+ Журнал.ИмяПользователя
+
+
+ ИмяПользователяExtendedTooltip
+ 149
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ИмяПользователяКонтекстноеМеню
+ 55
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ 15
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ Компьютер
+ 56
+
+ ru
+ Компьютер
+
+ true
+ true
+
+ true
+
+
+ Журнал.Компьютер
+
+
+ КомпьютерExtendedTooltip
+ 150
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомпьютерКонтекстноеМеню
+ 57
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ 15
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ ГруппаПриложениеСеанс
+ 204
+
+ ПредставлениеПриложения
+ 59
+
+ ru
+ Приложение
+
+ true
+ true
+
+ true
+
+
+ Журнал.ПредставлениеПриложения
+
+
+ ПредставлениеПриложенияExtendedTooltip
+ 152
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредставлениеПриложенияКонтекстноеМеню
+ 60
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ Сеанс
+ 80
+ true
+ true
+
+ true
+
+
+ Журнал.Сеанс
+
+
+ СеансExtendedTooltip
+ 153
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СеансКонтекстноеМеню
+ 81
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Left
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Приложение сеанс
+
+ 15
+
+ ГруппаПриложениеСеансРасширеннаяПодсказка
+ 205
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ ColumnGroup
+
+ InCell
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Пользователь, компьютер, приложение, сеанс
+
+ 15
+
+ ГруппаПользовательКомпьютерПриложениеExtendedTooltip
+ 148
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ ColumnGroup
+
+ Vertical
+ true
+ true
+
+
+
+ ГруппаСобытиеИДанные
+ 175
+
+ ПредставлениеСобытия
+ 64
+
+ ru
+ Событие
+
+ true
+ true
+
+ true
+
+
+ Журнал.ПредставлениеСобытия
+
+
+ ПредставлениеСобытияExtendedTooltip
+ 159
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредставлениеСобытияКонтекстноеМеню
+ 65
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ ГруппаДанныеМетаданные
+ 202
+
+ Данные
+ 76
+ true
+ true
+
+ true
+
+
+ Журнал.Данные
+
+
+ ДанныеExtendedTooltip
+ 166
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДанныеКонтекстноеМеню
+ 77
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ ПредставлениеМетаданных
+ 74
+
+ ru
+ Метаданные
+
+ true
+ true
+
+ true
+
+
+ Журнал.ПредставлениеМетаданных
+
+
+ ПредставлениеМетаданныхExtendedTooltip
+ 165
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПредставлениеМетаданныхКонтекстноеМеню
+ 75
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Данные метаданные
+
+
+ ГруппаДанныеМетаданныеРасширеннаяПодсказка
+ 203
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ ColumnGroup
+
+ InCell
+ true
+
+
+
+ Комментарий
+ 66
+
+ ru
+ Комментарий
+
+ true
+ true
+
+ true
+
+
+ Журнал.Комментарий
+
+
+ КомментарийExtendedTooltip
+ 160
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КомментарийКонтекстноеМеню
+ 67
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Событие, данные и метаданные, комментарий
+
+
+ ГруппаСобытиеИДанныеРасширеннаяПодсказка
+ 176
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ ColumnGroup
+
+ Vertical
+ true
+ true
+
+
+
+ ГруппаСервер
+ 84
+
+ РабочийСервер
+ 85
+ true
+ true
+
+ true
+
+
+ Журнал.РабочийСервер
+
+
+ РабочийСерверExtendedTooltip
+ 155
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ РабочийСерверКонтекстноеМеню
+ 86
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ ОсновнойIPПорт
+ 89
+ true
+ true
+
+ true
+
+
+ Журнал.ОсновнойIPПорт
+
+
+ ОсновнойIPПортExtendedTooltip
+ 156
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ОсновнойIPПортКонтекстноеМеню
+ 90
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ ВспомогательныйIPПорт
+ 91
+ true
+ true
+
+ true
+
+
+ Журнал.ВспомогательныйIPПорт
+
+
+ ru
+ Вспомогательный IP порт
+
+
+ ВспомогательныйIPПортExtendedTooltip
+ 157
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ВспомогательныйIPПортКонтекстноеМеню
+ 92
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+ true
+ true
+
+
+ ru
+ Рабочий сервер, IP порты
+
+
+ ГруппаСерверExtendedTooltip
+ 154
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ ColumnGroup
+
+ Vertical
+ true
+ true
+
+
+
+ ГруппаТранзакция
+ 68
+
+ СтатусТранзакции
+ 69
+
+ ru
+ Статус транзакции
+
+ true
+ true
+
+ true
+
+
+ Журнал.СтатусТранзакции
+
+
+ СтатусТранзакцииExtendedTooltip
+ 162
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СтатусТранзакцииКонтекстноеМеню
+ 70
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+
+ Транзакция
+ 71
+ true
+ true
+
+ true
+
+
+ Журнал.Транзакция
+
+
+ ТранзакцияExtendedTooltip
+ 163
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТранзакцияКонтекстноеМеню
+ 72
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+
+ Style.BorderColor
+
+
+
+ true
+ true
+
+
+ ru
+ Транзакция
+
+
+ ГруппаТранзакцияExtendedTooltip
+ 161
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ ColumnGroup
+
+ Vertical
+ true
+ true
+
+
+
+ ДатаНаСервере
+ 206
+ true
+ true
+
+
+ Журнал.ДатаНаСервере
+
+
+ ru
+ Дата события в часовом поясе сервера.
+
+
+ ДатаНаСервереРасширеннаяПодсказка
+ 208
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДатаНаСервереКонтекстноеМеню
+ 207
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ 5
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ЖурналКоманднаяПанель
+ 50
+
+ ЖурналВыгрузитьЖурналДляПередачиВТехподдержку
+ 209
+ true
+ true
+
+ true
+
+
+ ЖурналВыгрузитьЖурналДляПередачиВТехподдержкуРасширеннаяПодсказка
+ 210
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ВыгрузитьЖурналДляПередачиВТехподдержку
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+ InCommandBarAndInAdditionalSubmenu
+
+
+ ПросмотрТекущегоСобытияВОтдельномОкне
+ 38
+ true
+ true
+
+ true
+
+ false
+
+ ПросмотрТекущегоСобытияВОтдельномОкнеExtendedTooltip
+ 126
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ПросмотрТекущегоСобытияВОтдельномОкне
+ PictureAndText
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ ОткрытьДанныеДляПросмотра
+ 40
+ true
+ true
+
+ true
+
+ false
+
+ ОткрытьДанныеДляПросмотраExtendedTooltip
+ 127
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ОткрытьДанныеДляПросмотра
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ КомандыОтбора
+ 105
+
+ УстановитьИнтервалДатДляПросмотра
+ 108
+ true
+ true
+
+ true
+
+
+ УстановитьИнтервалДатДляПросмотраExtendedTooltip
+ 122
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.УстановитьИнтервалДатДляПросмотра
+ PictureAndText
+ true
+ true
+ UserCmds
+ Auto
+
+
+ УстановитьОтбор
+ 42
+ true
+ true
+
+ true
+
+ false
+
+ УстановитьОтборExtendedTooltip
+ 123
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.УстановитьОтбор
+ PictureAndText
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ УстановитьОтборПоЗначениюВТекущейКолонке
+ 43
+ true
+ true
+
+ true
+
+ false
+
+ УстановитьОтборПоЗначениюВТекущейКолонкеExtendedTooltip
+ 124
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.УстановитьОтборПоЗначениюВТекущейКолонке
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ ОтключитьОтбор
+ 44
+ true
+ true
+
+ true
+
+ false
+
+ ОтключитьОтборExtendedTooltip
+ 125
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ОтключитьОтбор
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+ true
+ true
+
+ true
+
+
+ ru
+ Команды отбора
+
+
+ КомандыОтбораExtendedTooltip
+ 121
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+
+
+ КомандыПоиска
+ 109
+
+ ФормаНайти
+ 110
+ true
+ true
+
+ true
+
+
+ ФормаНайтиExtendedTooltip
+ 131
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Item.Журнал.StandardCommand.Find
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+
+
+ ФормаОтменитьПоиск
+ 111
+ true
+ true
+
+ true
+
+
+ ФормаОтменитьПоискExtendedTooltip
+ 132
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Item.Журнал.StandardCommand.CancelSearch
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+
+ true
+ true
+
+ true
+
+
+ ru
+ Команды поиска
+
+
+ КомандыПоискаExtendedTooltip
+ 130
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+
+
+ КомандаОбновить
+ 106
+
+ ОбновитьТекущийСписок
+ 46
+ true
+ true
+
+ true
+
+ false
+
+ ОбновитьТекущийСписокExtendedTooltip
+ 129
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ОбновитьТекущийСписок
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+ true
+ true
+
+ true
+
+
+ ru
+ Команда обновить
+
+
+ КомандаОбновитьExtendedTooltip
+ 128
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+
+
+ ИзменитьФорму
+ 104
+ true
+ true
+
+ true
+
+ false
+
+ ИзменитьФормуExtendedTooltip
+ 133
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.StandardCommand.CustomizeForm
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+ InAdditionalSubmenu
+
+
+ ВывестиСписок
+ 82
+ true
+ true
+
+ true
+
+ false
+
+ ВывестиСписокExtendedTooltip
+ 134
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Item.Журнал.StandardCommand.OutputList
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ ЖурналСправка
+ 173
+ true
+ true
+
+ true
+
+
+ ЖурналСправкаРасширеннаяПодсказка
+ 174
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.StandardCommand.Help
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+
+ true
+ true
+
+ true
+
+ Left
+
+
+ Selection
+ ЖурналВыбор
+
+
+ true
+ true
+
+ true
+
+ ЖурналСтрокаПоиска
+ 181
+
+ ЖурналСтрокаПоискаРасширеннаяПодсказка
+ 183
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЖурналСтрокаПоискаКонтекстноеМеню
+ 182
+ true
+ true
+
+ true
+
+ true
+
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ ЖурналСостояниеПросмотра
+ 184
+
+ ЖурналСостояниеПросмотраРасширеннаяПодсказка
+ 186
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЖурналСостояниеПросмотраКонтекстноеМеню
+ 185
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ ЖурналУправлениеПоиском
+ 187
+
+ ЖурналУправлениеПоискомРасширеннаяПодсказка
+ 189
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЖурналУправлениеПоискомКонтекстноеМеню
+ 188
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+
+ true
+
+
+
+ ЖурналExtendedTooltip
+ 145
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ЖурналКонтекстноеМеню
+ 49
+
+ ОтборГруппаКонтекст
+ 107
+
+ УстановитьОтборПоЗначениюВТекущейКолонкеКонтекст
+ 98
+ true
+ true
+
+ true
+
+ false
+
+ УстановитьОтборПоЗначениюВТекущейКолонкеКонтекстExtendedTooltip
+ 141
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.УстановитьОтборПоЗначениюВТекущейКолонке
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ ЖурналКонтекстноеМенюОтключитьОтбор
+ 113
+ true
+ true
+
+ true
+
+
+ ЖурналКонтекстноеМенюОтключитьОтборExtendedTooltip
+ 142
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ОтключитьОтбор
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+
+ true
+ true
+
+ true
+
+
+ ru
+ Отбор группа контекст
+
+
+ ОтборГруппаКонтекстExtendedTooltip
+ 140
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+
+
+ ПросмотрТекущегоСобытияВОтдельномОкнеКонтекст
+ 96
+ true
+ true
+
+ true
+
+ false
+
+ ПросмотрТекущегоСобытияВОтдельномОкнеКонтекстExtendedTooltip
+ 143
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ПросмотрТекущегоСобытияВОтдельномОкне
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+
+ ОткрытьДанныеДляПросмотраКонтекст
+ 97
+ true
+ true
+
+ true
+
+ false
+
+ ОткрытьДанныеДляПросмотраКонтекстExtendedTooltip
+ 144
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Form.Command.ОткрытьДанныеДляПросмотра
+ Auto
+ true
+ true
+ UserCmds
+
+ Style.ButtonTextColor
+
+
+ Style.ButtonBackColor
+
+
+ Style.BorderColor
+
+ Auto
+
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ true
+ Auto
+ End
+
+ true
+ true
+
+ Журнал.НомерРисунка
+
+
+ CommonPicture.КоллекцияВидыСобытийЖурналаРегистрации
+
+
+ Style.BorderColor
+
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Журнал регистрации
+
+
+ ЖурналРегистрацииExtendedTooltip
+ 139
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+
+ ИндикаторДлительныхОпераций
+ 118
+
+ ПолеИндикаторДлительныхОпераций
+ 114
+ true
+ true
+
+ true
+
+
+ ПолеИндикаторДлительныхОпераций
+
+ None
+
+ ПолеИндикаторДлительныхОперацийExtendedTooltip
+ 169
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПолеИндикаторДлительныхОперацийКонтекстноеМеню
+ 115
+ true
+ true
+
+ true
+
+ true
+
+ SpreadsheetDocumentField
+ Enter
+ true
+ Left
+ true
+
+ 50
+ true
+ 10
+ true
+ true
+ true
+ Special
+ ScrollAlways
+ ScrollAlways
+ Always
+ Auto
+ true
+ true
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Индикатор длительных операций
+
+
+ ИндикаторДлительныхОперацийExtendedTooltip
+ 168
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Page
+
+ Vertical
+ true
+
+
+ true
+ true
+
+ true
+
+
+ ru
+ Страницы
+
+
+ СтраницыExtendedTooltip
+ 138
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ Pages
+
+ Auto
+
+
+ Top
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+
+
+ ChoiceProcessing
+ ОбработкаВыбора
+
+
+ OnOpen
+ ПриОткрытии
+
+
+ OnCreateAtServer
+ ПриСозданииНаСервере
+
+ Abort
+ Cancel
+ Close
+ Ignore
+ No
+ OK
+ RestoreValues
+ Retry
+ SaveValues
+ Yes
+ true
+ Vertical
+ true
+ true
+ UseIfNecessary
+ true
+ true
+
+ Объект
+ 1
+
+ DataProcessorObject.ЖурналРегистрации
+
+
+ true
+
+
+ true
+
+ true
+
+
+ ПредставлениеОтбора
+
+ ru
+ Представление отбора
+
+ 3
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Журнал
+
+ ru
+ Журнал
+
+ 4
+
+ ValueTable
+
+
+ true
+
+
+ true
+
+
+ ВспомогательныйIPПорт
+
+ ru
+ Вспомог. IP порт
+
+ 1
+
+ Number
+
+ 10
+
+
+
+ true
+
+
+ true
+
+
+
+ Данные
+
+ ru
+ Данные
+
+ 2
+
+ Boolean
+ String
+ Date
+ AnyRef
+
+
+
+
+ true
+
+
+ true
+
+
+
+ Дата
+
+ ru
+ Дата
+
+ 3
+
+ Date
+
+
+
+ true
+
+
+ true
+
+
+
+ ИмяПользователя
+
+ ru
+ Имя пользователя
+
+ 4
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ИмяПриложения
+ 5
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Комментарий
+
+ ru
+ Комментарий
+
+ 6
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Компьютер
+
+ ru
+ Компьютер
+
+ 7
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Метаданные
+ 8
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ОсновнойIPПорт
+
+ ru
+ Основной IP порт
+
+ 9
+
+ Number
+
+ 10
+
+
+
+ true
+
+
+ true
+
+
+
+ Пользователь
+ 10
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ПредставлениеДанных
+ 11
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ПредставлениеМетаданных
+
+ ru
+ Представление метаданных
+
+ 12
+
+ ValueList
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ПредставлениеПриложения
+
+ ru
+ Представление приложения
+
+ 13
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ПредставлениеСобытия
+
+ ru
+ Представление события
+
+ 14
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ РабочийСервер
+
+ ru
+ Рабочий сервер
+
+ 15
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Сеанс
+
+ ru
+ Сеанс
+
+ 16
+
+ Number
+
+ 10
+
+
+
+ true
+
+
+ true
+
+
+
+ Событие
+ 17
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Соединение
+ 18
+
+ Number
+
+ 10
+
+
+
+ true
+
+
+ true
+
+
+
+ СтатусТранзакции
+
+ ru
+ Статус транзакции
+
+ 19
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Транзакция
+
+ ru
+ Транзакция
+
+ 20
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Уровень
+ 21
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ НомерРисунка
+ 22
+
+ Number
+
+ 1
+
+
+
+ true
+
+
+ true
+
+
+
+ АдресДанных
+ 23
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ПредставлениеРазделенияДанныхСеанса
+
+ ru
+ Разделение данных сеанса
+
+ 24
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ РазделениеДанныхСеанса
+ 25
+
+ ValueList
+
+
+ true
+
+
+ true
+
+
+
+ ДатаНаСервере
+
+ ru
+ Дата на сервере
+
+ 26
+
+ Date
+
+
+
+ true
+
+
+ true
+
+
+
+
+ ОтборЖурналаРегистрации
+ 5
+
+
+ true
+
+
+ true
+
+
+ ОтборЖурналаРегистрации
+
+
+
+ КоличествоПоказываемыхСобытий
+
+ ru
+ Количество показываемых событий
+
+ 7
+
+ Number
+
+ 10
+ true
+
+
+
+ true
+
+
+ true
+
+ ShowError
+
+
+ ИнтервалДат
+ 2
+
+ StandardPeriod
+
+
+ true
+
+
+ true
+
+
+
+ ПолеИндикаторДлительныхОпераций
+
+ ru
+ Поле индикатор длительных операций
+
+ 6
+
+ SpreadsheetDocument
+
+
+ true
+
+
+ true
+
+
+
+
+ АдресХранилища
+ 9
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ОтборЖурналаРегистрацииПоУмолчанию
+ 11
+
+
+ true
+
+
+ true
+
+
+
+ Критичность
+
+ ru
+ Критичность
+
+ 13
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ ЗапускатьНеВФоне
+ 14
+
+ Boolean
+
+
+ true
+
+
+ true
+
+
+
+ ИдентификаторЗадания
+ 8
+
+ UUID
+
+
+ true
+
+
+ true
+
+
+
+ ХранилищеДанных
+ 10
+
+
+ true
+
+
+ true
+
+
+
+ ПросмотрТекущегоСобытияВОтдельномОкне
+
+ ru
+ Открыть
+
+ 1
+
+ ru
+ Просмотр текущего события в отдельном окне
+
+
+
+ StdPicture.Properties
+
+
+
+ ПросмотрТекущегоСобытияВОтдельномОкне
+
+
+ DontUse
+
+
+ ОткрытьДанныеДляПросмотра
+
+ ru
+ Открыть данные для просмотра
+
+ 2
+
+ ru
+ Открыть данные для просмотра
+
+
+
+ StdPicture.ShowData
+
+
+
+ ОткрытьДанныеДляПросмотра
+
+
+ DontUse
+
+
+ УстановитьИнтервалДатДляПросмотра
+
+ ru
+ Интервал
+
+ 3
+
+ ru
+ Установить интервал дат для просмотра
+
+
+
+ StdPicture.SetDateInterval
+
+
+
+ УстановитьИнтервалДатДляПросмотра
+
+
+ DontUse
+
+
+ УстановитьОтбор
+
+ ru
+ Установить отбор
+
+ 4
+
+ ru
+ Установить отбор
+
+
+
+ StdPicture.FilterCriterion
+
+
+
+ УстановитьОтбор
+
+
+ Picture
+ DontUse
+
+
+ УстановитьОтборПоЗначениюВТекущейКолонке
+
+ ru
+ Установить отбор по значению в текущей колонке
+
+ 5
+
+ ru
+ Установить отбор по значению в текущей колонке
+
+
+
+ StdPicture.FilterByCurrentValue
+
+
+
+ УстановитьОтборПоЗначениюВТекущейКолонке
+
+
+ DontUse
+
+
+ ОтключитьОтбор
+
+ ru
+ Отключить отбор
+
+ 6
+
+ ru
+ Отключить отбор
+
+
+
+ StdPicture.ClearFilter
+
+
+
+ ОтключитьОтбор
+
+
+ DontUse
+
+
+ ОбновитьТекущийСписок
+
+ ru
+ Обновить текущий список
+
+ 8
+
+ ru
+ Обновить текущий список
+
+
+ F5
+
+ StdPicture.Refresh
+
+
+
+ ОбновитьТекущийСписок
+
+
+ DontUse
+
+
+ ВыгрузитьЖурналДляПередачиВТехподдержку
+
+ ru
+ Выгрузить в файл...
+
+ 7
+
+
+
+ ВыгрузитьЖурналДляПередачиВТехподдержку
+
+
+ Auto
+
+
+ Пользователь
+
+ String
+
+
+
+
+ СобытиеЖурналаРегистрации
+
+
+
+ ЗапускатьНеВФоне
+
+ Boolean
+
+
+
+ ДатаНачала
+
+ Date
+
+
+
+
+ ДатаОкончания
+
+ Date
+
+
+
+
+ Данные
+
+
+
+ Сеанс
+
+
+
+ Уровень
+
+
+
+ ИмяПриложения
+
+
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Module.bsl"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form"
new file mode 100644
index 000000000..99be7db67
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form"
@@ -0,0 +1,323 @@
+
+
+
+ Реквизит1
+ 1
+ true
+ true
+
+ true
+
+
+ Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ HTMLDocumentField
+ Enter
+ true
+ Left
+ true
+
+ 50
+ true
+ 10
+ true
+ true
+ true
+
+
+
+ Реквизит3
+ 4
+ true
+ true
+
+ true
+
+
+ Реквизит3
+
+
+ Реквизит3РасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит3КонтекстноеМеню
+ 5
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит2
+ 7
+ true
+ true
+
+ true
+
+
+ Реквизит2
+
+
+ Реквизит2РасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит2КонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит4
+ 10
+ true
+ true
+
+ true
+
+
+ Реквизит4
+
+
+ Реквизит4РасширеннаяПодсказка
+ 12
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит4КонтекстноеМеню
+ 11
+ true
+ true
+
+ true
+
+ true
+
+ SpreadsheetDocumentField
+ Enter
+ true
+ Left
+ true
+
+ 50
+ true
+ 10
+ true
+ true
+ true
+ Special
+ ScrollAuto
+ ScrollAuto
+ Always
+ true
+ true
+ true
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ DataProcessorObject.Обработка1
+
+
+ true
+
+
+ true
+
+ true
+
+
+ Реквизит1
+ 2
+
+ String
+
+
+
+ true
+
+
+ true
+
+
+
+ Реквизит2
+ 3
+
+ Date
+
+ Date
+
+
+
+ true
+
+
+ true
+
+
+
+ Реквизит3
+ 4
+
+ String
+ Date
+ Boolean
+ UUID
+ FormattedString
+ DocumentRef
+
+
+ Date
+
+
+
+ true
+
+
+ true
+
+
+
+ Реквизит4
+ 5
+
+ SpreadsheetDocument
+
+
+ true
+
+
+ true
+
+
+
+
+ Реквизит5
+ 6
+
+ EnumRef.Перечисление1
+
+
+ true
+
+
+ true
+
+
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Module.bsl"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
new file mode 100644
index 000000000..f5aa8ca23
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Обработка1
+ true
+ DataProcessor.Обработка1.Form.Форма
+
+ Форма
+
+ ru
+ Форма
+
+ PersonalComputer
+ MobileDevice
+
+
+ ЖурналРегистрации
+
+ ru
+ ЖурналРегистрации
+
+ PersonalComputer
+ MobileDevice
+
+
diff --git "a/src/test/resources/metadata/edt/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
index e13d9c651..0b1b345e9 100644
--- "a/src/test/resources/metadata/edt/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
@@ -1,13 +1,13 @@
-
-
-
-
-
- ОпределяемыйТип1
-
- String
-
- 10
-
-
-
+
+
+
+
+
+ ОпределяемыйТип1
+
+ String
+
+ 10
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
index afcad4683..134d5d2a0 100644
--- "a/src/test/resources/metadata/edt/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
@@ -1,19 +1,19 @@
-
-
-
-
-
-
-
- ЖурналДокументов1
- true
- Document.Документ1
-
- Графа
-
- ru
- Графа
-
- Document.Документ1.Attribute.Реквизит1
-
-
+
+
+
+
+
+
+
+ ЖурналДокументов1
+ true
+ Document.Документ1
+
+ Графа
+
+ ru
+ Графа
+
+ Document.Документ1.Attribute.Реквизит1
+
+
diff --git "a/src/test/resources/metadata/edt/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
index 298884e0f..d518a15ed 100644
--- "a/src/test/resources/metadata/edt/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
@@ -1,8 +1,8 @@
-
-
- НумераторДокументов1
- String
- 9
- Variable
- true
-
+
+
+ НумераторДокументов1
+ String
+ 9
+ Variable
+ true
+
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/CommandModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/CommandModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/CommandModule.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\260/CommandModule.bsl"
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
new file mode 100644
index 000000000..9b5b065d6
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
@@ -0,0 +1,17 @@
+
+
+
+ Normal
+ dfcece9d-5077-440b-b6b3-45a5cb4538eb
+
+
+ Normal
+ 88619765-ccb3-46c6-ac52-38e9c992ebd4
+
+
+ Normal
+ b75fecce-942b-4aed-abc9-e6a02e460fb3
+
+ Normal
+ 911b6018-f537-43e8-a417-da56b22f9aec
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
new file mode 100644
index 000000000..478322729
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
@@ -0,0 +1,651 @@
+
+
+
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+ 1
+ true
+ true
+
+ true
+
+
+ ru
+ Группа пользовательских настроек
+
+ false
+
+ СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
+ 2
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ Vertical
+ WeakSeparation
+ true
+ true
+ Auto
+ DontUse
+
+
+
+ Список
+ 3
+ true
+ true
+
+ true
+
+
+ Список
+
+ true
+ None
+
+ Ссылка
+ 16
+ true
+ true
+
+ true
+
+
+ Список.Ref
+
+
+ СсылкаРасширеннаяПодсказка
+ 18
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СсылкаКонтекстноеМеню
+ 17
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Дата
+ 19
+ true
+ true
+
+ true
+
+
+ Список.Date
+
+ true
+
+ ДатаРасширеннаяПодсказка
+ 21
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДатаКонтекстноеМеню
+ 20
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Номер
+ 22
+ true
+ true
+
+ true
+
+
+ Список.Number
+
+
+ НомерРасширеннаяПодсказка
+ 24
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НомерКонтекстноеМеню
+ 23
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Проведен
+ 25
+ true
+ true
+
+ true
+
+
+ Список.Posted
+
+
+ ПроведенРасширеннаяПодсказка
+ 27
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПроведенКонтекстноеМеню
+ 26
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ ПометкаУдаления
+ 28
+ true
+ true
+
+ true
+
+
+ Список.DeletionMark
+
+
+ ПометкаУдаленияРасширеннаяПодсказка
+ 30
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПометкаУдаленияКонтекстноеМеню
+ 29
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ Реквизит1
+ 31
+ true
+ true
+
+ true
+
+
+ Список.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 33
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 32
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит2
+ 34
+ true
+ true
+
+ true
+
+
+ Список.Реквизит2
+
+
+ Реквизит2РасширеннаяПодсказка
+ 36
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит2КонтекстноеМеню
+ 35
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит3
+ 37
+ true
+ true
+
+ true
+
+
+ Список.Реквизит3
+
+
+ Реквизит3РасширеннаяПодсказка
+ 39
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит3КонтекстноеМеню
+ 38
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+ None
+
+ СписокКоманднаяПанель
+ 5
+ true
+ true
+
+ true
+
+ Left
+
+
+ true
+ true
+
+ true
+
+ СписокСтрокаПоиска
+ 7
+
+ СписокСтрокаПоискаРасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокСтрокаПоискаКонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ СписокСостояниеПросмотра
+ 10
+
+ СписокСостояниеПросмотраРасширеннаяПодсказка
+ 12
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокСостояниеПросмотраКонтекстноеМеню
+ 11
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+
+ true
+ Left
+
+
+
+ true
+ true
+
+ true
+
+ СписокУправлениеПоиском
+ 13
+
+ СписокУправлениеПоискомРасширеннаяПодсказка
+ 15
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокУправлениеПоискомКонтекстноеМеню
+ 14
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+
+ true
+
+
+
+ СписокРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокКонтекстноеМеню
+ 4
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ true
+ Auto
+ Auto
+ ExpandTopLevel
+ true
+ true
+ true
+
+ Список.DefaultPicture
+
+
+ 60
+
+ 0001-01-01T00:00:00
+ 0001-01-01T00:00:00
+
+
+ true
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+
+
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+ LockOwnerWindow
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Список
+ 1
+
+ DynamicList
+
+
+ true
+
+
+ true
+
+ true
+
+ Document.Документ1
+ true
+ true
+ true
+ true
+
+
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
new file mode 100644
index 000000000..1e72180b7
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
@@ -0,0 +1,634 @@
+
+
+
+ Номер
+ 1
+ true
+ true
+
+ true
+
+
+ Объект.Number
+
+
+ НомерРасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НомерКонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Дата
+ 4
+ true
+ true
+
+ true
+
+
+ ~Объект.Date
+
+
+ ДатаРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДатаКонтекстноеМеню
+ 5
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит1
+ 7
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит2
+ 10
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит2
+
+
+ Реквизит2РасширеннаяПодсказка
+ 12
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит2КонтекстноеМеню
+ 11
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит3
+ 13
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит3
+
+
+ Реквизит3РасширеннаяПодсказка
+ 15
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит3КонтекстноеМеню
+ 14
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ТабличнаяЧасть1
+ 16
+ true
+ true
+
+ true
+
+
+ Объект.ТабличнаяЧасть1
+
+ None
+
+ ТабличнаяЧасть1НомерСтроки
+ 29
+ true
+ true
+
+ true
+
+
+ Объект.ТабличнаяЧасть1.LineNumber
+
+
+ ТабличнаяЧасть1НомерСтрокиРасширеннаяПодсказка
+ 31
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1НомерСтрокиКонтекстноеМеню
+ 30
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ ТабличнаяЧасть1Реквизит1
+ 32
+ true
+ true
+
+ true
+
+
+ Объект.ТабличнаяЧасть1.Реквизит1
+
+
+ ТабличнаяЧасть1Реквизит1РасширеннаяПодсказка
+ 34
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1Реквизит1КонтекстноеМеню
+ 33
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ТабличнаяЧасть1Реквизит2
+ 35
+ true
+ true
+
+ true
+
+
+ Объект.ТабличнаяЧасть1.Реквизит2
+
+
+ ТабличнаяЧасть1Реквизит2РасширеннаяПодсказка
+ 37
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1Реквизит2КонтекстноеМеню
+ 36
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ТабличнаяЧасть1КоманднаяПанель
+ 18
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ true
+ true
+
+ true
+
+ ТабличнаяЧасть1СтрокаПоиска
+ 20
+
+ ТабличнаяЧасть1СтрокаПоискаРасширеннаяПодсказка
+ 22
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1СтрокаПоискаКонтекстноеМеню
+ 21
+ true
+ true
+
+ true
+
+ true
+
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ ТабличнаяЧасть1СостояниеПросмотра
+ 23
+
+ ТабличнаяЧасть1СостояниеПросмотраРасширеннаяПодсказка
+ 25
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1СостояниеПросмотраКонтекстноеМеню
+ 24
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+
+ true
+ Left
+
+
+
+ true
+ true
+
+ true
+
+ ТабличнаяЧасть1УправлениеПоиском
+ 26
+
+ ТабличнаяЧасть1УправлениеПоискомРасширеннаяПодсказка
+ 28
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1УправлениеПоискомКонтекстноеМеню
+ 27
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+
+ true
+
+
+
+ ТабличнаяЧасть1РасширеннаяПодсказка
+ 19
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ТабличнаяЧасть1КонтекстноеМеню
+ 17
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ true
+ Auto
+ Auto
+ true
+ true
+ true
+ true
+
+
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ NewWriteProcessing
+ ОбработкаЗаписиНового
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ DocumentObject.Документ1
+
+
+ true
+
+
+ true
+
+
+ Объект.RegisterRecords
+
+ true
+ true
+
+
+
+
+
+
+ true
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
new file mode 100644
index 000000000..5413c33a2
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
@@ -0,0 +1,6 @@
+
+
+&НаКлиенте
+Процедура ОбработкаЗаписиНового(НовыйОбъект, Источник, СтандартнаяОбработка)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
new file mode 100644
index 000000000..9b5b065d6
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
@@ -0,0 +1,17 @@
+
+
+
+ Normal
+ dfcece9d-5077-440b-b6b3-45a5cb4538eb
+
+
+ Normal
+ 88619765-ccb3-46c6-ac52-38e9c992ebd4
+
+
+ Normal
+ b75fecce-942b-4aed-abc9-e6a02e460fb3
+
+ Normal
+ 911b6018-f537-43e8-a417-da56b22f9aec
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
new file mode 100644
index 000000000..71470cd10
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
@@ -0,0 +1,649 @@
+
+
+
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+ 1
+ true
+ true
+
+ true
+
+
+ ru
+ Группа пользовательских настроек
+
+ false
+
+ СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
+ 2
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ Vertical
+ WeakSeparation
+ true
+ true
+ Auto
+ DontUse
+
+
+
+ Список
+ 3
+ true
+ true
+
+ true
+
+
+ Список
+
+ true
+ None
+
+ Ссылка
+ 16
+ true
+ true
+
+ true
+
+
+ Список.Ref
+
+
+ СсылкаРасширеннаяПодсказка
+ 18
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СсылкаКонтекстноеМеню
+ 17
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Дата
+ 19
+ true
+ true
+
+ true
+
+
+ Список.Date
+
+ true
+
+ ДатаРасширеннаяПодсказка
+ 21
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДатаКонтекстноеМеню
+ 20
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Номер
+ 22
+ true
+ true
+
+ true
+
+
+ Список.Number
+
+
+ НомерРасширеннаяПодсказка
+ 24
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НомерКонтекстноеМеню
+ 23
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Проведен
+ 25
+ true
+ true
+
+ true
+
+
+ Список.Posted
+
+
+ ПроведенРасширеннаяПодсказка
+ 27
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПроведенКонтекстноеМеню
+ 26
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ ПометкаУдаления
+ 28
+ true
+ true
+
+ true
+
+
+ Список.DeletionMark
+
+
+ ПометкаУдаленияРасширеннаяПодсказка
+ 30
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ПометкаУдаленияКонтекстноеМеню
+ 29
+ true
+ true
+
+ true
+
+ true
+
+ CheckBoxField
+ Enter
+ true
+ Left
+ true
+
+
+
+ Реквизит1
+ 31
+ true
+ true
+
+ true
+
+
+ Список.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 33
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 32
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит2
+ 34
+ true
+ true
+
+ true
+
+
+ Список.Реквизит2
+
+
+ Реквизит2РасширеннаяПодсказка
+ 36
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит2КонтекстноеМеню
+ 35
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+
+ Реквизит3
+ 37
+ true
+ true
+
+ true
+
+
+ Список.Реквизит3
+
+
+ Реквизит3РасширеннаяПодсказка
+ 39
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит3КонтекстноеМеню
+ 38
+ true
+ true
+
+ true
+
+ true
+
+ LabelField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+
+
+ None
+
+ СписокКоманднаяПанель
+ 5
+ true
+ true
+
+ true
+
+ Left
+
+
+ true
+ true
+
+ true
+
+ СписокСтрокаПоиска
+ 7
+
+ СписокСтрокаПоискаРасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокСтрокаПоискаКонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+
+
+ true
+
+
+
+ true
+ true
+
+ true
+
+ СписокСостояниеПросмотра
+ 10
+
+ СписокСостояниеПросмотраРасширеннаяПодсказка
+ 12
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокСостояниеПросмотраКонтекстноеМеню
+ 11
+ true
+ true
+
+ true
+
+ true
+
+ ViewStatusAddition
+
+
+ true
+ Left
+
+
+
+ true
+ true
+
+ true
+
+ СписокУправлениеПоиском
+ 13
+
+ СписокУправлениеПоискомРасширеннаяПодсказка
+ 15
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокУправлениеПоискомКонтекстноеМеню
+ 14
+ true
+ true
+
+ true
+
+ true
+
+ SearchControlAddition
+
+
+ true
+
+
+
+ СписокРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ СписокКонтекстноеМеню
+ 4
+ true
+ true
+
+ true
+
+ true
+
+ true
+ true
+ true
+ true
+ true
+ MultiRow
+
+ 1
+ 1
+ AutoUse
+ AutoUse
+ true
+ true
+ true
+ Auto
+ Auto
+ ExpandTopLevel
+ true
+ true
+ true
+
+ Список.DefaultPicture
+
+
+ 60
+
+ 0001-01-01T00:00:00
+ 0001-01-01T00:00:00
+
+
+ true
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+
+
+
+
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Список
+ 1
+
+ DynamicList
+
+
+ true
+
+
+ true
+
+ true
+
+ Document.Документ1
+ true
+ true
+ true
+ true
+
+
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
similarity index 93%
rename from "src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
index d1b236118..351d9e67d 100644
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
@@ -1,145 +1,147 @@
-
-
-
-
-
-
-
-
-
- Документ1
- true
- Document.Документ1.StandardAttribute.Number
- DontUse
- Use
- Managed
- Use
- String
- 9
- Variable
- true
- true
- Document.Документ1.Form.ФормаДокумента
- Document.Документ1.Form.ФормаСписка
- Document.Документ1.Form.ФормаВыбора
- AccumulationRegister.РегистрНакопления1
- CalculationRegister.РегистрРасчета1
- InformationRegister.РегистрСведений2
- AccountingRegister.РегистрБухгалтерии1
- true
- true
-
- Реквизит1
-
- String
-
- 10
-
-
-
-
-
-
-
- Use
-
-
- Реквизит2
-
- Number
-
- 10
-
-
-
-
-
- Use
-
-
- Реквизит3
-
- Date
-
- Date
-
-
-
-
-
- Use
-
-
- ФормаДокумента
-
- ru
- Форма документа
-
- PersonalComputer
- MobileDevice
-
-
- ФормаСписка
-
- ru
- Форма списка
-
- PersonalComputer
- MobileDevice
-
-
- ФормаВыбора
-
- ru
- Форма выбора
-
- PersonalComputer
- MobileDevice
-
-
-
-
-
-
- ТабличнаяЧасть1
-
- Реквизит1
-
- CatalogRef.Справочник1
-
-
-
- Use
-
-
- Реквизит2
-
- Number
-
- 10
-
-
-
-
- Use
-
-
-
- Команда
-
- ru
- Команда
-
- ActionsPanelTools
- Auto
-
-
- Команда2
-
- ru
- Команда
-
- ActionsPanelTools
- Auto
-
-
+
+
+
+
+
+
+
+
+
+ Документ1
+ true
+ Document.Документ1.StandardAttribute.Number
+ DontUse
+ Use
+ Managed
+ Use
+ String
+ 9
+ Variable
+ true
+ true
+ Document.Документ1.Form.ФормаДокумента
+ Document.Документ1.Form.ФормаСписка
+ Document.Документ1.Form.ФормаВыбора
+ AccumulationRegister.РегистрНакопления1
+ CalculationRegister.РегистрРасчета1
+ InformationRegister.РегистрСведений2
+ AccountingRegister.РегистрБухгалтерии1
+ true
+ true
+
+ Реквизит1
+
+ String
+
+ 10
+
+
+
+
+
+
+
+ Use
+
+
+ Реквизит2
+
+ Number
+
+ 10
+
+
+
+
+
+ Use
+
+
+ Реквизит3
+
+ Date
+
+ Date
+
+
+
+
+
+ Use
+
+
+ ФормаДокумента
+
+ ru
+ Форма документа
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаСписка
+
+ ru
+ Форма списка
+
+ PersonalComputer
+ MobileDevice
+
+
+ ФормаВыбора
+
+ ru
+ Форма выбора
+
+ PersonalComputer
+ MobileDevice
+
+
+
+
+
+
+ ТабличнаяЧасть1
+
+ Реквизит1
+
+ CatalogRef.Справочник1
+
+
+
+ Use
+
+
+ Реквизит2
+
+ Number
+
+ 10
+
+
+
+
+ Use
+
+
+
+ Команда
+
+ ru
+ Команда
+
+ ActionsPanelTools
+
+ Auto
+
+
+ Команда2
+
+ ru
+ Команда
+
+ ActionsPanelTools
+
+ Auto
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
index de8790f52..55b5a852f 100644
--- "a/src/test/resources/metadata/edt/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
@@ -1,14 +1,14 @@
-
-
-
-
-
-
-
- Перечисление1
- true
- BothWays
-
- ЗначениеПеречисления1
-
-
+
+
+
+
+
+
+
+ Перечисление1
+ true
+ BothWays
+
+ ЗначениеПеречисления1
+
+
diff --git "a/src/test/resources/metadata/edt/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
index 0bc3aac8c..a26cec30e 100644
--- "a/src/test/resources/metadata/edt/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
@@ -1,9 +1,9 @@
-
-
- ПодпискаНаСобытие1
-
- BeforeWrite
- CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью
-
+
+
+ ПодпискаНаСобытие1
+
+ BeforeWrite
+ CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/ObjectModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
similarity index 90%
rename from "src/test/resources/metadata/edt/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
index 5bf4391c2..98b9cab03 100644
--- "a/src/test/resources/metadata/edt/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
@@ -1,31 +1,31 @@
-
-
-
-
-
-
-
-
-
- ПланОбмена1
- true
- ExchangePlan.ПланОбмена1.StandardAttribute.Description
- ExchangePlan.ПланОбмена1.StandardAttribute.Code
- DontUse
- DontUse
- Managed
- Use
- 9
- Variable
- 25
-
- Catalog.Справочник1
- Allow
-
-
- Document.Документ1
-
- AsDescription
- InDialog
- BothWays
-
+
+
+
+
+
+
+
+
+
+ ПланОбмена1
+ true
+ ExchangePlan.ПланОбмена1.StandardAttribute.Description
+ ExchangePlan.ПланОбмена1.StandardAttribute.Code
+ DontUse
+ DontUse
+ Managed
+ Use
+ 9
+ Variable
+ 25
+
+ Catalog.Справочник1
+ Allow
+
+
+ Document.Документ1
+
+ AsDescription
+ InDialog
+ BothWays
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Commands/Command/CommandModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Commands/Command/CommandModule.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Commands/Command/CommandModule.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Form.form"
new file mode 100644
index 000000000..1afc2c5e5
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Form.form"
@@ -0,0 +1,68 @@
+
+
+
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+ 1
+ true
+ true
+
+ true
+
+
+ ru
+ User settings group
+
+ false
+
+ СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
+ 2
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ Vertical
+ WeakSeparation
+ true
+ true
+ Auto
+ DontUse
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ OnClose
+ ПриЗакрытии
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Module.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/ListForm/Module.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Form.form" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Form.form"
new file mode 100644
index 000000000..1afc2c5e5
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Form.form"
@@ -0,0 +1,68 @@
+
+
+
+ СписокКомпоновщикНастроекПользовательскиеНастройки
+ 1
+ true
+ true
+
+ true
+
+
+ ru
+ User settings group
+
+ false
+
+ СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
+ 2
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualGroup
+
+ Vertical
+ WeakSeparation
+ true
+ true
+ Auto
+ DontUse
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ OnClose
+ ПриЗакрытии
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Module.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Forms/RecordForm/Module.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/ManagerModule.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/ManagerModule.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/RecordSetModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/RecordSetModule.bsl"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/RecordSetModule.bsl"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template/Template.mxlx" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template/Template.mxlx"
new file mode 100644
index 000000000..8d1c8b69c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/Templates/Template/Template.mxlx"
@@ -0,0 +1 @@
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205.mdo"
new file mode 100644
index 000000000..8540cc137
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/Tables/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205/\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\321\217\320\236\320\261\320\236\321\210\320\270\320\261\320\272\320\260\321\205.mdo"
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ ИнформацияОбОшибках
+
+ ru
+ Информация об ошибках
+
+ ExternalDataSource.ТекущаяСУБД
+ ErrorInformation
+ NonobjectData
+
+
+
+ true
+ InDialog
+ Managed
+
+ Период
+
+ ru
+ Период
+
+
+ String
+
+ 20
+
+
+
+
+
+
+
+ Period
+ true
+
+
+ ИдентификаторОшибки
+
+ ru
+ Идентификатор ошибки
+
+
+ DefinedType.ТипUIDСтрока
+
+
+
+
+ ErrorID
+ true
+
+
+ УровеньОшибки
+
+ ru
+ Уровень ошибки
+
+
+ UUID
+
+
+
+
+ ErrorLevel
+ true
+
+
+ Категория
+
+ ru
+ Категория
+
+
+ UUID
+
+
+
+
+ Category
+ true
+
+
+ НомерСеанса
+
+ ru
+ Номер сеанса
+
+
+ Number
+
+ 15
+ true
+
+
+
+
+
+ SessionNumber
+ true
+
+
+ Пользователь
+
+ ru
+ Пользователь
+
+
+ UUID
+
+
+
+
+ CurrentUser
+ true
+
+
+ ДатаУведомления
+
+ ru
+ Дата уведомления
+
+
+ String
+
+ 20
+
+
+
+
+
+
+
+ DateOfNotice
+ true
+
+
+ ОписаниеОшибки
+
+ ru
+ Описание ошибки
+
+
+ String
+
+
+
+
+
+
+
+ ErrorDescription
+ true
+
+
+ RecordForm
+
+ ru
+ Record form
+
+ PersonalComputer
+ MobileDevice
+
+
+ ListForm
+
+ ru
+ List form
+
+ PersonalComputer
+ MobileDevice
+
+
+ Command
+
+ ru
+ Command
+
+ ActionsPanelTools
+
+ Auto
+
+
+ Template
+
+ ru
+ Template
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.mdo"
new file mode 100644
index 000000000..3a07a8b53
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224/\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.mdo"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ ТекущаяСУБД
+
+ ru
+ Текущая СУБД
+
+ Managed
+ ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
index c5a011ba8..522aaaa4b 100644
--- "a/src/test/resources/metadata/edt/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
@@ -1,10 +1,10 @@
-
-
-
-
-
-
- КритерийОтбора1
-
- true
-
+
+
+
+
+
+
+ КритерийОтбора1
+
+ true
+
diff --git "a/src/test/resources/metadata/edt/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
index f116c5d87..a282f5e6a 100644
--- "a/src/test/resources/metadata/edt/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
@@ -1,6 +1,6 @@
-
-
- ФункциональнаяОпция1
- Constant.Константа1
- true
-
+
+
+ ФункциональнаяОпция1
+ Constant.Константа1
+ true
+
diff --git "a/src/test/resources/metadata/edt/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.mdo"
index 02730b842..f83d33ec8 100644
--- "a/src/test/resources/metadata/edt/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.mdo"
@@ -1,9 +1,9 @@
-
-
- ПараметрФункциональныхОпций
-
- ru
- Параметр функциональных опций
-
-
-
+
+
+ ПараметрФункциональныхОпций
+
+ ru
+ Параметр функциональных опций
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
index c420adf33..40d0c9106 100644
--- "a/src/test/resources/metadata/edt/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
@@ -1,32 +1,32 @@
-
-
- HTTPСервис1
- test.test
- AutoUse
- 20
-
- ШаблонURL
-
- ru
- Шаблон URL
-
- /*
-
- Метод
-
- ru
- Метод
-
- ШаблонURLМетод
-
-
- Метод1
-
- ru
- Метод1
-
- DELETE
- ШаблонURLМетод1
-
-
-
+
+
+ HTTPСервис1
+ test.test
+ AutoUse
+ 20
+
+ ШаблонURL
+
+ ru
+ Шаблон URL
+
+ /*
+
+ Метод
+
+ ru
+ Метод
+
+ ШаблонURLМетод
+
+
+ Метод1
+
+ ru
+ Метод1
+
+ DELETE
+ ШаблонURLМетод1
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
new file mode 100644
index 000000000..176e22c2e
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
@@ -0,0 +1,14 @@
+Процедура Метод()
+КонецПроцедуры
+
+
+
+Функция ШаблонURLМетод(Запрос)
+ Ответ = Новый HTTPСервисОтвет(200);
+ Возврат Ответ;
+КонецФункции
+
+Функция ШаблонURLМетод1(Запрос)
+ Ответ = Новый HTTPСервисОтвет(200);
+ Возврат Ответ;
+КонецФункции
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/RecordSetModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/RecordSetModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/RecordSetModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
index 2fa823f3d..623b9a30b 100644
--- "a/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
@@ -1,32 +1,32 @@
-
-
-
-
-
-
-
-
-
-
-
- РегистрСведений1
- true
- InDialog
- Managed
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
-
-
-
- true
-
-
+
+
+
+
+
+
+
+
+
+
+
+ РегистрСведений1
+ true
+ InDialog
+ Managed
+
+ Измерение1
+
+ String
+
+ 10
+
+
+
+
+ Use
+
+
+
+ true
+
+
diff --git "a/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
index ba600775a..77f3976e4 100644
--- "a/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
@@ -1,33 +1,33 @@
-
-
-
-
-
-
-
-
-
-
-
- РегистрСведений2
- true
- InDialog
- RecorderSubordinate
- Managed
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
-
-
-
- true
-
-
+
+
+
+
+
+
+
+
+
+
+
+ РегистрСведений2
+ true
+ InDialog
+ RecorderSubordinate
+ Managed
+
+ Измерение1
+
+ String
+
+ 10
+
+
+
+
+ Use
+
+
+
+ true
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ObjectModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ObjectModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Template.mxlx" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Template.mxlx"
new file mode 100644
index 000000000..8e5770505
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Template.mxlx"
@@ -0,0 +1,56 @@
+
+
+
+ ru
+ ru
+
+ ru
+ Русский
+ Русский
+
+
+ Alb
+ Албанский
+
+
+
+ 2
+
+
+ 2
+
+
+ 1
+
+ 0
+
+ Comment
+ 0
+ 1
+
+
+ ru
+
+
+
+ 1
+ -20
+ 0
+ 50
+ 1
+ 20
+ 0
+ 22
+ true
+
+
+
+
+
+ true
+ 3
+
+ Top
+ #FFFAD9
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224/Template.dcs" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224/Template.dcs"
new file mode 100644
index 000000000..5a6750b21
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\241\320\232\320\224/Template.dcs"
@@ -0,0 +1,158 @@
+
+
+
+ ИсточникДанных1
+ Local
+
+
+ НаборДанных1
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.Код КАК Код1
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+
+ НаборДанных2
+
+ ИмяПредопределенныхДанных
+ ИмяПредопределенныхДанных
+
+
+ Ссылка
+ Ссылка
+
+
+ Предопределенный
+ Предопределенный
+
+
+ Наименование
+ Наименование
+
+
+ ВерсияДанных
+ ВерсияДанных
+
+
+ ПометкаУдаления
+ ПометкаУдаления
+
+
+ Код
+ Код
+
+
+ Реквизит1
+ Реквизит1
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.ВерсияДанных КАК ВерсияДанных,
+ ПервыйСправочник.ПометкаУдаления КАК ПометкаУдаления,
+ ПервыйСправочник.Код КАК Код,
+ ПервыйСправочник.Наименование КАК Наименование,
+ ПервыйСправочник.Реквизит1 КАК Реквизит1,
+ ПервыйСправочник.Предопределенный КАК Предопределенный,
+ ПервыйСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+
+ НаборДанных3
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ -
+ НаборДанных2
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.Код КАК Код1
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+ -
+ НаборДанных1
+
+ Ссылка
+ Ссылка
+
+
+ Код1
+ Код1
+
+
+ ru
+ Код1
+
+
+
+ ИсточникДанных1
+ ВЫБРАТЬ
+ ПервыйСправочник.Ссылка КАК Ссылка,
+ ПервыйСправочник.Код КАК Код1
+ИЗ
+ Справочник.ПервыйСправочник КАК ПервыйСправочник
+
+ -
+ НаборДанных4
+
-
+ НаборДанных3
+ ИсточникДанных1
+ набор2
+
+
+
+
+ НаборДанных3
+ ИсточникДанных1
+ набор3
+
+
+ Основной
+ Основной
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
new file mode 100644
index 000000000..b08583a5f
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+ Отчет1
+ true
+
+ МакетОтчета
+
+ ru
+ Макет отчета
+
+
+
+ СКД
+
+ ru
+ СКД
+
+ DataCompositionSchema
+
+
+ ТекстовыйДокумент
+
+ ru
+ Текстовый документ
+
+ TextDocument
+
+
diff --git "a/src/test/resources/metadata/edt/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
similarity index 95%
rename from "src/test/resources/metadata/edt/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
index 6b8e0eb4b..0c2784f70 100644
--- "a/src/test/resources/metadata/edt/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
@@ -1,223 +1,223 @@
-
-
- false
- true
- false
-
-
-
-
+
+
+ false
+ true
+ false
+
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
index 5b2d0b770..e945b56d8 100644
--- "a/src/test/resources/metadata/edt/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
@@ -1,4 +1,4 @@
-
-
- Роль1
-
+
+
+ Роль1
+
diff --git "a/src/test/resources/metadata/edt/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
index 2695cc8aa..f62721689 100644
--- "a/src/test/resources/metadata/edt/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
@@ -1,11 +1,11 @@
-
-
- РегламентноеЗадание1
- CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1
- Описание Регламентное задание 1
- ПроверкаАктивностиСеансаУдаленияОбъектов
-
- true
- 3
- 10
-
+
+
+ РегламентноеЗадание1
+ CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1
+ Описание Регламентное задание 1
+ ПроверкаАктивностиСеансаУдаленияОбъектов
+
+ true
+ 3
+ 10
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/RecordSetModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/RecordSetModule.bsl"
new file mode 100644
index 000000000..4e86b8d85
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/RecordSetModule.bsl"
@@ -0,0 +1,7 @@
+
+
+
+
+Процедура ПередЗаписью(Отказ, Замещение)
+ //TODO: Вставить содержимое обработчика
+КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
index 52f4757de..426b6388e 100644
--- "a/src/test/resources/metadata/edt/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
@@ -1,17 +1,17 @@
-
-
-
-
-
-
-
- Последовательность1
- Document.Документ1
- Managed
-
- Измерение1
-
- DocumentRef.Документ1
-
-
-
+
+
+
+
+
+
+
+ Последовательность1
+ Document.Документ1
+ Managed
+
+ Измерение1
+
+ DocumentRef.Документ1
+
+
+
diff --git "a/src/test/resources/metadata/edt/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
index 4013463a3..d9a586e1e 100644
--- "a/src/test/resources/metadata/edt/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
@@ -1,7 +1,7 @@
-
-
- ПараметрСеанса1
-
- Boolean
-
-
+
+
+ ПараметрСеанса1
+
+ Boolean
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/ManagerModule.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/ManagerModule.bsl"
new file mode 100644
index 000000000..139597f9c
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/ManagerModule.bsl"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
index dcfd2bb9f..f1b589b0f 100644
--- "a/src/test/resources/metadata/edt/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
@@ -1,7 +1,7 @@
-
-
-
-
-
- ХранилищеНастроек1
-
+
+
+
+
+
+ ХранилищеНастроек1
+
diff --git "a/src/test/resources/metadata/edt/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
index d13faa4cb..b593ba5fa 100644
--- "a/src/test/resources/metadata/edt/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
@@ -1,7 +1,7 @@
-
-
- ЭлементСтиля1
-
-
-
-
+
+
+ ЭлементСтиля1
+
+
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/CommandInterface.cmi" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/CommandInterface.cmi"
new file mode 100644
index 000000000..0cf6de8a4
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/CommandInterface.cmi"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
index 422dc7997..23c7a9b42 100644
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
@@ -1,14 +1,14 @@
-
-
- ВтораяПодсистема
-
- ru
- Вторая подсистема
-
- true
- true
- CalculationRegister.РегистрРасчета1
- AccountingRegister.РегистрБухгалтерии1
- Enum.Перечисление1
- CommonForm.Форма
-
+
+
+ ВтораяПодсистема
+
+ ru
+ Вторая подсистема
+
+ true
+ true
+ CalculationRegister.РегистрРасчета1
+ AccountingRegister.РегистрБухгалтерии1
+ Enum.Перечисление1
+ CommonForm.Форма
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
new file mode 100644
index 000000000..d2ffd58d3
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
@@ -0,0 +1,13 @@
+
+
+ ПодчиненнаяПодсистема
+
+ ru
+ Подчиненная подсистема
+
+ true
+ true
+ Catalog.Справочник1
+ DataProcessor.Обработка1
+ Subsystem.ПерваяПодсистема
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/CommandInterface.cmi" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/CommandInterface.cmi"
new file mode 100644
index 000000000..0cf6de8a4
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/CommandInterface.cmi"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/CommandInterface.cmi" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/CommandInterface.cmi"
new file mode 100644
index 000000000..0cf6de8a4
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/CommandInterface.cmi"
@@ -0,0 +1,2 @@
+
+
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.mdo"
index 59bafe944..89a0105d7 100644
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217.mdo"
@@ -1,14 +1,14 @@
-
-
- ПодчиненнаяПодсистема3Уровня
-
- ru
- Подчиненная подсистема3 уровня
-
- true
- true
- Task.Задача1
- Enum.Перечисление1
- DocumentNumerator.НумераторДокументов1
- Subsystem.ПерваяПодсистема.Subsystem.ПочиненнаяСистема2
-
+
+
+ ПодчиненнаяПодсистема3Уровня
+
+ ru
+ Подчиненная подсистема3 уровня
+
+ true
+ true
+ Task.Задача1
+ Enum.Перечисление1
+ DocumentNumerator.НумераторДокументов1
+ Subsystem.ПерваяПодсистема.Subsystem.ПочиненнаяСистема2
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
new file mode 100644
index 000000000..d490f7811
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
@@ -0,0 +1,14 @@
+
+
+ ПочиненнаяСистема2
+
+ ru
+ Починенная система2
+
+ true
+ true
+ ChartOfAccounts.ПланСчетов1
+ BusinessProcess.БизнесПроцесс1
+ ПодчиненнаяПодсистема3Уровня
+ Subsystem.ПерваяПодсистема
+
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
index 11acb75ce..4eae23c8c 100644
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
@@ -1,12 +1,12 @@
-
-
- ПерваяПодсистема
-
- ru
- Первая подсистема
-
- true
- true
- ПодчиненнаяПодсистема
- ПочиненнаяСистема2
-
+
+
+ ПерваяПодсистема
+
+ ru
+ Первая подсистема
+
+ true
+ true
+ ПодчиненнаяПодсистема
+ ПочиненнаяСистема2
+
diff --git "a/src/test/resources/metadata/edt/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
similarity index 84%
rename from "src/test/resources/metadata/edt/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
index 531ce84f1..d62d6d8fe 100644
--- "a/src/test/resources/metadata/edt/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
@@ -1,41 +1,44 @@
-
-
-
-
-
-
-
-
-
- Задача1
- true
- Task.Задача1.StandardAttribute.Description
- Task.Задача1.StandardAttribute.Number
- DontUse
- DontUse
- Managed
- Use
- String
- 9
- Variable
- true
- true
- DontUse
- 25
- AsDescription
- InDialog
-
- РеквизитАдресации
-
- ru
- Реквизит адресации
-
-
- String
-
- 10
-
-
- Use
-
-
+
+
+
+
+
+
+
+
+
+ Задача1
+ true
+ Task.Задача1.StandardAttribute.Description
+ Task.Задача1.StandardAttribute.Number
+ DontUse
+ DontUse
+ Managed
+ Use
+ String
+ 9
+ Variable
+ true
+ true
+ DontUse
+ 25
+ AsDescription
+ InDialog
+
+ РеквизитАдресации
+
+ ru
+ Реквизит адресации
+
+
+ String
+
+ 10
+
+
+
+
+
+ Use
+
+
diff --git "a/src/test/resources/metadata/edt/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260/WS\320\241\321\201\321\213\320\273\320\272\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260/WS\320\241\321\201\321\213\320\273\320\272\320\260.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260/WS\320\241\321\201\321\213\320\273\320\272\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260/WS\320\241\321\201\321\213\320\273\320\272\320\260.mdo"
index e5f62da1e..94729f81e 100644
--- "a/src/test/resources/metadata/edt/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260/WS\320\241\321\201\321\213\320\273\320\272\320\260.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\260/WS\320\241\321\201\321\213\320\273\320\272\320\260.mdo"
@@ -1,12 +1,12 @@
-
-
-
-
-
- WSСсылка
-
- ru
- WSСсылка
-
- http://ya.ru
-
+
+
+
+
+
+ WSСсылка
+
+ ru
+ WSСсылка
+
+ http://ya.ru
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl" "b/src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
new file mode 100644
index 000000000..48f9c99dd
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
@@ -0,0 +1,8 @@
+
+Функция Операция1()
+ // Вставить содержимое обработчика.
+КонецФункции
+
+Функция Операция11()
+ // Вставить содержимое обработчика.
+КонецФункции
diff --git "a/src/test/resources/metadata/edt/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
similarity index 97%
rename from "src/test/resources/metadata/edt/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
index 1c258ce6b..7b264d5bf 100644
--- "a/src/test/resources/metadata/edt/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
@@ -1,34 +1,34 @@
-
-
- WebСервис1
- http://test.test
- ws1.1cws
- AutoUse
- 20
-
- Операция
-
- ru
- Операция
-
-
- string
- http://www.w3.org/2001/XMLSchema
-
- Операция1
- Managed
-
-
- Операция1
-
- ru
- Операция1
-
-
- string
- http://www.w3.org/2001/XMLSchema
-
- Операция11
- Managed
-
-
+
+
+ WebСервис1
+ http://test.test
+ ws1.1cws
+ AutoUse
+ 20
+
+ Операция
+
+ ru
+ Операция
+
+
+ string
+ http://www.w3.org/2001/XMLSchema
+
+ Операция1
+ Managed
+
+
+ Операция1
+
+ ru
+ Операция1
+
+
+ string
+ http://www.w3.org/2001/XMLSchema
+
+ Операция11
+ Managed
+
+
diff --git "a/src/test/resources/metadata/edt/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Package.xdto" "b/src/test/resources/ext/edt/mdclasses/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Package.xdto"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Package.xdto"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/Package.xdto"
diff --git "a/src/test/resources/metadata/edt/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo" "b/src/test/resources/ext/edt/mdclasses/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
similarity index 98%
rename from "src/test/resources/metadata/edt/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
rename to "src/test/resources/ext/edt/mdclasses/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
index 169353dcc..86a425ad7 100644
--- "a/src/test/resources/metadata/edt/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
@@ -1,5 +1,5 @@
-
-
- ПакетXDTO1
- http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8
-
+
+
+ ПакетXDTO1
+ http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8
+
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml" "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml"
new file mode 100644
index 000000000..5770408f8
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.xml"
@@ -0,0 +1,11 @@
+
+
+
+
+ Интерфейс1
+
+
+ true
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin" "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin"
new file mode 100644
index 000000000..20d8b9182
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011/Ext/Interface.bin"
@@ -0,0 +1,362 @@
+{3,
+{5,72ea8690-99e4-4abc-b987-f4e210907bf4,26,0,20,
+{6,c144a1cb-b398-4723-845a-e63362606098,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,560a32ca-028d-4b88-b6f2-6b7212bf31f8,bdb287f0-0de8-4050-9732-3a4885c3a064,0,0,1,
+{"U"},
+{1,0,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,1},1,
+{1,"БизнесПроцесс.БизнесПроцесс1: Открыть список бизнес-процессов",
+{1,1,
+{"ru","БизнесПроцесс1"}
+},
+{1,1,
+{"ru","БизнесПроцесс1"}
+},
+{1,1,
+{"ru","Открыть список бизнес-процессов БизнесПроцесс1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,00a13531-2783-41a1-8e53-926bf8c3ea90,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,c251fcec-ec02-4ef4-8f70-4d70db6631ea,bdb287f0-0de8-4050-9732-3a4885c3a064,0,0,1,
+{"U"},
+{1,0,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,1},1,
+{1,"Задача.Задача1: Открыть список задач",
+{1,1,
+{"ru","Задача1"}
+},
+{1,1,
+{"ru","Задача1"}
+},
+{1,1,
+{"ru","Открыть список задач Задача1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,3dfbc60a-124b-4383-8d9e-cf39ebb30822,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,5ac59104-28a5-40b1-ab5b-2857fb41991a,e2c7e527-d739-4aab-8125-1e311edceaa8,0,0,0,
+{1,0,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,1},1,
+{1,"ОбщаяФорма.Форма: Открыть форму",
+{1,1,
+{"ru","Форма"}
+},
+{1,1,
+{"ru","Форма"}
+},
+{1,1,
+{"ru","Открыть форму Форма"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,0af0a00d-cad1-495d-83d5-031ca3a89b99,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,eeef463d-d5e7-42f2-ae53-10279661f59d,f4785539-c5fb-40da-90be-b235496ec9aa,0,0,1,
+{"U"},
+{1,0,a08d62c1-05ba-4523-8c38-f23d208fe441,1,1},1,
+{1,"Справочник.Справочник1: Открыть справочник",
+{1,1,
+{"ru","Справочник1"}
+},
+{1,1,
+{"ru","Справочник1"}
+},
+{1,1,
+{"ru","Открыть справочник Справочник1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,abc18947-381b-42c6-91d4-985ac0ce5824,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,50,
+{1,1,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,1,0},0,0},0},
+{6,8e26b477-0a7e-4e28-b9e7-0ef45f51ba78,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,a08d62c1-05ba-4523-8c38-f23d208fe441,2,
+{1,0,357c6a54-357d-425d-a2bd-22f4f6e86c87,2147483647,0},0,1},0},
+{6,00a10c27-97b2-4d08-91c3-57cdff856fec,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,2766f353-abd2-4e7f-9a95-53f05c83f5d4,1e288c58-9dca-4e20-9c13-50b82367819e,0,0,1,
+{"U"},
+{1,0,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,1},1,
+{1,"ПланСчетов.ПланСчетов1: Открыть план счетов",
+{1,1,
+{"ru","ПланСчетов1"}
+},
+{1,1,
+{"ru","ПланСчетов1"}
+},
+{1,1,
+{"ru","Открыть план счетов ПланСчетов1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,d4531ced-2206-449c-9a13-4a21cb9ae780,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,34d3754d-298c-4786-92f6-a487db249fc7,c29f8840-2b63-11d6-a3c7-0050bae0a776,0,0,1,
+{"U"},
+{1,0,a08d62c1-05ba-4523-8c38-f23d208fe441,4,1},1,
+{1,"Отчет.Отчет1: Открыть отчет",
+{1,1,
+{"ru","Отчет1"}
+},
+{1,1,
+{"ru","Отчет1"}
+},
+{1,1,
+{"ru","Открыть отчет Отчет1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,bb049c88-a114-4fd4-ab57-452070480b3b,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,52,
+{1,18,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,1,0},0,0},0},
+{6,aeabf4f0-9790-463b-8a9b-8c774c60b444,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,53,
+{1,19,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,1,0},0,0},0},
+{6,09f213b1-cbe4-4405-b906-0f60f92d53a7,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd,7fad1973-8f65-4eb1-a285-71a48ca2d01f,1,0,1,
+{"U"},
+{1,0,a08d62c1-05ba-4523-8c38-f23d208fe441,2,1},1,
+{1,"Документ.Документ1: Открыть список документов",
+{1,1,
+{"ru","Документ1"}
+},
+{1,1,
+{"ru","Список документов Документ1"}
+},
+{1,1,
+{"ru","Открыть список документов Документ1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,223e9eb3-c03e-4de8-96e8-5aa63eefd6c6,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,a08d62c1-05ba-4523-8c38-f23d208fe441,1,
+{1,0,357c6a54-357d-425d-a2bd-22f4f6e86c87,2147483647,0},0,1},0},
+{6,c1fa9907-2912-4c0d-b0d9-b53e1a196c07,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,a08d62c1-05ba-4523-8c38-f23d208fe441,5,
+{1,0,357c6a54-357d-425d-a2bd-22f4f6e86c87,2147483647,0},0,1},0},
+{6,5d7a7ea9-7c81-4ea7-93aa-4468761200f0,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,c6743657-4787-40de-9a45-2493c630f626,1784fe30-ca08-11d5-b9a5-0050bae0a95d,0,0,1,
+{"U"},
+{1,0,a08d62c1-05ba-4523-8c38-f23d208fe441,2,1},1,
+{1,"ЖурналДокументов.ЖурналДокументов1: Открыть журнал документов",
+{1,1,
+{"ru","ЖурналДокументов1"}
+},
+{1,1,
+{"ru","ЖурналДокументов1"}
+},
+{1,1,
+{"ru","Открыть журнал документов ЖурналДокументов1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,7e8aaf17-c899-4d9d-af47-7e778024b04b,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,875faa24-ba4b-4731-9f11-7a7cea99ef16,3,
+{1,11,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,1,0},0,0},0},
+{6,a3fa0896-8b95-4fc6-98c6-ce4581645e92,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,
+{1,0,357c6a54-357d-425d-a2bd-22f4f6e86c87,2147483647,0},0,1},0},
+{6,a7c24164-7268-4664-a2d5-7a482d8c15f7,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,a08d62c1-05ba-4523-8c38-f23d208fe441,4,
+{1,0,357c6a54-357d-425d-a2bd-22f4f6e86c87,2147483647,0},0,1},0},
+{6,12cdcbb8-a9f7-4346-b674-e703286a3936,1,c93a51ed-b2d1-47f1-948d-38373f8710af,
+{4,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,54,
+{1,2e1,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,1,0},0,0},0},
+{6,93563e0d-add5-44f6-945b-951705bea9c6,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,1755c534-9ccd-49c4-9f8b-2aa066424aaa,b63b65aa-1950-4246-8827-3686a8d4cc07,0,0,1,
+{"U"},
+{1,0,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,1},1,
+{1,"ПланВидовРасчета.ПланВидовРасчета1: Открыть план видов расчета",
+{1,1,
+{"ru","ПланВидовРасчета1"}
+},
+{1,1,
+{"ru","ПланВидовРасчета1"}
+},
+{1,1,
+{"ru","Открыть план видов расчета ПланВидовРасчета1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},
+{6,ce7d6beb-e25b-45ea-afad-0c9c50cb1163,1,88feaf15-7cd4-4fe8-9868-ed69cbea1957,
+{6,a7c57ba0-75d8-487d-b8ea-ae5083d8a503,203562fd-7bf3-46fb-8604-c3cc5a1bd885,0,0,1,
+{"U"},
+{1,0,a08d62c1-05ba-4523-8c38-f23d208fe441,5,1},1,
+{1,"Обработка.Обработка1: Открыть обработку",
+{1,1,
+{"ru","Обработка1"}
+},
+{1,1,
+{"ru","Обработка1"}
+},
+{1,1,
+{"ru","Открыть обработку Обработка1"}
+},
+{4,0,
+{0},"",-1,-1,1,0,""},
+{0,0,0}
+}
+},0},11,
+{5,6e3fba06-9053-4d04-8308-caaf102c0ce3,6,0,5,3dfbc60a-124b-4383-8d9e-cf39ebb30822,
+{8,"",0,1,
+{1,1,
+{"ru","Форма"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,18,1e2,0,0,1,0,1,0,0},00a10c27-97b2-4d08-91c3-57cdff856fec,
+{8,"",0,1,
+{1,1,
+{"ru","ПланСчетов1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,19,1e2,0,0,1,0,1,0,0},93563e0d-add5-44f6-945b-951705bea9c6,
+{8,"",0,1,
+{1,1,
+{"ru","ПланВидовРасчета1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,20,1e2,0,0,1,0,1,0,0},c144a1cb-b398-4723-845a-e63362606098,
+{8,"",0,1,
+{1,1,
+{"ru","БизнесПроцесс1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,21,1e2,0,0,1,0,1,0,0},00a13531-2783-41a1-8e53-926bf8c3ea90,
+{8,"",0,1,
+{1,1,
+{"ru","Задача1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,22,1e2,0,0,1,0,1,0,0},
+{-1,0,
+{0}
+}
+},
+{5,72ea8690-99e4-4abc-b987-f4e210907bf4,1,0,10,abc18947-381b-42c6-91d4-985ac0ce5824,
+{8,"",0,1,
+{1,1,
+{"ru","&Файл"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,23,1,1,0,1,0,1,0,0},7e8aaf17-c899-4d9d-af47-7e778024b04b,
+{8,"",0,1,
+{1,1,
+{"ru","Операции"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,12,11,1,0,1,0,1,0,0},223e9eb3-c03e-4de8-96e8-5aa63eefd6c6,
+{8,"",0,1,
+{1,1,
+{"ru","Справочники"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,7,15,1,0,1,0,1,0,0},8e26b477-0a7e-4e28-b9e7-0ef45f51ba78,
+{8,"",0,1,
+{1,1,
+{"ru","Документы"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,9,15,1,0,1,0,1,0,0},a7c24164-7268-4664-a2d5-7a482d8c15f7,
+{8,"",0,1,
+{1,1,
+{"ru","Отчеты"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,13,15,1,0,1,0,1,0,0},c1fa9907-2912-4c0d-b0d9-b53e1a196c07,
+{8,"",0,1,
+{1,1,
+{"ru","Обработки"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,15,15,1,0,1,0,1,0,0},a3fa0896-8b95-4fc6-98c6-ce4581645e92,
+{8,"",0,1,
+{1,1,
+{"ru","Прочие"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,17,15,1,0,1,0,1,0,0},bb049c88-a114-4fd4-ab57-452070480b3b,
+{8,"",0,1,
+{1,1,
+{"ru","&Сервис"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,24,18,1,0,1,0,1,0,0},aeabf4f0-9790-463b-8a9b-8c774c60b444,
+{8,"",0,1,
+{1,1,
+{"ru","&Окна"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,25,19,1,0,1,0,1,0,0},12cdcbb8-a9f7-4346-b674-e703286a3936,
+{8,"",0,1,
+{1,1,
+{"ru","Сп&равка"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,26,2e1,1,0,1,0,1,0,0},
+{-1,0,
+{10,72ea8690-99e4-4abc-b987-f4e210907bf4,23,0,72ea8690-99e4-4abc-b987-f4e210907bf4,12,0,72ea8690-99e4-4abc-b987-f4e210907bf4,7,0,72ea8690-99e4-4abc-b987-f4e210907bf4,9,0,72ea8690-99e4-4abc-b987-f4e210907bf4,13,0,72ea8690-99e4-4abc-b987-f4e210907bf4,15,0,72ea8690-99e4-4abc-b987-f4e210907bf4,17,0,72ea8690-99e4-4abc-b987-f4e210907bf4,24,0,72ea8690-99e4-4abc-b987-f4e210907bf4,25,0,72ea8690-99e4-4abc-b987-f4e210907bf4,26,0}
+}
+},
+{5,875faa24-ba4b-4731-9f11-7a7cea99ef16,3,0,0,
+{-1,0,
+{0}
+}
+},
+{5,a08d62c1-05ba-4523-8c38-f23d208fe441,1,0,1,0af0a00d-cad1-495d-83d5-031ca3a89b99,
+{8,"",0,1,
+{1,1,
+{"ru","Справочник1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,8,1e2,0,0,1,0,1,0,0},
+{-1,0,
+{0}
+}
+},
+{5,a08d62c1-05ba-4523-8c38-f23d208fe441,2,0,2,09f213b1-cbe4-4405-b906-0f60f92d53a7,
+{8,"",0,1,
+{1,1,
+{"ru","Документ1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,10,1e2,0,0,1,0,1,0,0},5d7a7ea9-7c81-4ea7-93aa-4468761200f0,
+{8,"",0,1,
+{1,1,
+{"ru","ЖурналДокументов1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,11,1e2,0,0,1,0,1,0,0},
+{-1,0,
+{0}
+}
+},
+{5,a08d62c1-05ba-4523-8c38-f23d208fe441,4,0,1,d4531ced-2206-449c-9a13-4a21cb9ae780,
+{8,"",0,1,
+{1,1,
+{"ru","Отчет1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,14,1e2,0,0,1,0,1,0,0},
+{-1,0,
+{0}
+}
+},
+{5,a08d62c1-05ba-4523-8c38-f23d208fe441,5,0,1,ce7d6beb-e25b-45ea-afad-0c9c50cb1163,
+{8,"",0,1,
+{1,1,
+{"ru","Обработка1"}
+},0,72ea8690-99e4-4abc-b987-f4e210907bf4,16,1e2,0,0,1,0,1,0,0},
+{-1,0,
+{0}
+}
+},
+{5,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,50,0,0,
+{-1,0,
+{0}
+}
+},
+{5,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,52,0,0,
+{-1,0,
+{0}
+}
+},
+{5,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,53,0,0,
+{-1,0,
+{0}
+}
+},
+{5,b78f2e80-ec68-11d4-9dcf-0050bae2bc79,54,0,0,
+{-1,0,
+{0}
+}
+}
+},1,9ca116f6-d116-470b-9612-4ecb6e69aa9c,
+{3,72ea8690-99e4-4abc-b987-f4e210907bf4,1,fb853f5c-a60e-4180-bc3d-6755ac2ceb3b,0,
+{1,1,
+{"ru","Главное меню"}
+},0,1,0}
+}
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2012.xml" "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2012.xml"
new file mode 100644
index 000000000..ec10f51e9
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Interfaces/\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2012.xml"
@@ -0,0 +1,16 @@
+
+
+
+
+ Интерфейс2
+
+
+ ru
+ Second
+
+
+ Второй интерфейс
+ false
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/ext/edt/mdclasses/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\214.xml" "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\214.xml"
new file mode 100644
index 000000000..00f15b156
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\214.xml"
@@ -0,0 +1,15 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/test/resources/ext/edt/mdclasses_3_18/configuration/.project b/src/test/resources/ext/edt/mdclasses_3_18/configuration/.project
new file mode 100644
index 000000000..5dede4e0e
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses_3_18/configuration/.project
@@ -0,0 +1,18 @@
+
+
+ configuration
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextBuilder
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextNature
+ com._1c.g5.v8.dt.core.V8ConfigurationNature
+
+
diff --git a/src/test/resources/ext/edt/mdclasses_3_18/configuration/.settings/org.eclipse.core.resources.prefs b/src/test/resources/ext/edt/mdclasses_3_18/configuration/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 000000000..99f26c020
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses_3_18/configuration/.settings/org.eclipse.core.resources.prefs
@@ -0,0 +1,2 @@
+eclipse.preferences.version=1
+encoding/=UTF-8
diff --git a/src/test/resources/ext/edt/mdclasses_3_18/configuration/DT-INF/PROJECT.PMF b/src/test/resources/ext/edt/mdclasses_3_18/configuration/DT-INF/PROJECT.PMF
new file mode 100644
index 000000000..a1402c24f
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses_3_18/configuration/DT-INF/PROJECT.PMF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+Runtime-Version: 8.3.18
diff --git "a/src/test/resources/metadata/edt_3_18/src/Bots/\320\221\320\276\321\2021/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Bots/\320\221\320\276\321\2021/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Bots/\320\221\320\276\321\2021/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Bots/\320\221\320\276\321\2021/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Bots/\320\221\320\276\321\2021/\320\221\320\276\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Bots/\320\221\320\276\321\2021/\320\221\320\276\321\2021.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Bots/\320\221\320\276\321\2021/\320\221\320\276\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Bots/\320\221\320\276\321\2021/\320\221\320\276\321\2021.mdo"
diff --git "a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
new file mode 100644
index 000000000..c842e9e69
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
@@ -0,0 +1,206 @@
+
+
+
+ Код
+ 1
+ true
+ true
+
+ true
+
+
+ Объект.Code
+
+
+ КодРасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КодКонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Наименование
+ 4
+ true
+ true
+
+ true
+
+
+ Объект.Description
+
+
+ НаименованиеРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НаименованиеКонтекстноеМеню
+ 5
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит1
+ 7
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ FillCheckProcessingAtServer
+ ОбработкаПроверкиЗаполненияНаСервере
+
+ LockOwnerWindow
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ CatalogObject.Справочник1
+
+
+ true
+
+
+ true
+
+ true
+ true
+
+
+
+
+
+
+
+ BeforeWrite
+ ПередЗаписью
+
+
+ BeforeWriteAtServer
+ ПередЗаписьюНаСервере
+
+
+
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
diff --git "a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
new file mode 100644
index 000000000..bbd0de04f
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
@@ -0,0 +1,191 @@
+
+
+
+ Код
+ 1
+ true
+ true
+
+ true
+
+
+ Объект.Code
+
+
+ КодРасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ КодКонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Наименование
+ 4
+ true
+ true
+
+ true
+
+
+ Объект.Description
+
+
+ НаименованиеРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НаименованиеКонтекстноеМеню
+ 5
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Команда1
+ 7
+ true
+ true
+
+ true
+
+
+ Команда1РасширеннаяПодсказка
+ 8
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+ UsualButton
+ Form.Command.Команда1
+ Auto
+ true
+ true
+ UserCmds
+ Auto
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ OnCreateAtServer
+ ПриСозданииНаСервере
+
+ LockOwnerWindow
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ CatalogObject.СправочникБезСинонима
+
+
+ true
+
+
+ true
+
+ true
+ true
+
+
+ Команда1
+ 1
+
+
+
+ Команда1
+
+
+ Auto
+
+
+
+
+
+
+
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo"
diff --git a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/Active/Active.mdo b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/Active/Active.mdo
similarity index 100%
rename from src/test/resources/metadata/edt_3_18/src/CommonTemplates/Active/Active.mdo
rename to src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/Active/Active.mdo
diff --git a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/Active/Template.axdt b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/Active/Template.axdt
new file mode 100644
index 000000000..b868f19bf
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/Active/Template.axdt
@@ -0,0 +1,216 @@
+{0,00020833-0000-0000-c000-000000000046,
+{#base64:0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAABAAAA
+AQAAAAAAAAAAEAAAAgAAAAEAAAD+////AAAAAAAAAAD/////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+///////////////////////////////////////////9/////v////7////+////
+BQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAA
+EQAAABIAAAD+////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+/////////////////////1IAbwBvAHQAIABFAG4AdAByAHkAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAUA//////////8CAAAA
+MwgCAAAAAADAAAAAAAAARgAAAAAAAAAAAAAAAIAOQCqtHNcBAwAAAMAAAAAAAAAA
+AQBPAGwAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAoAAgD///////////////8AAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAABQAGEAYwBrAGEAZwBlAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+EAACAQEAAAADAAAA/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAQAAABrHAAAAAAAAAEAQwBvAG0AcABPAGIAagAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAIA////////////////
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAH4AAAAAAAAA
+/v///wIAAAD+////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////
+//////////////////////////////////////////8BAAACCAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AQD+/wMKAAD/////MwgCAAAAAADAAAAAAAAARh4AAADE4u7o9+376SDr6PHyIE1p
+Y3Jvc29mdCBFeGNlbAAHAAAAQmlmZjEyACEAAABFeGNlbC5TaGVldEJpbmFyeU1h
+Y3JvRW5hYmxlZC4xMgD0ObJxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAFBLAwQUAAYACAAAACEAW2YzDG0BAAACBAAAEwAIAltD
+b250ZW50X1R5cGVzXS54bWwgogQCKKAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAApFOxTsMwFNyR+IfIK4rdMiCEmnaAIrFAhyJm47w0UR3b8nNL8vc8
+J20lUNNSsSSK7bt7dzlPZk2tky14rKzJ2JiPWAJG2bwyq4y9L5/Te5ZgkCaX2hrI
+WAvIZtPrq8mydYAJoQ1mrAzBPQiBqoRaIrcODO0U1tcy0KdfCSfVWq5A3I5Gd0JZ
+E8CENEQONp08QSE3OiTzhpb7ST4rw5LH/lyUyph0TldKBhpUbE3Oa0yhUaA5lgCB
+E0D6ltdSeTs38lMDHZHEIo7ye9B4RuCni3TngBOyGwLLyuEN2RxQiDvDDna4N4re
+VzkkC+nDq6zJp2i0+LJ+3dlC0b3G0d5f8ziA42DnBfrgXkwOzUUyhOtAH3hCJ1Ah
+QHTPMT+dSPynvyK3RVEpyK3a1FQX3tHsEx8whqHVgJfE1SOGPJD4wluH1FkPlzvY
+lyaiU0dE4EMFh9ocM3FQpML/OzKINyqH/Ii26G7w9BsAAP//AwBQSwMEFAAGAAgA
+AAAhAEOC48X2AAAATAIAAAsACAJfcmVscy8ucmVscyCiBAIooAACAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAACskk1PwzAMhu9I/IfI99XdkBBCS3eZkHZD
+qPwAL3E/1DaOkgDdvyc7QaUxOHD01+vHr7zdzdOo3jnEXpyGdVGCYmfE9q7V8Fo/
+rR5AxUTO0iiONZw4wq66vdm+8EgpD8Wu91FlFRc1dCn5R8RoOp4oFuLZ5UojYaKU
+w9CiJzNQy7gpy3sM3zWgWmiqg9UQDvYOVH3yefPv2tI0veG9mLeJXbqwAnlO7Czb
+lQ+ZLaQ+X6NqCi0nDVbMc05HJO+LjA14mWjzd6Kfr8WJE1lKhEYCX+c5d1wDWv+n
+RUsTv9yZR/yQMBxFhuLYu7M5uPiB6hMAAP//AwBQSwMEFAAGAAgAAAAhAAYzIFXl
+AAAALQIAABoACAF4bC9fcmVscy93b3JrYm9vay5iaW4ucmVscyCiBAEooAABAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAKyRwWrDMBBE74X+g9h7vXYKpZTIuYRCrsH9AFVe2yK2JLTb
+Nv77Cpc2DaT0kotgtGje7Gi9OU6jeqfELngNVVGCIm9D63yv4aV5vnsExWJ8a8bg
+ScNMDJv69ma9p9FIfsSDi6yyi2cNg0h8QmQ70GS4CJF8nnQhTUayTD1GYw+mJ1yV
+5QOm3x5Qn3mqXash7dp7UM0cM/l/79B1ztI22LeJvFxAIMs85gVUY1JPouFLF6/O
+A17Gr66Jl1wLneiLxOWsitzTXxmqa2b4COnAA5GccvxcMS6T6rsQPPvk+hMAAP//
+AwBQSwMEFAAGAAgAAAAhAJEe72yhAAAA2wAAAA8AAAB4bC93b3JrYm9vay5iaW5q
+ZmRoYDRiQANMQH4FQw4DI5A2g5KsQLYhgwkQGjEYMMxk5FEASqxuACllYGhnZJjH
+KLuIGWLOphgGhjwNBoYIiCRYsKKDkaGfkWEOoxKICzKYBYiLGDwZUoDGggyXZrFg
+cWRxYjFkmMDIMJdRCqYuBcj4s/LjJd+kAHs2IDuLYSmLAMQiBDmbkZFBmYWZn4Fh
+tQAjowpDCyMDAAAA//8DAFBLAwQUAAYACAAAACEADoBW4y0BAABdAgAADQAAAHhs
+L3N0eWxlcy5iaW6skk8rRGEUxn/zvifuitfCxsLGv6LBjFIWikxZoKbGFzCIKVIT
+yo5vYMXX8Odr+AZm508xs6KIaJxzr8lsiHIXzz3nPed57nnOe48cVyIpYGigonho
+obug1d5Qd62KMyyxQYkiZcW+lhSujf2DiH6uhUsRp03pnBH8VMLz00rWJ87+AOlc
+xz+oVISbxNXwmMolXmyK30W3wkNCHwnNFkKAR+GuUWv2ZbV7oZrURrs+v1a3/XVL
+RuZkViYVJ6QmvHix+qvnzectMtOLuuWi7nmVAtvsxdGCZiu68x02ycZdec122dKO
+r655PVtjXc8yjPPu6RG9IKoRT9FgQ74QX+GyCpa/oT5H1CJ6le3b4SRwFrLG7oyH
+K+kINpr9CD+pnAdOg6ocOz4AAAD//wMAUEsDBBQABgAIAAAAIQChUSaYwQAAABwB
+AAAjAAAAeGwvd29ya3NoZWV0cy9fcmVscy9zaGVldDEuYmluLnJlbHNsz8FqwzAM
+BuD7oO9gdF+c9DDGiFPYYZBr6R5As5XENJaNZUry9vVt7djxl/g/of60hVXdKIuP
+bKBrWlDENjrPs4Hvy9frOygpyA7XyGRgJ4HTcHjpz7RiqSVZfBJVFRYDSynpQ2ux
+CwWUJibiupliDlhqzLNOaK84kz627ZvOjwYMT6YanYE8ug7UZU/18h87eJujxKk0
+NgYdp8nb/1S9rZ+eMe8jO9qqhXmmYuDnd9g1NYAeev3003AHAAD//wMAUEsDBBQA
+BgAIAAAAIQDNyXlJjwAAACUBAAAYAAAAeGwvd29ya3NoZWV0cy9zaGVldDEuYmlu
+amRkmMwofpKFicGBAQz+QwGIM4VRACKIIFsZGToZ5e4wI4uDdKYgCcxgVEGRB0ox
+opsD5HcxMrQxMqiyMTIw8TE0TOVgYmVQY3jKzANyAAeDDljLREaGSYwM01mcIPpB
+YtiMQjcdXQ2If5eZSYDhDrNBGhg8s4fREL0v7GG0MRhctofRTYwMAAAAAP//AwBQ
+SwMEFAAGAAgAAAAhABTIPIO9BgAAvxoAABMAAAB4bC90aGVtZS90aGVtZTEueG1s
+7FndbhtFFL5H4h1We+/6b3dtR3Uqe2030KStGreol2N77J1mdsfaHSe1qkpVesUN
+CKkgbpCAGy4QIhJFVIiKV0ifIVIrKA/Bmdm1dyaekP6kqKAmUrIef+fMN+ec/ebv
+/IXbIbV2cZwQFjXt8rmSbeFoyEYkmjTt6/1eoW5bCUfRCFEW4aY9x4l9Yf39986j
+NR7gEFtgHyVrqGkHnE/XisVkCM0oOcemOILvxiwOEYeP8aQ4itEe+A1psVIqecUQ
+kci2IhSC28NvD38+/O3wwLoyHpMhttcX/rsUOol4IhqGNN4W3vHC6Jsn+4cHh48P
+Hx4ePLkHz4/h/6fSdrRTFhbJPPFpbO0i2rSh6xHb6+Pb3LYoSjh80bRL8scurp8v
+orXMiPITbBW7nvzJ7DKD0U5F9hlPBstOHcd1vNbSvwRQvorr1rpe11v6kwA0HMLI
+Uy6qT7fdaHfcDKuA0keD706tUy1reMV/dYVzyxW/Gl6CUv/OCr7X8yGKGl6CUrxr
+iEmt4jsaXoJSvLeCr5VaHaem4SUooCTaWUGXXK/qL0a7hIwZ3TDCG67Tq1Uy5zkK
+qmFZbaKLMYv4i9ZeiG6xuAcGwpAiTiKLz6d4jIZQ6D6iZBATa5NMAijEKYpYAs2l
+SqlXqsJf8evIJxkhtIaRYi14ArNkpUnws5JhTKa8aX8IXm0F8vTRo6P9h0f7vxzd
+v3+0/2PWt3Sl2W2gaKLaPf/us7++umf9+dPXzx98nnZ9HJ+o+Gc/fPzs19//yT2M
+OA/F0y8Onj08ePrlJ398/8DgvRWjgQrvkxAn1mW8Z11jIQzQwB8P4pez6AeIaBYo
+AN8G110eaMDLc0RNuDbWQ3gjBtUxAS/Obmlct4N4xomh50tBqAG3GKNtFhsDcEn0
+pUS4P4sm5s7jmYq7htCuqW8fRVqCu7MpyC8xufQDrNG8SlHE0QRHmFviO7aDsWF0
+NwnR4rpFhjFL2JhbN4nVRsQYkj4ZaIWUG22QEPIyNxGEVGux2bphtRk1jbqDd3Uk
+vBaIGsj3MdXCeBHNOApNLvsopGrANxEPTCS35/FQxXUTDpmeYMqs7ggnicnmSgzj
+VZJ+CRTGnPYtOg91ZMzJjsnnJmJMRXbYjh+gcGrkTKJAxX6Q7ECJIusq4yb4FtPf
+EPEZ8oCiE9N9g2At3acLwXUQV5VSXiDim1lsyOVFzPT3cU7HCEuVgblAk/SQRKfq
++zFld/8dZTdr9Bloutnx66h5KybGd2rjmIafhPsPKncHzaKrGF6W1ZnrnXC/E277
+fy/cJ73LZy/XuUKDeOdrd7mSD194IT8mlG7zOcWbiVzLJzBPjXrQKDcdcie63OhN
+A3jMthEabhIjaWPFjH9EeLAdoCks+MtymzpJMteTxJqyBPYBslnuofEx33I3MQu3
+2Cjdz5bLYu+aikmCeN5ecpftsPfgKdqr5Xu0pXu5653IvfWCgLB9GRJKZzqJqoFE
+bdEIWfknEnJkZ8KiYWBRF+4XqVpkcRkKoLbMCiykLFh+NW3XSc8JYIuFKB6JPKVH
+BovsiuScaaZPCiZVKwBWFYsKyDPdEFxPHJ4YXVpqL5BpjYRSbjoJpQwDNMJZdaoH
+K2eZ60aeUo2eCMXibchp1OpvItdCVI5pA41UpaCRtde0vaoLx2lDNG3aYzgHgMdw
+CrWTiAUwohM4bxvyOH3hX0VZpnHCOygJ0oBL0UnVICQcxxYlYdMWw19WA42khkhu
+5QoIwltLrgGy8raRg6TrScbjMR5yNe1Ki4h0+hEUPtUK47fS/NXBwpLNIN3bwWjP
+GtBZfA1Bibm1sgjgiCRwHFROozkicN65FLK8/o5NTJnsqgeOsobSdkSnAcpmFFXM
+U7gU0SUd+WkZA+VTNmYI6GoIBxMxwb72rHv6VC0ip4hmPmdqqiJmTbOYvrlJXmGV
+T6Iaq1S65TYiybWusdA6KFTjLHHKrPsCE4JCLe9MoyYYr8qw0OysVad2hgsCJRLe
+CXFbzhHGSLzqzA92x6tWTBCLdaYsfHlXot5lsMEtEI8OnArPKE9kKuFmIkaw6EvP
+mVPZgFfkNs/WiPBkzWLStO+U3JbjV1y/UKq73YJTdUqFutuqFlquWy133XKp067c
+hYmFB2HZTe9penAwRefZbY1sX7mxCRdnb+eGLCwyeRFTlMTljU25ot3YpBc1Vl/c
+x9gWAdG541V6jWqj7RUa1Vav4HTa9ULD99qFjufXOr2O79Ybvbu2tSvBTqvqO163
+XvDKvl9wvJKgX28Uak6l0nJqrXrXad3NljEw8lQ+slhAeCWv9b8BAAD//wMAUEsD
+BBQABgAIAAAAIQC+g5xoFAAAAB0AAAAeAAAAeGwvd29ya3NoZWV0cy9iaW5hcnlJ
+bmRleDEuYmlu0pJgAAIFEIEGpjIxAAAAAP//AwBQSwMEFAAGAAgAAAAhAOAwcLxc
+AQAAfwIAABEACAFkb2NQcm9wcy9jb3JlLnhtbCCiBAEooAABAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAJSSMU7DMBiFdyTuEHlPnKRVRaMkSIA6UQmJIhCbZf9tI2Insg1pNwQ3gJsw
+oQ49g3sjnKQtQYWB0X7v//zeL8enC547TyBVVogEBZ6PHBC0YJmYJehmMnJPkKM0
+EYzkhYAELUGh0/T4KKZlRAsJV7IoQeoMlGNJQkW0TNBc6zLCWNE5cKI86xBWnBaS
+E22PcoZLQh/IDHDo+wPMQRNGNME10C33RLRFMrpHlo8ybwCMYsiBg9AKB16Av70a
+JFe/DjRKx8kzvSxtp23cLpvRVty7FyrbG6uq8qpeE8PmD/Dd+PK6qepmot4VBZTG
+jEZUAtGFTM2b+TSrzYtZb54d8755NSuzNh8x7njqfeZE6bFd/TQDdrb8e+zQal9r
+yrVPAnNs3Kgtt1Nue+cXkxFKQz8MXL/nBsNJ4Ef9QdQP7+skP+br+O0F3+b5F3HY
+Ie4AaYwPvkz6BQAA//8DAFBLAwQUAAYACAAAACEApbTiPJQBAAAUAwAAEAAIAWRv
+Y1Byb3BzL2FwcC54bWwgogQBKKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcksFuEzEQhu9I
+vMPK98abgioUeV2hFNQDiEhJex+8s4mF17bs6SrhBlcegRfhMZo3YnZXTTfAidvM
+/L9+fx5bXe9bV3SYsg2+EvNZKQr0JtTWbytxt3l/8UYUmcDX4ILHShwwi2v98oVa
+pRAxkcVccITPldgRxYWU2eywhTxj2bPShNQCcZu2MjSNNXgTzEOLnuRlWV5J3BP6
+GuuLeAoUY+Kio/8NrYPp+fL95hAZWKu3MTprgPiW+qM1KeTQUPFub9ApORUV063R
+PCRLB10qOW3V2oDDJQfrBlxGJZ8H6hahX9oKbMpadbTo0FBIRbZfeW2XovgMGXuc
+SnSQLHhirN42NkPtYqakH38+/jp+O34//lCSDeNwKKfeaW1f6/lg4OLc2AeMICyc
+I24sOcyfmhUk+gfxfEo8MIy854zjsVPE4dZ82B/xy9BG8AcWTtUH67/ku7gJN0D4
+tNHzoVrvIGHNj3Da+GmgbnmZyfUhyx34LdZPnr+F/v3vx0+u51ez8lXJTzuZKfn8
+nfVvAAAA//8DAFBLAQItABQABgAIAAAAIQBbZjMMbQEAAAIEAAATAAAAAAAAAAAA
+AAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhAEOC48X2
+AAAATAIAAAsAAAAAAAAAAAAAAAAApgMAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
+AAAhAAYzIFXlAAAALQIAABoAAAAAAAAAAAAAAAAAzQYAAHhsL19yZWxzL3dvcmti
+b29rLmJpbi5yZWxzUEsBAi0AFAAGAAgAAAAhAJEe72yhAAAA2wAAAA8AAAAAAAAA
+AAAAAAAA8ggAAHhsL3dvcmtib29rLmJpblBLAQItABQABgAIAAAAIQAOgFbjLQEA
+AF0CAAANAAAAAAAAAAAAAAAAAMAJAAB4bC9zdHlsZXMuYmluUEsBAi0AFAAGAAgA
+AAAhAKFRJpjBAAAAHAEAACMAAAAAAAAAAAAAAAAAGAsAAHhsL3dvcmtzaGVldHMv
+X3JlbHMvc2hlZXQxLmJpbi5yZWxzUEsBAi0AFAAGAAgAAAAhAM3JeUmPAAAAJQEA
+ABgAAAAAAAAAAAAAAAAAGgwAAHhsL3dvcmtzaGVldHMvc2hlZXQxLmJpblBLAQIt
+ABQABgAIAAAAIQAUyDyDvQYAAL8aAAATAAAAAAAAAAAAAAAAAN8MAAB4bC90aGVt
+ZS90aGVtZTEueG1sUEsBAi0AFAAGAAgAAAAhAL6DnGgUAAAAHQAAAB4AAAAAAAAA
+AAAAAAAAzRMAAHhsL3dvcmtzaGVldHMvYmluYXJ5SW5kZXgxLmJpblBLAQItABQA
+BgAIAAAAIQDgMHC8XAEAAH8CAAARAAAAAAAAAAAAAAAAAB0UAABkb2NQcm9wcy9j
+b3JlLnhtbFBLAQItABQABgAIAAAAIQCltOI8lAEAABQDAAAQAAAAAAAAAAAAAAAA
+ALAWAABkb2NQcm9wcy9hcHAueG1sUEsFBgAAAAALAAsA2wIAAHoZAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+AAAAAAAAAAAAAAAAAAAAAA==}
+}
\ No newline at end of file
diff --git a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/HTML/HTML.mdo b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/HTML/HTML.mdo
similarity index 100%
rename from src/test/resources/metadata/edt_3_18/src/CommonTemplates/HTML/HTML.mdo
rename to src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/HTML/HTML.mdo
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260/\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.geos"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
diff --git "a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
new file mode 100644
index 000000000..f0d4db2b4
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
@@ -0,0 +1,17 @@
+
+
+ style:FieldBackColor
+ true
+ Lines
+ 20
+ 20
+
+ 10
+ 10
+ 10
+ 10
+ false
+ Auto
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265/\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.mdo"
diff --git "a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat"
new file mode 100644
index 000000000..3a8d405d9
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/Template.dcsat"
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217/\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.mdo"
diff --git "a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs"
new file mode 100644
index 000000000..157f5aee1
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\241\320\232\320\224/Template.dcs"
@@ -0,0 +1,8 @@
+
+
+
+ Основной
+ Основной
+
+
+
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\241\320\232\320\224/\320\241\320\232\320\224.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/Template.txt"
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.mdo"
diff --git a/src/test/resources/metadata/edt_3_18/src/Configuration/Configuration.mdo b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Configuration/Configuration.mdo
similarity index 100%
rename from src/test/resources/metadata/edt_3_18/src/Configuration/Configuration.mdo
rename to src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Configuration/Configuration.mdo
diff --git a/src/test/resources/metadata/edt_3_18/src/Configuration/ManagedApplicationModule.bsl b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Configuration/ManagedApplicationModule.bsl
similarity index 100%
rename from src/test/resources/metadata/edt_3_18/src/Configuration/ManagedApplicationModule.bsl
rename to src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Configuration/ManagedApplicationModule.bsl
diff --git "a/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
new file mode 100644
index 000000000..c3f9962df
--- /dev/null
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
@@ -0,0 +1,201 @@
+
+
+
+ Номер
+ 1
+ true
+ true
+
+ true
+
+
+ Объект.Number
+
+
+ НомерРасширеннаяПодсказка
+ 3
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ НомерКонтекстноеМеню
+ 2
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Реквизит1
+ 7
+ true
+ true
+
+ true
+
+
+ Объект.Реквизит1
+
+
+ Реквизит1РасширеннаяПодсказка
+ 9
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ Реквизит1КонтекстноеМеню
+ 8
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ Enter
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ Дата
+ 4
+ true
+ true
+
+ true
+
+
+ Объект.Date
+
+
+ ДатаРасширеннаяПодсказка
+ 6
+ true
+ true
+
+ true
+
+ Label
+ true
+ true
+
+ Left
+
+
+
+ ДатаКонтекстноеМеню
+ 5
+ true
+ true
+
+ true
+
+ true
+
+ InputField
+ EnterOnInput
+ true
+ Left
+ true
+
+ true
+ true
+ true
+ true
+ true
+ true
+
+
+
+ ФормаКоманднаяПанель
+ -1
+ true
+ true
+
+ true
+
+ Left
+ true
+
+
+ OnCreateAtServer
+ ПриСозданииНаСервере
+
+ true
+ true
+ Vertical
+ true
+ true
+ true
+ true
+ true
+
+ Объект
+ 1
+
+ DocumentObject.Документ1
+
+
+ true
+
+
+ true
+
+
+ Объект.RegisterRecords
+
+ true
+ true
+
+
+
+
+
+
+ true
+
+
diff --git "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260/\320\227\320\260\320\272\320\260\320\267\320\232\320\273\320\270\320\265\320\275\321\202\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Documents/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263/\320\240\320\265\320\260\320\273\320\270\320\267\320\260\321\206\320\270\321\217\320\242\320\276\320\262\320\260\321\200\320\276\320\262\320\243\321\201\320\273\321\203\320\263.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_3_18/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.mdo"
similarity index 95%
rename from "src/test/resources/metadata/edt_3_18/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.mdo"
index 56d130890..6be674337 100644
--- "a/src/test/resources/metadata/edt_3_18/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.mdo"
+++ "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/IntegrationServices/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701/\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.mdo"
@@ -13,6 +13,7 @@
Имя
Receive
КаналСервисаИнтеграции1ОбработкаПолученияСообщения
+ true
@@ -20,5 +21,6 @@
КаналСервисаИнтеграции2
Имя
+ true
diff --git "a/src/test/resources/metadata/edt_3_18/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Roles/\320\240\320\276\320\273\321\2141/Rights.rights"
diff --git "a/src/test/resources/metadata/edt_3_18/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
diff --git "a/src/test/resources/metadata/edt_3_18/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses_3_18/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_3_18/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
diff --git a/src/test/resources/ext/edt/mdclasses_ext/configuration/.project b/src/test/resources/ext/edt/mdclasses_ext/configuration/.project
new file mode 100644
index 000000000..da9491652
--- /dev/null
+++ b/src/test/resources/ext/edt/mdclasses_ext/configuration/.project
@@ -0,0 +1,18 @@
+
+
+ configuration
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextBuilder
+
+
+
+
+
+ org.eclipse.xtext.ui.shared.xtextNature
+ com._1c.g5.v8.dt.core.V8ExtensionNature
+
+
diff --git a/src/test/resources/metadata/edt_ext/.settings/org.eclipse.core.resources.prefs b/src/test/resources/ext/edt/mdclasses_ext/configuration/.settings/org.eclipse.core.resources.prefs
similarity index 100%
rename from src/test/resources/metadata/edt_ext/.settings/org.eclipse.core.resources.prefs
rename to src/test/resources/ext/edt/mdclasses_ext/configuration/.settings/org.eclipse.core.resources.prefs
diff --git a/src/test/resources/metadata/edt_ext/DT-INF/PROJECT.PMF b/src/test/resources/ext/edt/mdclasses_ext/configuration/DT-INF/PROJECT.PMF
similarity index 100%
rename from src/test/resources/metadata/edt_ext/DT-INF/PROJECT.PMF
rename to src/test/resources/ext/edt/mdclasses_ext/configuration/DT-INF/PROJECT.PMF
diff --git "a/src/test/resources/metadata/edt_ext/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/AccumulationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2172.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2622.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2722.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommandGroups/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642/\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2642.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonAttributes/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021/\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/BaseForm/Form.form" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/BaseForm/Form.form"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/\320\244\320\276\321\200\320\274\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Form.form"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Form.form"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/\320\244\320\276\321\200\320\274\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/\320\244\320\276\321\200\320\274\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/\320\244\320\276\321\200\320\274\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/\320\244\320\276\321\200\320\274\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\2621.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.mdo"
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/Module.bsl" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
similarity index 100%
rename from "src/test/resources/metadata/edt/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201/Module.bsl"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonPictures/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602/\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/\320\234\320\260\320\272\320\265\321\202.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/\320\234\320\260\320\272\320\265\321\202.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/\320\234\320\260\320\272\320\265\321\202.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/\320\234\320\260\320\272\320\265\321\202.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021/\320\234\320\260\320\272\320\265\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021/\320\234\320\260\320\272\320\265\321\2021.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021/\320\234\320\260\320\272\320\265\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\2021/\320\234\320\260\320\272\320\265\321\2021.mdo"
diff --git a/src/test/resources/metadata/edt_ext/src/Configuration/Configuration.mdo b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Configuration/Configuration.mdo
similarity index 100%
rename from src/test/resources/metadata/edt_ext/src/Configuration/Configuration.mdo
rename to src/test/resources/ext/edt/mdclasses_ext/configuration/src/Configuration/Configuration.mdo
diff --git "a/src/test/resources/metadata/edt_ext/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/DefinedTypes/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771/\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/DocumentNumerators/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2652.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/EventSubscriptions/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651/\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptions/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172/\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2172.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2712.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012/HTTP\320\241\320\265\321\200\320\262\320\270\321\2012.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2712.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2713.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2714.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Reports/\320\236\321\202\321\207\320\265\321\2022/\320\236\321\202\321\207\320\265\321\2022.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2022/\320\236\321\202\321\207\320\265\321\2022.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Reports/\320\236\321\202\321\207\320\265\321\2022/\320\236\321\202\321\207\320\265\321\2022.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Reports/\320\236\321\202\321\207\320\265\321\2022/\320\236\321\202\321\207\320\265\321\2022.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Roles/\320\240\320\276\320\273\321\2141/\320\240\320\276\320\273\321\2141.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Roles/\320\240\320\276\320\273\321\2142/Rights.rights" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Roles/\320\240\320\276\320\273\321\2142/Rights.rights"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Roles/\320\240\320\276\320\273\321\2142/Rights.rights"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Roles/\320\240\320\276\320\273\321\2142/Rights.rights"
diff --git "a/src/test/resources/metadata/edt_ext/src/Roles/\320\240\320\276\320\273\321\2142/\320\240\320\276\320\273\321\2142.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Roles/\320\240\320\276\320\273\321\2142/\320\240\320\276\320\273\321\2142.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Roles/\320\240\320\276\320\273\321\2142/\320\240\320\276\320\273\321\2142.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Roles/\320\240\320\276\320\273\321\2142/\320\240\320\276\320\273\321\2142.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/ScheduledJobs/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651/\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/SessionParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/StyleItems/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172/\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2172.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/Tasks/\320\227\320\260\320\264\320\260\321\207\320\2601/\320\227\320\260\320\264\320\260\321\207\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/WS\320\241\321\201\321\213\320\273\320\272\320\2601.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/WS\320\241\321\201\321\213\320\273\320\272\320\2601.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/WS\320\241\321\201\321\213\320\273\320\272\320\2601.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/WS\320\241\321\201\321\213\320\273\320\272\320\2601.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WS\320\241\321\201\321\213\320\273\320\272\320\2602.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WS\320\241\321\201\321\213\320\273\320\272\320\2602.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WS\320\241\321\201\321\213\320\273\320\272\320\2602.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WS\320\241\321\201\321\213\320\273\320\272\320\2602.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WsDefinitions.wsdl" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WsDefinitions.wsdl"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WsDefinitions.wsdl"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2602/WsDefinitions.wsdl"
diff --git "a/src/test/resources/metadata/edt_ext/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Web\320\241\320\265\321\200\320\262\320\270\321\2011.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012/Web\320\241\320\265\321\200\320\262\320\270\321\2012.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012/Web\320\241\320\265\321\200\320\262\320\270\321\2012.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012/Web\320\241\320\265\321\200\320\262\320\270\321\2012.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2012/Web\320\241\320\265\321\200\320\262\320\270\321\2012.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO1/\320\237\320\260\320\272\320\265\321\202XDTO1.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2/\320\237\320\260\320\272\320\265\321\202XDTO2.mdo" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2/\320\237\320\260\320\272\320\265\321\202XDTO2.mdo"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2/\320\237\320\260\320\272\320\265\321\202XDTO2.mdo"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/src/XDTOPackages/\320\237\320\260\320\272\320\265\321\202XDTO2/\320\237\320\260\320\272\320\265\321\202XDTO2.mdo"
diff --git "a/src/test/resources/metadata/edt_ext/unknown/Styles/\320\241\321\202\320\270\320\273\321\2141.xml" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/unknown/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
diff --git "a/src/test/resources/metadata/edt_ext/unknown/Styles/\320\241\321\202\320\270\320\273\321\2142.xml" "b/src/test/resources/ext/edt/mdclasses_ext/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\2142.xml"
similarity index 100%
rename from "src/test/resources/metadata/edt_ext/unknown/Styles/\320\241\321\202\320\270\320\273\321\2142.xml"
rename to "src/test/resources/ext/edt/mdclasses_ext/configuration/unknown/Styles/\320\241\321\202\320\270\320\273\321\2142.xml"
diff --git a/src/test/resources/ext/edt/ssl_3_1 b/src/test/resources/ext/edt/ssl_3_1
new file mode 160000
index 000000000..71ad5a0b8
--- /dev/null
+++ b/src/test/resources/ext/edt/ssl_3_1
@@ -0,0 +1 @@
+Subproject commit 71ad5a0b8806aab90906765330030af710a5f4c5
diff --git "a/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260.json" "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260.json"
new file mode 100644
index 000000000..5333a3bcd
--- /dev/null
+++ "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260.json"
@@ -0,0 +1,162 @@
+{"com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor": {
+ "attributes": [
+ {
+ "uuid": "bdbc7de7-e212-4c0e-a7c7-db82c215f725",
+ "name": "РеквизитОбработки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.Attribute.РеквизитОбработки",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.Реквизит.РеквизитОбработки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит обработки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_DATA_PROCESSOR",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "configurationSource": "DESIGNER",
+ "forms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ 1
+ ],
+ "name": "ТестоваяВнешняяОбработка",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тестовая внешняя обработка"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "ad429002-8810-4537-9a1d-2e843fea4982",
+ "name": "ТабличнаяЧастьОбработки",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.TabularSection.ТабличнаяЧастьОбработки",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.ТабличнаяЧасть.ТабличнаяЧастьОбработки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Табличная часть обработки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ {
+ "uuid": "28233ec8-4d29-4d09-869d-1bc06c589b07",
+ "name": "РеквизитТЧ",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.TabularSection.ТабличнаяЧастьОбработки.Attribute.РеквизитТЧ",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.ТабличнаяЧасть.ТабличнаяЧастьОбработки.Реквизит.РеквизитТЧ"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит ТЧ"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "edd30b01-8ffc-4eb1-acb4-887081e25587",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.Template.Макет",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "4c1090aa-a76e-4693-87c0-6f4b7494467d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260_edt.json" "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260_edt.json"
new file mode 100644
index 000000000..d2d9f7ddf
--- /dev/null
+++ "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\320\260\321\217\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\260_edt.json"
@@ -0,0 +1,162 @@
+{"com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor": {
+ "attributes": [
+ {
+ "uuid": "bdbc7de7-e212-4c0e-a7c7-db82c215f725",
+ "name": "РеквизитОбработки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.Attribute.РеквизитОбработки",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.Реквизит.РеквизитОбработки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит обработки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_DATA_PROCESSOR",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "configurationSource": "EDT",
+ "forms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ 1
+ ],
+ "name": "ТестоваяВнешняяОбработка",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тестовая внешняя обработка"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "ad429002-8810-4537-9a1d-2e843fea4982",
+ "name": "ТабличнаяЧастьОбработки",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.TabularSection.ТабличнаяЧастьОбработки",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.ТабличнаяЧасть.ТабличнаяЧастьОбработки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Табличная часть обработки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ {
+ "uuid": "28233ec8-4d29-4d09-869d-1bc06c589b07",
+ "name": "РеквизитТЧ",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.TabularSection.ТабличнаяЧастьОбработки.Attribute.РеквизитТЧ",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.ТабличнаяЧасть.ТабличнаяЧастьОбработки.Реквизит.РеквизитТЧ"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит ТЧ"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "edd30b01-8ffc-4eb1-acb4-887081e25587",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataProcessor.ТестоваяВнешняяОбработка.Template.Макет",
+ "mdoRefRu": "ВнешняяОбработка.ТестоваяВнешняяОбработка.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "4c1090aa-a76e-4693-87c0-6f4b7494467d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202.json" "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202.json"
new file mode 100644
index 000000000..93b5ab3d0
--- /dev/null
+++ "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202.json"
@@ -0,0 +1,169 @@
+{"com.github._1c_syntax.bsl.mdclasses.ExternalReport": {
+ "attributes": [
+ {
+ "uuid": "1b1c36ee-1c6e-4246-9581-a23287e05204",
+ "name": "РевзитОтчета",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.Attribute.РевзитОтчета",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.Реквизит.РевзитОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ревзит отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_REPORT",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "configurationSource": "DESIGNER",
+ "forms": [
+ [
+ 5
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ 1
+ ],
+ "name": "ТестовыйВнешнийОтчет",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тестовый внешний отчет"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "0bdfbd01-b2c1-4ea9-93e2-77b585cb10bb",
+ "name": "ТабличнаяЧасть",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.TabularSection.ТабличнаяЧасть",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.ТабличнаяЧасть.ТабличнаяЧасть"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Табличная часть"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ {
+ "uuid": "397c0640-f782-4090-a3d6-5715a8ecf85c",
+ "name": "РеквизитТЧ",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.TabularSection.ТабличнаяЧасть.Attribute.РеквизитТЧ",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.ТабличнаяЧасть.ТабличнаяЧасть.Реквизит.РеквизитТЧ"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит ТЧ"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "253891b9-85eb-4e50-ad33-592e87500b31",
+ "name": "ОсновнаяСхемаКомпоновкиДанных",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.Template.ОсновнаяСхемаКомпоновкиДанных",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.Макет.ОсновнаяСхемаКомпоновкиДанных"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основная схема компоновки данных"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ 1
+ ],
+ "plainDataSets": [
+ 1
+ ],
+ "dataPath": "src/test/resources/ext/designer/external/src/erf/ТестовыйВнешнийОтчет/Templates/ОсновнаяСхемаКомпоновкиДанных/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "0e130a7c-7f6b-41c4-94bc-ad4473b89915"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202_edt.json" "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202_edt.json"
new file mode 100644
index 000000000..f6084b8b3
--- /dev/null
+++ "b/src/test/resources/fixtures/external/\320\242\320\265\321\201\321\202\320\276\320\262\321\213\320\271\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\236\321\202\321\207\320\265\321\202_edt.json"
@@ -0,0 +1,169 @@
+{"com.github._1c_syntax.bsl.mdclasses.ExternalReport": {
+ "attributes": [
+ {
+ "uuid": "1b1c36ee-1c6e-4246-9581-a23287e05204",
+ "name": "РевзитОтчета",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.Attribute.РевзитОтчета",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.Реквизит.РевзитОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ревзит отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_REPORT",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "configurationSource": "EDT",
+ "forms": [
+ [
+ 5
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ 1
+ ],
+ "name": "ТестовыйВнешнийОтчет",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тестовый внешний отчет"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "0bdfbd01-b2c1-4ea9-93e2-77b585cb10bb",
+ "name": "ТабличнаяЧасть",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.TabularSection.ТабличнаяЧасть",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.ТабличнаяЧасть.ТабличнаяЧасть"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Табличная часть"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ {
+ "uuid": "397c0640-f782-4090-a3d6-5715a8ecf85c",
+ "name": "РеквизитТЧ",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.TabularSection.ТабличнаяЧасть.Attribute.РеквизитТЧ",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.ТабличнаяЧасть.ТабличнаяЧасть.Реквизит.РеквизитТЧ"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит ТЧ"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "253891b9-85eb-4e50-ad33-592e87500b31",
+ "name": "ОсновнаяСхемаКомпоновкиДанных",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalReport.ТестовыйВнешнийОтчет.Template.ОсновнаяСхемаКомпоновкиДанных",
+ "mdoRefRu": "ВнешнийОтчет.ТестовыйВнешнийОтчет.Макет.ОсновнаяСхемаКомпоновкиДанных"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основная схема компоновки данных"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ 1
+ ],
+ "plainDataSets": [
+ 1
+ ],
+ "dataPath": "src/test/resources/ext/edt/external/src/ExternalReports/ТестовыйВнешнийОтчет/Templates/ОсновнаяСхемаКомпоновкиДанных/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ExternalReport/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "0e130a7c-7f6b-41c4-94bc-ad4473b89915"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/AccountingRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.json" "b/src/test/resources/fixtures/mdclasses/AccountingRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.json"
new file mode 100644
index 000000000..aa04612cc
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/AccountingRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2701.json"
@@ -0,0 +1,78 @@
+{"com.github._1c_syntax.bsl.mdo.AccountingRegister": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ {
+ "uuid": "902c08a9-e457-436a-b0fb-b996f0d9bb00",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.AccountingRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [],
+ "name": "РегистрБухгалтерии1",
+ "objectBelonging": "OWN",
+ "resources": [
+ {
+ "uuid": "e88df8bd-bf97-41a4-88fc-09c84a51824b",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.AccountingRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.AccountingRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр бухгалтерии"
+ ],
+ [
+ "en",
+ "Accounting register"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "e5930f2f-15d9-48a1-ac69-379ad990b02a"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/AccumulationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.json" "b/src/test/resources/fixtures/mdclasses/AccumulationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.json"
new file mode 100644
index 000000000..daabc2d97
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/AccumulationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\235\320\260\320\272\320\276\320\277\320\273\320\265\320\275\320\270\321\2171.json"
@@ -0,0 +1,74 @@
+{"com.github._1c_syntax.bsl.mdo.AccumulationRegister": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ {
+ "uuid": "461cae93-fe90-4bbb-8f79-0963e2d39ec5",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.AccumulationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [],
+ "name": "РегистрНакопления1",
+ "objectBelonging": "OWN",
+ "resources": [
+ {
+ "uuid": "a187a281-f5cd-4e1c-8f3f-37212a840339",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.AccumulationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.AccumulationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр накопления"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "8ea07f36-d671-4649-bc7a-94daa939e77f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/BusinessProcesses.\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.json" "b/src/test/resources/fixtures/mdclasses/BusinessProcesses.\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.json"
new file mode 100644
index 000000000..637975b6e
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/BusinessProcesses.\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011.json"
@@ -0,0 +1,31 @@
+{"com.github._1c_syntax.bsl.mdo.BusinessProcess": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/BusinessProcesses/БизнесПроцесс1/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "БизнесПроцесс1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "560a32ca-028d-4b88-b6f2-6b7212bf31f8"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/BusinessProcesses.\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011_edt.json" "b/src/test/resources/fixtures/mdclasses/BusinessProcesses.\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011_edt.json"
new file mode 100644
index 000000000..efc873dd4
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/BusinessProcesses.\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011_edt.json"
@@ -0,0 +1,31 @@
+{"com.github._1c_syntax.bsl.mdo.BusinessProcess": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/BusinessProcesses/БизнесПроцесс1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "БизнесПроцесс1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "560a32ca-028d-4b88-b6f2-6b7212bf31f8"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CalculationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.json" "b/src/test/resources/fixtures/mdclasses/CalculationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.json"
new file mode 100644
index 000000000..caecbaeb7
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CalculationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.json"
@@ -0,0 +1,116 @@
+{"com.github._1c_syntax.bsl.mdo.CalculationRegister": {
+ "attributes": [],
+ "children": [
+ {
+ "uuid": "86f41061-e298-4da5-8d28-489a349d55fc",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "f3e7cca5-4902-4ad5-96c7-db8336f52c6e",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": true,
+ "useInTotals": true
+ },
+ {
+ "uuid": "16b54095-8711-4ef1-a38b-93d12f6f6e93",
+ "name": "Перерасчет",
+ "mdoReference": {
+ "type": "RECALCULATION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Recalculation.Перерасчет",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Перерасчет.Перерасчет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перерасчет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "RecalculationModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CalculationRegisters/РегистрРасчета1/Recalculations/Перерасчет/Ext/RecordSetModule.bin",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Recalculation/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": true
+ }
+ ]
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Dimension"
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner"
+ },
+ "modules": [],
+ "name": "РегистрРасчета1",
+ "objectBelonging": "OWN",
+ "recalculations": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Recalculation"
+ }
+ ],
+ "resources": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/synonym"
+ },
+ "templates": [],
+ "uuid": "90587c7d-b950-4476-ac14-426e4a83d9c4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CalculationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/CalculationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601_edt.json"
new file mode 100644
index 000000000..a0fd32f02
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CalculationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601_edt.json"
@@ -0,0 +1,116 @@
+{"com.github._1c_syntax.bsl.mdo.CalculationRegister": {
+ "attributes": [],
+ "children": [
+ {
+ "uuid": "86f41061-e298-4da5-8d28-489a349d55fc",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "f3e7cca5-4902-4ad5-96c7-db8336f52c6e",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": true,
+ "useInTotals": true
+ },
+ {
+ "uuid": "16b54095-8711-4ef1-a38b-93d12f6f6e93",
+ "name": "Перерасчет",
+ "mdoReference": {
+ "type": "RECALCULATION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Recalculation.Перерасчет",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Перерасчет.Перерасчет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перерасчет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "RecalculationModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CalculationRegisters/РегистрРасчета1/Recalculations/Перерасчет/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Recalculation/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": true
+ }
+ ]
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Dimension"
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner"
+ },
+ "modules": [],
+ "name": "РегистрРасчета1",
+ "objectBelonging": "OWN",
+ "recalculations": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Recalculation"
+ }
+ ],
+ "resources": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/synonym"
+ },
+ "templates": [],
+ "uuid": "90587c7d-b950-4476-ac14-426e4a83d9c4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json" "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json"
new file mode 100644
index 000000000..68baea4a7
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721.json"
@@ -0,0 +1,768 @@
+{"com.github._1c_syntax.bsl.mdo.Catalog": {
+ "attributes": [
+ [
+ {
+ "uuid": "f4b6bb58-962f-4811-809c-84514f07f16d",
+ "name": "Реквизит1",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.Attribute.Реквизит1",
+ "mdoRefRu": "Справочник.Справочник1.Реквизит.Реквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "dff5b5d8-762d-4490-a336-dcc8d93c17d5",
+ "name": "Реквизит2",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.Attribute.Реквизит2",
+ "mdoRefRu": "Справочник.Справочник1.Реквизит.Реквизит2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ecd3c57a-75c8-474c-9c48-ac4c3831ab15",
+ "name": "Реквизит3",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.Attribute.Реквизит3",
+ "mdoRefRu": "Справочник.Справочник1.Реквизит.Реквизит3"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [
+ {
+ "uuid": "342ec3c7-82d4-42bb-a5ff-8a756f110744",
+ "name": "Команда1",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Справочник1.Command.Команда1",
+ "mdoRefRu": "Справочник.Справочник1.Команда.Команда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Commands/Команда1/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/commands/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "175b035e-ee35-4fdf-a8b4-c30ce49dee61",
+ "name": "ФормаЭлемента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Справочник1.Form.ФормаЭлемента",
+ "mdoRefRu": "Справочник.Справочник1.Форма.ФормаЭлемента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма элемента"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Forms/ФормаЭлемента/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Forms/ФормаЭлемента/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Код",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Code",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 10,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 13,
+ "name": "Предопределенный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Predefined",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "ИмяПредопределенныхДанных",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.PredefinedDataName",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 19,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "1feb8a5b-989e-440d-afe3-9472183c335c",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Справочник1.Form.ФормаСписка",
+ "mdoRefRu": "Справочник.Справочник1.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ },
+ {
+ "id": 2,
+ "name": "МойСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мой список"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "3b3346ea-1b32-4a2c-b3a6-1a9651659f0c",
+ "name": "ФормаВыбора",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Справочник1.Form.ФормаВыбора",
+ "mdoRefRu": "Справочник.Справочник1.Форма.ФормаВыбора"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма выбора"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Forms/ФормаВыбора/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Forms/ФормаВыбора/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [
+ {
+ "event": "ExternalEvent",
+ "name": "ВнешнееСобытие"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 3,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 19,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Код",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Code",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "Предопределенный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Predefined",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 31,
+ "name": "ИмяПредопределенныхДанных",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.PredefinedDataName",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 40,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Catalogs/Справочник1/Ext/ObjectModule.bin",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": true
+ }
+ ],
+ "name": "Справочник1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "tabularSections": [
+ {
+ "uuid": "451202c5-b1af-4bce-a705-0b5570071588",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "5e4add7a-846d-4242-a919-97dabde8d54b",
+ "name": "Реквизит11",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит11",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит11"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "7580cfcb-eadd-4bfe-8199-ce1c14867e10",
+ "name": "Реквизит22",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит22",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит22"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "42def71b-52cc-4e34-8a08-82f0dfcd47bf",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Catalog.Справочник1.Template.Макет",
+ "mdoRefRu": "Справочник.Справочник1.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "eeef463d-d5e7-42f2-ae53-10279661f59d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json" "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json"
new file mode 100644
index 000000000..80d18e0e3
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Catalogs.\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721_edt.json"
@@ -0,0 +1,768 @@
+{"com.github._1c_syntax.bsl.mdo.Catalog": {
+ "attributes": [
+ [
+ {
+ "uuid": "f4b6bb58-962f-4811-809c-84514f07f16d",
+ "name": "Реквизит1",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.Attribute.Реквизит1",
+ "mdoRefRu": "Справочник.Справочник1.Реквизит.Реквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "dff5b5d8-762d-4490-a336-dcc8d93c17d5",
+ "name": "Реквизит2",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.Attribute.Реквизит2",
+ "mdoRefRu": "Справочник.Справочник1.Реквизит.Реквизит2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ecd3c57a-75c8-474c-9c48-ac4c3831ab15",
+ "name": "Реквизит3",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.Attribute.Реквизит3",
+ "mdoRefRu": "Справочник.Справочник1.Реквизит.Реквизит3"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [
+ {
+ "uuid": "342ec3c7-82d4-42bb-a5ff-8a756f110744",
+ "name": "Команда1",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Справочник1.Command.Команда1",
+ "mdoRefRu": "Справочник.Справочник1.Команда.Команда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Commands/Команда1/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/commands/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "175b035e-ee35-4fdf-a8b4-c30ce49dee61",
+ "name": "ФормаЭлемента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Справочник1.Form.ФормаЭлемента",
+ "mdoRefRu": "Справочник.Справочник1.Форма.ФормаЭлемента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма элемента"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Forms/ФормаЭлемента/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Forms/ФормаЭлемента/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Код",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Code",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 10,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 13,
+ "name": "Предопределенный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Predefined",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "ИмяПредопределенныхДанных",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.PredefinedDataName",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 19,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "1feb8a5b-989e-440d-afe3-9472183c335c",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Справочник1.Form.ФормаСписка",
+ "mdoRefRu": "Справочник.Справочник1.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Forms/ФормаСписка/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ },
+ {
+ "id": 2,
+ "name": "МойСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мой список"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "3b3346ea-1b32-4a2c-b3a6-1a9651659f0c",
+ "name": "ФормаВыбора",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Справочник1.Form.ФормаВыбора",
+ "mdoRefRu": "Справочник.Справочник1.Форма.ФормаВыбора"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма выбора"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Forms/ФормаВыбора/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/Forms/ФормаВыбора/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [
+ {
+ "event": "ExternalEvent",
+ "name": "ВнешнееСобытие"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 3,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 19,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Код",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Code",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "Предопределенный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Predefined",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 31,
+ "name": "ИмяПредопределенныхДанных",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.PredefinedDataName",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 40,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Catalogs/Справочник1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": true
+ }
+ ],
+ "name": "Справочник1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "tabularSections": [
+ {
+ "uuid": "451202c5-b1af-4bce-a705-0b5570071588",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "5e4add7a-846d-4242-a919-97dabde8d54b",
+ "name": "Реквизит11",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит11",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит11"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "7580cfcb-eadd-4bfe-8199-ce1c14867e10",
+ "name": "Реквизит22",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит22",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит22"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "42def71b-52cc-4e34-8a08-82f0dfcd47bf",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Catalog.Справочник1.Template.Макет",
+ "mdoRefRu": "Справочник.Справочник1.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "eeef463d-d5e7-42f2-ae53-10279661f59d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ChartsOfAccounts.\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.json" "b/src/test/resources/fixtures/mdclasses/ChartsOfAccounts.\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.json"
new file mode 100644
index 000000000..7713ae2fb
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ChartsOfAccounts.\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621.json"
@@ -0,0 +1,95 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfAccounts": {
+ "accountingFlags": [
+ {
+ "uuid": "957a5154-1e63-49e1-8e99-3893490da6f6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.AccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчета.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "allAttributes": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag"
+ },
+ {
+ "uuid": "4f04d72a-e3e9-4e9b-96da-7d0e1ad989e6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "EXT_DIMENSION_ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.ExtDimensionAccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчетаСубконто.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "extDimensionAccountingFlags": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/allAttributes/com.github._1c_syntax.bsl.mdo.children.ExtDimensionAccountingFlag"
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ChartsOfAccounts/ПланСчетов1/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ПланСчетов1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "2766f353-abd2-4e7f-9a95-53f05c83f5d4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ChartsOfAccounts.\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621_edt.json" "b/src/test/resources/fixtures/mdclasses/ChartsOfAccounts.\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621_edt.json"
new file mode 100644
index 000000000..fd9161e07
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ChartsOfAccounts.\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621_edt.json"
@@ -0,0 +1,95 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfAccounts": {
+ "accountingFlags": [
+ {
+ "uuid": "957a5154-1e63-49e1-8e99-3893490da6f6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.AccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчета.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "allAttributes": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag"
+ },
+ {
+ "uuid": "4f04d72a-e3e9-4e9b-96da-7d0e1ad989e6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "EXT_DIMENSION_ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.ExtDimensionAccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчетаСубконто.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "extDimensionAccountingFlags": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/allAttributes/com.github._1c_syntax.bsl.mdo.children.ExtDimensionAccountingFlag"
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfAccounts/ПланСчетов1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/accountingFlags/com.github._1c_syntax.bsl.mdo.children.AccountingFlag/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ПланСчетов1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "2766f353-abd2-4e7f-9a95-53f05c83f5d4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ChartsOfCalculationTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.json" "b/src/test/resources/fixtures/mdclasses/ChartsOfCalculationTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.json"
new file mode 100644
index 000000000..b94b359e0
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ChartsOfCalculationTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.json"
@@ -0,0 +1,21 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfCalculationTypes": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "CHART_OF_CALCULATION_TYPES",
+ "mdoRef": "ChartOfCalculationTypes.ПланВидовРасчета1",
+ "mdoRefRu": "ПланВидовРасчета.ПланВидовРасчета1"
+ },
+ "modules": [],
+ "name": "ПланВидовРасчета1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "1755c534-9ccd-49c4-9f8b-2aa066424aaa"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ChartsOfCharacteristicTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.json" "b/src/test/resources/fixtures/mdclasses/ChartsOfCharacteristicTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.json"
new file mode 100644
index 000000000..0580cb0c5
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ChartsOfCharacteristicTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721.json"
@@ -0,0 +1,40 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ChartsOfCharacteristicTypes/ПланВидовХарактеристик1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ChartsOfCharacteristicTypes/ПланВидовХарактеристик1/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ПланВидовХарактеристик1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "f53a24c3-f1dc-43b7-8dcf-eeb8c0b7f452"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ChartsOfCharacteristicTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721_edt.json" "b/src/test/resources/fixtures/mdclasses/ChartsOfCharacteristicTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721_edt.json"
new file mode 100644
index 000000000..d83a59221
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ChartsOfCharacteristicTypes.\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721_edt.json"
@@ -0,0 +1,40 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/ПланВидовХарактеристик1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ChartsOfCharacteristicTypes/ПланВидовХарактеристик1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ПланВидовХарактеристик1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "f53a24c3-f1dc-43b7-8dcf-eeb8c0b7f452"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommandGroups.\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.json" "b/src/test/resources/fixtures/mdclasses/CommandGroups.\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.json"
new file mode 100644
index 000000000..61e3cd953
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommandGroups.\320\223\321\200\321\203\320\277\320\277\320\260\320\232\320\276\320\274\320\260\320\275\320\2641.json"
@@ -0,0 +1,15 @@
+{"com.github._1c_syntax.bsl.mdo.CommandGroup": {
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMAND_GROUP",
+ "mdoRef": "CommandGroup.ГруппаКоманд1",
+ "mdoRefRu": "ГруппаКоманд.ГруппаКоманд1"
+ },
+ "name": "ГруппаКоманд1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "9bd3b0b1-b276-4b0e-9811-44a41ebb0c7c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonAttributes.\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.json" "b/src/test/resources/fixtures/mdclasses/CommonAttributes.\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.json"
new file mode 100644
index 000000000..5d164bf11
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonAttributes.\320\236\320\261\321\211\320\270\320\271\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\2021.json"
@@ -0,0 +1,54 @@
+{"com.github._1c_syntax.bsl.mdo.CommonAttribute": {
+ "authenticationSeparation": "DONT_USE",
+ "autoUse": "USE",
+ "comment": "",
+ "conditionalSeparation": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "configurationExtensionsSeparation": "DONT_USE",
+ "content": [
+ [
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "use": "DONT_USE"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "use": "USE"
+ }
+ ],
+ []
+ ],
+ "dataSeparation": "DONT_USE",
+ "dataSeparationUse": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonAttribute/conditionalSeparation"
+ },
+ "dataSeparationValue": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonAttribute/conditionalSeparation"
+ },
+ "indexing": "DONT_INDEX",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "name": "ОбщийРеквизит1",
+ "objectBelonging": "OWN",
+ "passwordMode": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "usersSeparation": "DONT_USE",
+ "uuid": "d4f0c0ac-ed26-4085-a1b4-e52314b973ad"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonCommands.\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.json" "b/src/test/resources/fixtures/mdclasses/CommonCommands.\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.json"
new file mode 100644
index 000000000..50a4528e4
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonCommands.\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601.json"
@@ -0,0 +1,26 @@
+{"com.github._1c_syntax.bsl.mdo.CommonCommand": {
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОбщаяКоманда1",
+ "mdoRefRu": "ОбщаяКоманда.ОбщаяКоманда1"
+ },
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonCommands/ОбщаяКоманда1/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ОбщаяКоманда1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "a608f796-f58e-4f8a-b63f-272342b32f35"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonCommands.\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonCommands.\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601_edt.json"
new file mode 100644
index 000000000..5187fe807
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonCommands.\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2601_edt.json"
@@ -0,0 +1,26 @@
+{"com.github._1c_syntax.bsl.mdo.CommonCommand": {
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОбщаяКоманда1",
+ "mdoRefRu": "ОбщаяКоманда.ОбщаяКоманда1"
+ },
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonCommands/ОбщаяКоманда1/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ОбщаяКоманда1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "a608f796-f58e-4f8a-b63f-272342b32f35"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonForms.\320\244\320\276\321\200\320\274\320\260.json" "b/src/test/resources/fixtures/mdclasses/CommonForms.\320\244\320\276\321\200\320\274\320\260.json"
new file mode 100644
index 000000000..7cf5df75d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonForms.\320\244\320\276\321\200\320\274\320\260.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonForm": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/CommonForms/Форма/Ext/Form.xml",
+ "title": {
+ "content": []
+ },
+ "handlers": [],
+ "items": [],
+ "attributes": []
+ },
+ "formType": "MANAGED",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Форма",
+ "mdoRefRu": "ОбщаяФорма.Форма"
+ },
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonForms/Форма/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Форма",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "uuid": "5ac59104-28a5-40b1-ab5b-2857fb41991a"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonForms.\320\244\320\276\321\200\320\274\320\260_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonForms.\320\244\320\276\321\200\320\274\320\260_edt.json"
new file mode 100644
index 000000000..6c013d56b
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonForms.\320\244\320\276\321\200\320\274\320\260_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonForm": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/Форма/Form.form",
+ "title": {
+ "content": []
+ },
+ "handlers": [],
+ "items": [],
+ "attributes": []
+ },
+ "formType": "MANAGED",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Форма",
+ "mdoRefRu": "ОбщаяФорма.Форма"
+ },
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/Форма/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Форма",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "uuid": "5ac59104-28a5-40b1-ab5b-2857fb41991a"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.json"
new file mode 100644
index 000000000..f31eff549
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": true,
+ "clientOrdinaryApplication": true,
+ "comment": "",
+ "externalConnection": true,
+ "global": true,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ГлобальныйОбщийМодуль",
+ "mdoRefRu": "ОбщийМодуль.ГлобальныйОбщийМодуль"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ГлобальныйОбщийМодуль",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Глобальный общий модуль"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonModules/ГлобальныйОбщийМодуль/Ext/Module.bsl",
+ "uuid": "9e9c021c-bdbd-4804-a53a-9442ba9eb18c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214_edt.json"
new file mode 100644
index 000000000..6a3a9012d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\223\320\273\320\276\320\261\320\260\320\273\321\214\320\275\321\213\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": true,
+ "clientOrdinaryApplication": true,
+ "comment": "",
+ "externalConnection": true,
+ "global": true,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ГлобальныйОбщийМодуль",
+ "mdoRefRu": "ОбщийМодуль.ГлобальныйОбщийМодуль"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ГлобальныйОбщийМодуль",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Глобальный общий модуль"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/ГлобальныйОбщийМодуль/Module.bsl",
+ "uuid": "9e9c021c-bdbd-4804-a53a-9442ba9eb18c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.json"
new file mode 100644
index 000000000..6159e95be
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульВызовСервера",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульВызовСервера"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульВызовСервера",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": true,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль вызов сервера"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonModules/ОбщийМодульВызовСервера/Ext/Module.bsl",
+ "uuid": "96504c9f-4126-439a-9c62-19f43d260c82"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260_edt.json"
new file mode 100644
index 000000000..c05a0353b
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\222\321\213\320\267\320\276\320\262\320\241\320\265\321\200\320\262\320\265\321\200\320\260_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульВызовСервера",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульВызовСервера"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульВызовСервера",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": true,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль вызов сервера"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/ОбщийМодульВызовСервера/Module.bsl",
+ "uuid": "96504c9f-4126-439a-9c62-19f43d260c82"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.json"
new file mode 100644
index 000000000..0c6ff071d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульПовтИспВызов",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульПовтИспВызов"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульПовтИспВызов",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DURING_REQUEST",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль повт исп вызов"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonModules/ОбщийМодульПовтИспВызов/Ext/Module.bsl",
+ "uuid": "d1bc1b16-1de7-4819-9ca8-01278d5e6f2e"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262_edt.json"
new file mode 100644
index 000000000..60bf1bfa4
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\222\321\213\320\267\320\276\320\262_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульПовтИспВызов",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульПовтИспВызов"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульПовтИспВызов",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DURING_REQUEST",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль повт исп вызов"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/ОбщийМодульПовтИспВызов/Module.bsl",
+ "uuid": "d1bc1b16-1de7-4819-9ca8-01278d5e6f2e"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.json"
new file mode 100644
index 000000000..f4cafeaae
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульПовтИспСеанс",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульПовтИспСеанс"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульПовтИспСеанс",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DURING_SESSION",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль повт исп сеанс"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonModules/ОбщийМодульПовтИспСеанс/Ext/Module.bsl",
+ "uuid": "a09f73b1-0058-4f3b-a22b-799ef3c2a33d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201_edt.json"
new file mode 100644
index 000000000..346e8d490
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\201_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульПовтИспСеанс",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульПовтИспСеанс"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульПовтИспСеанс",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DURING_SESSION",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль повт исп сеанс"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/ОбщийМодульПовтИспСеанс/Module.bsl",
+ "uuid": "a09f73b1-0058-4f3b-a22b-799ef3c2a33d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.json"
new file mode 100644
index 000000000..41f8651cf
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульПолныйеПрава",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульПолныйеПрава"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульПолныйеПрава",
+ "objectBelonging": "OWN",
+ "privileged": true,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль полныйе права"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonModules/ОбщийМодульПолныйеПрава/Ext/Module.bsl",
+ "uuid": "5733cabc-1b65-48f8-9ab6-269f1b73a21c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260_edt.json"
new file mode 100644
index 000000000..9d62900a0
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\273\320\275\321\213\320\271\320\265\320\237\321\200\320\260\320\262\320\260_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодульПолныйеПрава",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодульПолныйеПрава"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ОбщийМодульПолныйеПрава",
+ "objectBelonging": "OWN",
+ "privileged": true,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общий модуль полныйе права"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/ОбщийМодульПолныйеПрава/Module.bsl",
+ "uuid": "5733cabc-1b65-48f8-9ab6-269f1b73a21c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.json"
new file mode 100644
index 000000000..65049f555
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ПростойОбщийМодуль",
+ "mdoRefRu": "ОбщийМодуль.ПростойОбщийМодуль"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ПростойОбщийМодуль",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Простой общий модуль"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/CommonModules/ПростойОбщийМодуль/Ext/Module.bsl",
+ "uuid": "1be4af7e-334e-49fa-a9f9-d80c737ff954"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonModules.\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214_edt.json"
new file mode 100644
index 000000000..b069ecc91
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonModules.\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": false,
+ "comment": "",
+ "externalConnection": false,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ПростойОбщийМодуль",
+ "mdoRefRu": "ОбщийМодуль.ПростойОбщийМодуль"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "ПростойОбщийМодуль",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Простой общий модуль"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonModules/ПростойОбщийМодуль/Module.bsl",
+ "uuid": "1be4af7e-334e-49fa-a9f9-d80c737ff954"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonPictures.\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.json" "b/src/test/resources/fixtures/mdclasses/CommonPictures.\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.json"
new file mode 100644
index 000000000..554cf798b
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonPictures.\320\236\320\261\321\211\320\260\321\217\320\232\320\260\321\200\321\202\320\270\320\275\320\272\320\2601.json"
@@ -0,0 +1,17 @@
+{"com.github._1c_syntax.bsl.mdo.CommonPicture": {
+ "availabilityForAppearance": false,
+ "availabilityForChoice": false,
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.ОбщаяКартинка1",
+ "mdoRefRu": "ОбщаяКартинка.ОбщаяКартинка1"
+ },
+ "name": "ОбщаяКартинка1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "db84513d-2535-494b-843e-6d8931cb2f82"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses/CommonTemplates.Active.json b/src/test/resources/fixtures/mdclasses/CommonTemplates.Active.json
new file mode 100644
index 000000000..f19aba0c8
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses/CommonTemplates.Active.json
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.Active",
+ "mdoRefRu": "ОбщийМакет.Active"
+ },
+ "name": "Active",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Active"
+ ]
+ ]
+ },
+ "templateType": "ACTIVE_DOCUMENT",
+ "uuid": "557665fc-86f5-44e1-9801-490cea841718"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses/CommonTemplates.HTML.json b/src/test/resources/fixtures/mdclasses/CommonTemplates.HTML.json
new file mode 100644
index 000000000..195cfe55e
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses/CommonTemplates.HTML.json
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.HTML",
+ "mdoRefRu": "ОбщийМакет.HTML"
+ },
+ "name": "HTML",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "HTML"
+ ]
+ ]
+ },
+ "templateType": "HTML_DOCUMENT",
+ "uuid": "5d76084a-68fa-4579-91da-17d7ffab6225"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.json"
new file mode 100644
index 000000000..65374e4df
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\222\320\275\320\265\321\210\320\275\321\217\321\217\320\232\320\276\320\274\320\277\320\276\320\275\320\265\320\275\321\202\320\260.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.ВнешняяКомпонента",
+ "mdoRefRu": "ОбщийМакет.ВнешняяКомпонента"
+ },
+ "name": "ВнешняяКомпонента",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Внешняя компонента"
+ ]
+ ]
+ },
+ "templateType": "ADD_IN",
+ "uuid": "4a0dab22-affd-4887-a9b6-57a1e88f8377"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.json"
new file mode 100644
index 000000000..a11ade86b
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\223\320\265\320\276\320\263\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.ГеографическаяСхема",
+ "mdoRefRu": "ОбщийМакет.ГеографическаяСхема"
+ },
+ "name": "ГеографическаяСхема",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Географическая схема"
+ ]
+ ]
+ },
+ "templateType": "GEOGRAPHICAL_SCHEMA",
+ "uuid": "1d8d8dfc-e7c5-445a-a88d-6743faad2ab6"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.json"
new file mode 100644
index 000000000..98726d4ee
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.ГрафическаяСхема",
+ "mdoRefRu": "ОбщийМакет.ГрафическаяСхема"
+ },
+ "name": "ГрафическаяСхема",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графическая схема"
+ ]
+ ]
+ },
+ "templateType": "GRAPHICAL_SCHEME",
+ "uuid": "4333f027-4fc2-40a0-ae7d-48fbf0cea50b"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.json"
new file mode 100644
index 000000000..fc8ac3a3a
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\224\320\262\320\276\320\270\321\207\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.ДвоичныеДанные",
+ "mdoRefRu": "ОбщийМакет.ДвоичныеДанные"
+ },
+ "name": "ДвоичныеДанные",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Двоичные данные"
+ ]
+ ]
+ },
+ "templateType": "BINARY_DATA",
+ "uuid": "f4ab9283-1110-4808-9cbf-40c71ebb88a2"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.json"
new file mode 100644
index 000000000..699598b44
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\234\320\260\320\272\320\265\321\202\320\236\321\204\320\276\321\200\320\274\320\273\320\265\320\275\320\270\321\217.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.МакетОформления",
+ "mdoRefRu": "ОбщийМакет.МакетОформления"
+ },
+ "name": "МакетОформления",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет оформления"
+ ]
+ ]
+ },
+ "templateType": "DATA_COMPOSITION_APPEARANCE_TEMPLATE",
+ "uuid": "f6bbaf46-bc77-412b-9440-3032bfc06c57"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\241\320\232\320\224.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\241\320\232\320\224.json"
new file mode 100644
index 000000000..1269da362
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\241\320\232\320\224.json"
@@ -0,0 +1,27 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [],
+ "plainDataSets": [],
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/CommonTemplates/СКД/Ext/Template.xml"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.СКД",
+ "mdoRefRu": "ОбщийМакет.СКД"
+ },
+ "name": "СКД",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "СКД"
+ ]
+ ]
+ },
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "uuid": "8ae95178-7f50-4a77-aaf8-f8ffb72c65d4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\241\320\232\320\224_edt.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\241\320\232\320\224_edt.json"
new file mode 100644
index 000000000..37188b616
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\241\320\232\320\224_edt.json"
@@ -0,0 +1,27 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [],
+ "plainDataSets": [],
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonTemplates/СКД/Template.dcs"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.СКД",
+ "mdoRefRu": "ОбщийМакет.СКД"
+ },
+ "name": "СКД",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "СКД"
+ ]
+ ]
+ },
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "uuid": "8ae95178-7f50-4a77-aaf8-f8ffb72c65d4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.json"
new file mode 100644
index 000000000..492f7e938
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\242\320\260\320\261\320\273\320\270\321\207\320\275\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.ТабличныйДокумент",
+ "mdoRefRu": "ОбщийМакет.ТабличныйДокумент"
+ },
+ "name": "ТабличныйДокумент",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Табличный документ"
+ ]
+ ]
+ },
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "uuid": "5b54ba38-ec04-4fc6-897f-48d36d0312a6"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.json" "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.json"
new file mode 100644
index 000000000..c42df931d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/CommonTemplates.\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.ТекстовыйДокумент",
+ "mdoRefRu": "ОбщийМакет.ТекстовыйДокумент"
+ },
+ "name": "ТекстовыйДокумент",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текстовый документ"
+ ]
+ ]
+ },
+ "templateType": "TEXT_DOCUMENT",
+ "uuid": "3084f392-8f90-4134-a82e-790e225aab29"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses/Configuration.json b/src/test/resources/fixtures/mdclasses/Configuration.json
new file mode 100644
index 000000000..640d06b95
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses/Configuration.json
@@ -0,0 +1,1720 @@
+{"com.github._1c_syntax.bsl.mdclasses.Configuration": {
+ "XDTOPackages": [
+ {
+ "uuid": "b8a93cce-56e4-4507-b281-5c525a466a0f",
+ "name": "ПакетXDTO1",
+ "mdoReference": {
+ "type": "XDTO_PACKAGE",
+ "mdoRef": "XDTOPackage.ПакетXDTO1",
+ "mdoRefRu": "ПакетXDTO.ПакетXDTO1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "namespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "data": {
+ "targetNamespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "imports": [
+ [
+ 2
+ ],
+ []
+ ],
+ "valueTypes": [
+ [
+ 278
+ ],
+ []
+ ],
+ "objectTypes": [
+ [
+ 737
+ ],
+ []
+ ],
+ "properties": [
+ {
+ "name": "performance",
+ "type": "d2p1:Performance",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ]
+ }
+ }
+ ],
+ "accountingRegisters": [
+ {
+ "uuid": "e5930f2f-15d9-48a1-ac69-379ad990b02a",
+ "name": "РегистрБухгалтерии1",
+ "mdoReference": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр бухгалтерии"
+ ],
+ [
+ "en",
+ "Accounting register"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "e88df8bd-bf97-41a4-88fc-09c84a51824b",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accountingRegisters/com.github._1c_syntax.bsl.mdo.AccountingRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "902c08a9-e457-436a-b0fb-b996f0d9bb00",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accountingRegisters/com.github._1c_syntax.bsl.mdo.AccountingRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "accumulationRegisters": [
+ {
+ "uuid": "8ea07f36-d671-4649-bc7a-94daa939e77f",
+ "name": "РегистрНакопления1",
+ "mdoReference": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр накопления"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "a187a281-f5cd-4e1c-8f3f-37212a840339",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accumulationRegisters/com.github._1c_syntax.bsl.mdo.AccumulationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "461cae93-fe90-4bbb-8f79-0963e2d39ec5",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accumulationRegisters/com.github._1c_syntax.bsl.mdo.AccumulationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "bots": [],
+ "briefInformation": {
+ "content": [
+ [
+ "ru",
+ "Краткая информация"
+ ],
+ [
+ "en",
+ "Short info"
+ ]
+ ]
+ },
+ "businessProcesses": [
+ {
+ "uuid": "560a32ca-028d-4b88-b6f2-6b7212bf31f8",
+ "name": "БизнесПроцесс1",
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "calculationRegisters": [
+ {
+ "uuid": "90587c7d-b950-4476-ac14-426e4a83d9c4",
+ "name": "РегистрРасчета1",
+ "mdoReference": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "86f41061-e298-4da5-8d28-489a349d55fc",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/calculationRegisters/com.github._1c_syntax.bsl.mdo.CalculationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "f3e7cca5-4902-4ad5-96c7-db8336f52c6e",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/calculationRegisters/com.github._1c_syntax.bsl.mdo.CalculationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": true,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "recalculations": [
+ {
+ "uuid": "16b54095-8711-4ef1-a38b-93d12f6f6e93",
+ "name": "Перерасчет",
+ "mdoReference": {
+ "type": "RECALCULATION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Recalculation.Перерасчет",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Перерасчет.Перерасчет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перерасчет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/calculationRegisters/com.github._1c_syntax.bsl.mdo.CalculationRegister/mdoReference"
+ },
+ "modules": [
+ 1
+ ]
+ }
+ ]
+ }
+ ],
+ "catalogs": [
+ {
+ "uuid": "eeef463d-d5e7-42f2-ae53-10279661f59d",
+ "name": "Справочник1",
+ "mdoReference": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "342ec3c7-82d4-42bb-a5ff-8a756f110744",
+ "name": "Команда1",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Справочник1.Command.Команда1",
+ "mdoRefRu": "Справочник.Справочник1.Команда.Команда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference"
+ }
+ }
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ []
+ ],
+ "tabularSections": [
+ {
+ "uuid": "451202c5-b1af-4bce-a705-0b5570071588",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ []
+ ],
+ "templates": [
+ {
+ "uuid": "42def71b-52cc-4e34-8a08-82f0dfcd47bf",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Catalog.Справочник1.Template.Макет",
+ "mdoRefRu": "Справочник.Справочник1.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference"
+ }
+ }
+ ]
+ }
+ ],
+ "chartsOfAccounts": [
+ {
+ "uuid": "2766f353-abd2-4e7f-9a95-53f05c83f5d4",
+ "name": "ПланСчетов1",
+ "mdoReference": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "accountingFlags": [
+ {
+ "uuid": "957a5154-1e63-49e1-8e99-3893490da6f6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.AccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчета.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/chartsOfAccounts/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "extDimensionAccountingFlags": [
+ {
+ "uuid": "4f04d72a-e3e9-4e9b-96da-7d0e1ad989e6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "EXT_DIMENSION_ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.ExtDimensionAccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчетаСубконто.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/chartsOfAccounts/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ]
+ }
+ ],
+ "chartsOfCalculationTypes": [
+ {
+ "uuid": "1755c534-9ccd-49c4-9f8b-2aa066424aaa",
+ "name": "ПланВидовРасчета1",
+ "mdoReference": {
+ "type": "CHART_OF_CALCULATION_TYPES",
+ "mdoRef": "ChartOfCalculationTypes.ПланВидовРасчета1",
+ "mdoRefRu": "ПланВидовРасчета.ПланВидовРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "chartsOfCharacteristicTypes": [
+ {
+ "uuid": "f53a24c3-f1dc-43b7-8dcf-eeb8c0b7f452",
+ "name": "ПланВидовХарактеристик1",
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "children": [
+ [
+ 64
+ ],
+ []
+ ],
+ "commandGroups": [
+ {
+ "uuid": "9bd3b0b1-b276-4b0e-9811-44a41ebb0c7c",
+ "name": "ГруппаКоманд1",
+ "mdoReference": {
+ "type": "COMMAND_GROUP",
+ "mdoRef": "CommandGroup.ГруппаКоманд1",
+ "mdoRefRu": "ГруппаКоманд.ГруппаКоманд1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "comment": "",
+ "commonAttributes": [
+ {
+ "uuid": "d4f0c0ac-ed26-4085-a1b4-e52314b973ad",
+ "name": "ОбщийРеквизит1",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "autoUse": "USE",
+ "passwordMode": false,
+ "indexing": "DONT_INDEX",
+ "dataSeparation": "DONT_USE",
+ "dataSeparationValue": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "dataSeparationUse": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "conditionalSeparation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "usersSeparation": "DONT_USE",
+ "authenticationSeparation": "DONT_USE",
+ "configurationExtensionsSeparation": "DONT_USE",
+ "content": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "commonCommands": [
+ {
+ "uuid": "a608f796-f58e-4f8a-b63f-272342b32f35",
+ "name": "ОбщаяКоманда1",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОбщаяКоманда1",
+ "mdoRefRu": "ОбщаяКоманда.ОбщаяКоманда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ]
+ }
+ ],
+ "commonForms": [
+ {
+ "uuid": "5ac59104-28a5-40b1-ab5b-2857fb41991a",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Форма",
+ "mdoRefRu": "ОбщаяФорма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/CommonForms/Форма/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "handlers": [],
+ "items": [],
+ "attributes": []
+ }
+ }
+ ],
+ "commonModules": [
+ [
+ 6
+ ],
+ []
+ ],
+ "commonPictures": [
+ {
+ "uuid": "db84513d-2535-494b-843e-6d8931cb2f82",
+ "name": "ОбщаяКартинка1",
+ "mdoReference": {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.ОбщаяКартинка1",
+ "mdoRefRu": "ОбщаяКартинка.ОбщаяКартинка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "availabilityForChoice": false,
+ "availabilityForAppearance": false
+ }
+ ],
+ "commonTemplates": [
+ [
+ 10
+ ],
+ []
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationSource": "DESIGNER",
+ "constants": [
+ {
+ "uuid": "61e6a6f2-7057-4e93-96c3-7bd2559217f4",
+ "name": "Константа1",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "passwordMode": false
+ }
+ ],
+ "copyrights": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "dataLockControlMode": "AUTOMATIC",
+ "dataProcessors": [
+ {
+ "uuid": "a7c57ba0-75d8-487d-b8ea-ae5083d8a503",
+ "name": "Обработка1",
+ "mdoReference": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "templates": []
+ }
+ ],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [
+ {
+ "uuid": "e8c616d9-4957-48ab-a917-afb6847f6840",
+ "name": "ОпределяемыйТип1",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "detailedInformation": {
+ "content": [
+ [
+ "ru",
+ "Подробная информация"
+ ],
+ [
+ "en",
+ "Detailed info"
+ ]
+ ]
+ },
+ "documentJournals": [
+ {
+ "uuid": "c6743657-4787-40de-9a45-2493c630f626",
+ "name": "ЖурналДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "columns": [
+ {
+ "uuid": "b52d063e-5d2c-498b-a333-4957277f47e3",
+ "name": "Графа",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Column.Графа",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Колонка.Графа"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "registeredDocuments": [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ }
+ ]
+ }
+ ],
+ "documentNumerators": [
+ {
+ "uuid": "e401f835-6bfc-4cd4-8d87-5e6b6332a3f6",
+ "name": "НумераторДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documents": [
+ {
+ "uuid": "ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd",
+ "name": "Документ1",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/registeredDocuments/com.github._1c_syntax.bsl.types.MdoReference"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ [
+ 2
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ []
+ ],
+ "tabularSections": [
+ {
+ "uuid": "508fe2d9-44b0-4b34-a349-2b0bcae6adc4",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/registeredDocuments/com.github._1c_syntax.bsl.types.MdoReference"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ []
+ ],
+ "templates": [],
+ "registerRecords": [
+ [
+ 4
+ ],
+ []
+ ]
+ }
+ ],
+ "enums": [
+ {
+ "uuid": "f11f3441-4b64-4344-b1a0-0e4b3e466e03",
+ "name": "Перечисление1",
+ "mdoReference": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": [],
+ "templates": [],
+ "enumValues": [
+ {
+ "uuid": "47a90ebe-6127-4041-bdd4-def343363004",
+ "name": "ЗначениеПеречисления1",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.Перечисление1.EnumValue.ЗначениеПеречисления1",
+ "mdoRefRu": "Перечисление.Перечисление1.ЗначениеПеречисления.ЗначениеПеречисления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/enums/com.github._1c_syntax.bsl.mdo.Enum/mdoReference"
+ }
+ }
+ ]
+ }
+ ],
+ "eventSubscriptions": [
+ {
+ "uuid": "4da21a7b-3d07-4e6d-b91f-7e1c8ddcffcd",
+ "name": "ПодпискаНаСобытие1",
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "handler": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "ПодпискаНаСобытие1ПередЗаписью"
+ },
+ "event": "BeforeWrite"
+ }
+ ],
+ "exchangePlans": [
+ {
+ "uuid": "242cb07d-3d2b-4689-b590-d3ed23ac9d10",
+ "name": "ПланОбмена1",
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "distributedInfoBase": false,
+ "includeConfigurationExtensions": false,
+ "content": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "externalDataSources": [
+ {
+ "uuid": "2ceefe90-5a06-41ce-aac5-a3293a85946f",
+ "name": "ТекущаяСУБД",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущая СУБД"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "tables": [
+ {
+ "uuid": "318e517a-2dd6-4cdf-a502-c8cd6e429ff6",
+ "name": "ИнформацияОбОшибках",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Информация об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/externalDataSources/com.github._1c_syntax.bsl.mdo.ExternalDataSource/mdoReference"
+ },
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "ff4437b1-325e-47d7-87f7-9cf5e51460c5",
+ "name": "Command",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Command.Command",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Команда.Command"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Command"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/externalDataSources/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "fields": [
+ [
+ 8
+ ],
+ []
+ ],
+ "forms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "templates": [
+ {
+ "uuid": "28805bba-20fd-40dd-b442-1f7ca7dcf665",
+ "name": "Template",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Template.Template",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Макет.Template"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Template"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData",
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/templates/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/externalDataSources/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "dataLockControlMode": "MANAGED"
+ }
+ ]
+ }
+ ],
+ "filterCriteria": [
+ {
+ "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294",
+ "name": "КритерийОтбора1",
+ "mdoReference": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.КритерийОтбора1",
+ "mdoRefRu": "КритерийОтбора.КритерийОтбора1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": []
+ }
+ ],
+ "functionalOptions": [
+ {
+ "uuid": "d3b7fd71-6570-4047-91e0-b3df75dba08d",
+ "name": "ФункциональнаяОпция1",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTION",
+ "mdoRef": "FunctionalOption.ФункциональнаяОпция1",
+ "mdoRefRu": "ФункциональнаяОпция.ФункциональнаяОпция1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "location": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/constants/com.github._1c_syntax.bsl.mdo.Constant/mdoReference"
+ },
+ "privilegedGetMode": true,
+ "content": []
+ }
+ ],
+ "functionalOptionsParameters": [
+ {
+ "uuid": "9fae7345-6220-4e5b-b4c1-84bb921a58b7",
+ "name": "ПараметрФункциональныхОпций",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTIONS_PARAMETER",
+ "mdoRef": "FunctionalOptionsParameter.ПараметрФункциональныхОпций",
+ "mdoRefRu": "ПараметрФункциональныхОпций.ПараметрФункциональныхОпций"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметр функциональных опций"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "use": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ }
+ }
+ ],
+ "httpServices": [
+ {
+ "uuid": "3f029e1e-5a9e-4446-b74f-cbcb79b1e2fe",
+ "name": "HTTPСервис1",
+ "mdoReference": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "urlTemplates": [
+ {
+ "uuid": "4d97db36-cfbf-4f11-9647-d95677380b8f",
+ "name": "ШаблонURL",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_URL_TEMPLATE",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон URL"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/httpServices/com.github._1c_syntax.bsl.mdo.HTTPService/mdoReference"
+ },
+ "methods": [
+ [
+ 2
+ ],
+ []
+ ],
+ "template": "/*"
+ }
+ ]
+ }
+ ],
+ "informationRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "integrationServices": [],
+ "interfaces": [
+ [
+ 2
+ ],
+ []
+ ],
+ "languages": [
+ [
+ 3
+ ],
+ []
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Конфигурация",
+ "mdoRefRu": "Конфигурация.Конфигурация"
+ },
+ "modalityUseMode": "USE",
+ "modules": [
+ 3
+ ],
+ "name": "Конфигурация",
+ "objectAutonumerationMode": "NotAutoFree",
+ "objectBelonging": "OWN",
+ "reports": [
+ {
+ "uuid": "34d3754d-298c-4786-92f6-a487db249fc7",
+ "name": "Отчет1",
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.Отчет1",
+ "mdoRefRu": "Отчет.Отчет1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [
+ [
+ 3
+ ],
+ []
+ ]
+ }
+ ],
+ "roles": [
+ {
+ "uuid": "ecad0539-4f9f-491b-b0f2-f8f42d9a7c41",
+ "name": "Роль1",
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "data": {
+ "setForNewObjects": false,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ 3
+ ],
+ []
+ ]
+ }
+ }
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "0de0c839-4427-46d9-be68-302f88ac162c",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "description": "Описание Регламентное задание 1",
+ "key": "ПроверкаАктивностиСеансаУдаленияОбъектов",
+ "use": true,
+ "predefined": true,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [
+ {
+ "uuid": "514bbcf4-7fc4-4a3e-9245-598fad397eec",
+ "name": "Последовательность1",
+ "mdoReference": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "dimensions": [
+ {
+ "uuid": "763b82dd-2fdb-4a02-a50b-3eb916c02d3d",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/sequences/com.github._1c_syntax.bsl.mdo.Sequence/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ]
+ }
+ ],
+ "sessionParameters": [
+ {
+ "uuid": "66844df5-823b-40f1-ab8a-b07c1cb7462f",
+ "name": "ПараметрСеанса1",
+ "mdoReference": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ПараметрСеанса1",
+ "mdoRefRu": "ПараметрСеанса.ПараметрСеанса1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "settingsStorages": [
+ {
+ "uuid": "e7a9947d-7565-4681-b75c-c9a229b45042",
+ "name": "ХранилищеНастроек1",
+ "mdoReference": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеНастроек1",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеНастроек1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "styleItems": [
+ {
+ "uuid": "68047ae8-62aa-4696-9780-d364feb3cc10",
+ "name": "ЭлементСтиля1",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ЭлементСтиля1",
+ "mdoRefRu": "ЭлементСтиля.ЭлементСтиля1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "styles": [
+ {
+ "uuid": "d6aaa851-cba7-486d-92f4-ab31b1628c6b",
+ "name": "Стиль",
+ "mdoReference": {
+ "type": "STYLE",
+ "mdoRef": "Style.Стиль",
+ "mdoRefRu": "Стиль.Стиль"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Стиль"
+ ]
+ ]
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "subsystems": [
+ [
+ 2
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synchronousExtensionAndAddInCallUseMode": "USE_WITH_WARNINGS",
+ "synchronousPlatformExtensionAndAddInCallUseMode": "DONT_USE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "tasks": [
+ {
+ "uuid": "c251fcec-ec02-4ef4-8f70-4d70db6631ea",
+ "name": "Задача1",
+ "mdoReference": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "addressingAttributes": [
+ {
+ "uuid": "bf531047-7ec7-4c74-bfdb-917138b2127c",
+ "name": "РеквизитАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.Задача1.AddressingAttribute.РеквизитАдресации",
+ "mdoRefRu": "Задача.Задача1.РеквизитАдресации.РеквизитАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/tasks/com.github._1c_syntax.bsl.mdo.Task/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "toolTip": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ }
+ }
+ ]
+ }
+ ],
+ "useManagedFormInOrdinaryApplication": true,
+ "useOrdinaryFormInManagedApplication": true,
+ "usePurposes": [
+ [
+ 2
+ ],
+ []
+ ],
+ "uuid": "46c7c1d0-b04d-4295-9b04-ae3207c18d29",
+ "vendor": "",
+ "version": "",
+ "webServices": [
+ {
+ "uuid": "d7f9b06b-0799-486e-adff-c45a2d5b8101",
+ "name": "WebСервис1",
+ "mdoReference": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.WebСервис1",
+ "mdoRefRu": "WebСервис.WebСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "namespace": "http://test.test",
+ "descriptorFileName": "ws1.1cws",
+ "reuseSessions": "AUTO_USE",
+ "sessionMaxAge": 20,
+ "operations": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "wsReferences": [
+ {
+ "uuid": "95b745f2-e1fa-4f94-b7f9-f3f0224fc8c7",
+ "name": "WSСсылка",
+ "mdoReference": {
+ "type": "WS_REFERENCE",
+ "mdoRef": "WSReference.WSСсылка",
+ "mdoRefRu": "WSСсылка.WSСсылка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "WSСсылка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "locationURL": "http://ya.ru"
+ }
+ ]
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses/Configuration_edt.json b/src/test/resources/fixtures/mdclasses/Configuration_edt.json
new file mode 100644
index 000000000..074ad8ad3
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses/Configuration_edt.json
@@ -0,0 +1,1694 @@
+{"com.github._1c_syntax.bsl.mdclasses.Configuration": {
+ "XDTOPackages": [
+ {
+ "uuid": "b8a93cce-56e4-4507-b281-5c525a466a0f",
+ "name": "ПакетXDTO1",
+ "mdoReference": {
+ "type": "XDTO_PACKAGE",
+ "mdoRef": "XDTOPackage.ПакетXDTO1",
+ "mdoRefRu": "ПакетXDTO.ПакетXDTO1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "namespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "data": {
+ "targetNamespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "imports": [
+ [
+ 2
+ ],
+ []
+ ],
+ "valueTypes": [
+ [
+ 278
+ ],
+ []
+ ],
+ "objectTypes": [
+ [
+ 737
+ ],
+ []
+ ],
+ "properties": [
+ {
+ "name": "performance",
+ "type": "d2p1:Performance",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ]
+ }
+ }
+ ],
+ "accountingRegisters": [
+ {
+ "uuid": "e5930f2f-15d9-48a1-ac69-379ad990b02a",
+ "name": "РегистрБухгалтерии1",
+ "mdoReference": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "en",
+ "Accounting register"
+ ],
+ [
+ "ru",
+ "Регистр бухгалтерии"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "e88df8bd-bf97-41a4-88fc-09c84a51824b",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accountingRegisters/com.github._1c_syntax.bsl.mdo.AccountingRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "902c08a9-e457-436a-b0fb-b996f0d9bb00",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accountingRegisters/com.github._1c_syntax.bsl.mdo.AccountingRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "accumulationRegisters": [
+ {
+ "uuid": "8ea07f36-d671-4649-bc7a-94daa939e77f",
+ "name": "РегистрНакопления1",
+ "mdoReference": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр накопления"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "a187a281-f5cd-4e1c-8f3f-37212a840339",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accumulationRegisters/com.github._1c_syntax.bsl.mdo.AccumulationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "461cae93-fe90-4bbb-8f79-0963e2d39ec5",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/accumulationRegisters/com.github._1c_syntax.bsl.mdo.AccumulationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "bots": [],
+ "briefInformation": {
+ "content": [
+ [
+ "en",
+ "Short info"
+ ],
+ [
+ "ru",
+ "Краткая информация"
+ ]
+ ]
+ },
+ "businessProcesses": [
+ {
+ "uuid": "560a32ca-028d-4b88-b6f2-6b7212bf31f8",
+ "name": "БизнесПроцесс1",
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "calculationRegisters": [
+ {
+ "uuid": "90587c7d-b950-4476-ac14-426e4a83d9c4",
+ "name": "РегистрРасчета1",
+ "mdoReference": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "86f41061-e298-4da5-8d28-489a349d55fc",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/calculationRegisters/com.github._1c_syntax.bsl.mdo.CalculationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "f3e7cca5-4902-4ad5-96c7-db8336f52c6e",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/calculationRegisters/com.github._1c_syntax.bsl.mdo.CalculationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": true,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "recalculations": [
+ {
+ "uuid": "16b54095-8711-4ef1-a38b-93d12f6f6e93",
+ "name": "Перерасчет",
+ "mdoReference": {
+ "type": "RECALCULATION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Recalculation.Перерасчет",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Перерасчет.Перерасчет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перерасчет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/calculationRegisters/com.github._1c_syntax.bsl.mdo.CalculationRegister/mdoReference"
+ },
+ "modules": [
+ 1
+ ]
+ }
+ ]
+ }
+ ],
+ "catalogs": [
+ {
+ "uuid": "eeef463d-d5e7-42f2-ae53-10279661f59d",
+ "name": "Справочник1",
+ "mdoReference": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "342ec3c7-82d4-42bb-a5ff-8a756f110744",
+ "name": "Команда1",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Справочник1.Command.Команда1",
+ "mdoRefRu": "Справочник.Справочник1.Команда.Команда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference"
+ }
+ }
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ []
+ ],
+ "tabularSections": [
+ {
+ "uuid": "451202c5-b1af-4bce-a705-0b5570071588",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ []
+ ],
+ "templates": [
+ {
+ "uuid": "42def71b-52cc-4e34-8a08-82f0dfcd47bf",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Catalog.Справочник1.Template.Макет",
+ "mdoRefRu": "Справочник.Справочник1.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference"
+ }
+ }
+ ]
+ }
+ ],
+ "chartsOfAccounts": [
+ {
+ "uuid": "2766f353-abd2-4e7f-9a95-53f05c83f5d4",
+ "name": "ПланСчетов1",
+ "mdoReference": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "accountingFlags": [
+ {
+ "uuid": "957a5154-1e63-49e1-8e99-3893490da6f6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.AccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчета.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/chartsOfAccounts/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "extDimensionAccountingFlags": [
+ {
+ "uuid": "4f04d72a-e3e9-4e9b-96da-7d0e1ad989e6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "EXT_DIMENSION_ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.ExtDimensionAccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчетаСубконто.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/chartsOfAccounts/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ]
+ }
+ ],
+ "chartsOfCalculationTypes": [
+ {
+ "uuid": "1755c534-9ccd-49c4-9f8b-2aa066424aaa",
+ "name": "ПланВидовРасчета1",
+ "mdoReference": {
+ "type": "CHART_OF_CALCULATION_TYPES",
+ "mdoRef": "ChartOfCalculationTypes.ПланВидовРасчета1",
+ "mdoRefRu": "ПланВидовРасчета.ПланВидовРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "chartsOfCharacteristicTypes": [
+ {
+ "uuid": "f53a24c3-f1dc-43b7-8dcf-eeb8c0b7f452",
+ "name": "ПланВидовХарактеристик1",
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "children": [
+ [
+ 61
+ ],
+ []
+ ],
+ "commandGroups": [
+ {
+ "uuid": "9bd3b0b1-b276-4b0e-9811-44a41ebb0c7c",
+ "name": "ГруппаКоманд1",
+ "mdoReference": {
+ "type": "COMMAND_GROUP",
+ "mdoRef": "CommandGroup.ГруппаКоманд1",
+ "mdoRefRu": "ГруппаКоманд.ГруппаКоманд1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "comment": "",
+ "commonAttributes": [
+ {
+ "uuid": "d4f0c0ac-ed26-4085-a1b4-e52314b973ad",
+ "name": "ОбщийРеквизит1",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "autoUse": "USE",
+ "passwordMode": false,
+ "indexing": "DONT_INDEX",
+ "dataSeparation": "DONT_USE",
+ "dataSeparationValue": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "dataSeparationUse": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "conditionalSeparation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "usersSeparation": "DONT_USE",
+ "authenticationSeparation": "DONT_USE",
+ "configurationExtensionsSeparation": "DONT_USE",
+ "content": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "commonCommands": [
+ {
+ "uuid": "a608f796-f58e-4f8a-b63f-272342b32f35",
+ "name": "ОбщаяКоманда1",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОбщаяКоманда1",
+ "mdoRefRu": "ОбщаяКоманда.ОбщаяКоманда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ]
+ }
+ ],
+ "commonForms": [
+ {
+ "uuid": "5ac59104-28a5-40b1-ab5b-2857fb41991a",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Форма",
+ "mdoRefRu": "ОбщаяФорма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/CommonForms/Форма/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "handlers": [],
+ "items": [],
+ "attributes": []
+ }
+ }
+ ],
+ "commonModules": [
+ [
+ 6
+ ],
+ []
+ ],
+ "commonPictures": [
+ {
+ "uuid": "db84513d-2535-494b-843e-6d8931cb2f82",
+ "name": "ОбщаяКартинка1",
+ "mdoReference": {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.ОбщаяКартинка1",
+ "mdoRefRu": "ОбщаяКартинка.ОбщаяКартинка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "availabilityForChoice": false,
+ "availabilityForAppearance": false
+ }
+ ],
+ "commonTemplates": [
+ [
+ 10
+ ],
+ []
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationSource": "EDT",
+ "constants": [
+ {
+ "uuid": "61e6a6f2-7057-4e93-96c3-7bd2559217f4",
+ "name": "Константа1",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "passwordMode": false
+ }
+ ],
+ "copyrights": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "dataLockControlMode": "AUTOMATIC",
+ "dataProcessors": [
+ {
+ "uuid": "a7c57ba0-75d8-487d-b8ea-ae5083d8a503",
+ "name": "Обработка1",
+ "mdoReference": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "templates": []
+ }
+ ],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [
+ {
+ "uuid": "e8c616d9-4957-48ab-a917-afb6847f6840",
+ "name": "ОпределяемыйТип1",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "detailedInformation": {
+ "content": [
+ [
+ "en",
+ "Detailed info"
+ ],
+ [
+ "ru",
+ "Подробная информация"
+ ]
+ ]
+ },
+ "documentJournals": [
+ {
+ "uuid": "c6743657-4787-40de-9a45-2493c630f626",
+ "name": "ЖурналДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "columns": [
+ {
+ "uuid": "b52d063e-5d2c-498b-a333-4957277f47e3",
+ "name": "Графа",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Column.Графа",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Колонка.Графа"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "registeredDocuments": [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ }
+ ]
+ }
+ ],
+ "documentNumerators": [
+ {
+ "uuid": "e401f835-6bfc-4cd4-8d87-5e6b6332a3f6",
+ "name": "НумераторДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documents": [
+ {
+ "uuid": "ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd",
+ "name": "Документ1",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/registeredDocuments/com.github._1c_syntax.bsl.types.MdoReference"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ [
+ 2
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ []
+ ],
+ "tabularSections": [
+ {
+ "uuid": "508fe2d9-44b0-4b34-a349-2b0bcae6adc4",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/registeredDocuments/com.github._1c_syntax.bsl.types.MdoReference"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ []
+ ],
+ "templates": [],
+ "registerRecords": [
+ [
+ 4
+ ],
+ []
+ ]
+ }
+ ],
+ "enums": [
+ {
+ "uuid": "f11f3441-4b64-4344-b1a0-0e4b3e466e03",
+ "name": "Перечисление1",
+ "mdoReference": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": [],
+ "templates": [],
+ "enumValues": [
+ {
+ "uuid": "47a90ebe-6127-4041-bdd4-def343363004",
+ "name": "ЗначениеПеречисления1",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.Перечисление1.EnumValue.ЗначениеПеречисления1",
+ "mdoRefRu": "Перечисление.Перечисление1.ЗначениеПеречисления.ЗначениеПеречисления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/enums/com.github._1c_syntax.bsl.mdo.Enum/mdoReference"
+ }
+ }
+ ]
+ }
+ ],
+ "eventSubscriptions": [
+ {
+ "uuid": "4da21a7b-3d07-4e6d-b91f-7e1c8ddcffcd",
+ "name": "ПодпискаНаСобытие1",
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "handler": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "ПодпискаНаСобытие1ПередЗаписью"
+ },
+ "event": "BeforeWrite"
+ }
+ ],
+ "exchangePlans": [
+ {
+ "uuid": "242cb07d-3d2b-4689-b590-d3ed23ac9d10",
+ "name": "ПланОбмена1",
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "distributedInfoBase": false,
+ "includeConfigurationExtensions": false,
+ "content": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "externalDataSources": [
+ {
+ "uuid": "2ceefe90-5a06-41ce-aac5-a3293a85946f",
+ "name": "ТекущаяСУБД",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущая СУБД"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "tables": [
+ {
+ "uuid": "318e517a-2dd6-4cdf-a502-c8cd6e429ff6",
+ "name": "ИнформацияОбОшибках",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Информация об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/externalDataSources/com.github._1c_syntax.bsl.mdo.ExternalDataSource/mdoReference"
+ },
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "ff4437b1-325e-47d7-87f7-9cf5e51460c5",
+ "name": "Command",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Command.Command",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Команда.Command"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Command"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/externalDataSources/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "fields": [
+ [
+ 8
+ ],
+ []
+ ],
+ "forms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "templates": [
+ {
+ "uuid": "28805bba-20fd-40dd-b442-1f7ca7dcf665",
+ "name": "Template",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Template.Template",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Макет.Template"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Template"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData",
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/templates/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/externalDataSources/com.github._1c_syntax.bsl.mdo.ExternalDataSource/tables/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "dataLockControlMode": "MANAGED"
+ }
+ ]
+ }
+ ],
+ "filterCriteria": [
+ {
+ "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294",
+ "name": "КритерийОтбора1",
+ "mdoReference": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.КритерийОтбора1",
+ "mdoRefRu": "КритерийОтбора.КритерийОтбора1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": []
+ }
+ ],
+ "functionalOptions": [
+ {
+ "uuid": "d3b7fd71-6570-4047-91e0-b3df75dba08d",
+ "name": "ФункциональнаяОпция1",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTION",
+ "mdoRef": "FunctionalOption.ФункциональнаяОпция1",
+ "mdoRefRu": "ФункциональнаяОпция.ФункциональнаяОпция1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "location": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/constants/com.github._1c_syntax.bsl.mdo.Constant/mdoReference"
+ },
+ "privilegedGetMode": true,
+ "content": []
+ }
+ ],
+ "functionalOptionsParameters": [
+ {
+ "uuid": "9fae7345-6220-4e5b-b4c1-84bb921a58b7",
+ "name": "ПараметрФункциональныхОпций",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTIONS_PARAMETER",
+ "mdoRef": "FunctionalOptionsParameter.ПараметрФункциональныхОпций",
+ "mdoRefRu": "ПараметрФункциональныхОпций.ПараметрФункциональныхОпций"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметр функциональных опций"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "use": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ }
+ }
+ ],
+ "httpServices": [
+ {
+ "uuid": "3f029e1e-5a9e-4446-b74f-cbcb79b1e2fe",
+ "name": "HTTPСервис1",
+ "mdoReference": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "urlTemplates": [
+ {
+ "uuid": "4d97db36-cfbf-4f11-9647-d95677380b8f",
+ "name": "ШаблонURL",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_URL_TEMPLATE",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон URL"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/httpServices/com.github._1c_syntax.bsl.mdo.HTTPService/mdoReference"
+ },
+ "methods": [
+ [
+ 2
+ ],
+ []
+ ],
+ "template": "/*"
+ }
+ ]
+ }
+ ],
+ "informationRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "integrationServices": [],
+ "interfaces": [],
+ "languages": [
+ [
+ 3
+ ],
+ []
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Конфигурация",
+ "mdoRefRu": "Конфигурация.Конфигурация"
+ },
+ "modalityUseMode": "USE",
+ "modules": [
+ 3
+ ],
+ "name": "Конфигурация",
+ "objectAutonumerationMode": "NotAutoFree",
+ "objectBelonging": "OWN",
+ "reports": [
+ {
+ "uuid": "34d3754d-298c-4786-92f6-a487db249fc7",
+ "name": "Отчет1",
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.Отчет1",
+ "mdoRefRu": "Отчет.Отчет1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [
+ [
+ 3
+ ],
+ []
+ ]
+ }
+ ],
+ "roles": [
+ {
+ "uuid": "ecad0539-4f9f-491b-b0f2-f8f42d9a7c41",
+ "name": "Роль1",
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "data": {
+ "setForNewObjects": false,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ 3
+ ],
+ []
+ ]
+ }
+ }
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "0de0c839-4427-46d9-be68-302f88ac162c",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "description": "Описание Регламентное задание 1",
+ "key": "ПроверкаАктивностиСеансаУдаленияОбъектов",
+ "use": true,
+ "predefined": true,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [
+ {
+ "uuid": "514bbcf4-7fc4-4a3e-9245-598fad397eec",
+ "name": "Последовательность1",
+ "mdoReference": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "dimensions": [
+ {
+ "uuid": "763b82dd-2fdb-4a02-a50b-3eb916c02d3d",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/sequences/com.github._1c_syntax.bsl.mdo.Sequence/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ]
+ }
+ ],
+ "sessionParameters": [
+ {
+ "uuid": "66844df5-823b-40f1-ab8a-b07c1cb7462f",
+ "name": "ПараметрСеанса1",
+ "mdoReference": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ПараметрСеанса1",
+ "mdoRefRu": "ПараметрСеанса.ПараметрСеанса1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "settingsStorages": [
+ {
+ "uuid": "e7a9947d-7565-4681-b75c-c9a229b45042",
+ "name": "ХранилищеНастроек1",
+ "mdoReference": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеНастроек1",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеНастроек1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "styleItems": [
+ {
+ "uuid": "68047ae8-62aa-4696-9780-d364feb3cc10",
+ "name": "ЭлементСтиля1",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ЭлементСтиля1",
+ "mdoRefRu": "ЭлементСтиля.ЭлементСтиля1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "styles": [],
+ "subsystems": [
+ [
+ 2
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synchronousExtensionAndAddInCallUseMode": "USE_WITH_WARNINGS",
+ "synchronousPlatformExtensionAndAddInCallUseMode": "DONT_USE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "tasks": [
+ {
+ "uuid": "c251fcec-ec02-4ef4-8f70-4d70db6631ea",
+ "name": "Задача1",
+ "mdoReference": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "addressingAttributes": [
+ {
+ "uuid": "bf531047-7ec7-4c74-bfdb-917138b2127c",
+ "name": "РеквизитАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.Задача1.AddressingAttribute.РеквизитАдресации",
+ "mdoRefRu": "Задача.Задача1.РеквизитАдресации.РеквизитАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/tasks/com.github._1c_syntax.bsl.mdo.Task/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "toolTip": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ }
+ }
+ ]
+ }
+ ],
+ "useManagedFormInOrdinaryApplication": true,
+ "useOrdinaryFormInManagedApplication": true,
+ "usePurposes": [
+ [
+ 2
+ ],
+ []
+ ],
+ "uuid": "46c7c1d0-b04d-4295-9b04-ae3207c18d29",
+ "vendor": "",
+ "version": "",
+ "webServices": [
+ {
+ "uuid": "d7f9b06b-0799-486e-adff-c45a2d5b8101",
+ "name": "WebСервис1",
+ "mdoReference": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.WebСервис1",
+ "mdoRefRu": "WebСервис.WebСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "namespace": "http://test.test",
+ "descriptorFileName": "ws1.1cws",
+ "reuseSessions": "AUTO_USE",
+ "sessionMaxAge": 20,
+ "operations": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "wsReferences": [
+ {
+ "uuid": "95b745f2-e1fa-4f94-b7f9-f3f0224fc8c7",
+ "name": "WSСсылка",
+ "mdoReference": {
+ "type": "WS_REFERENCE",
+ "mdoRef": "WSReference.WSСсылка",
+ "mdoRefRu": "WSСсылка.WSСсылка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "WSСсылка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "locationURL": "http://ya.ru"
+ }
+ ]
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Constants.\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.json" "b/src/test/resources/fixtures/mdclasses/Constants.\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.json"
new file mode 100644
index 000000000..817ea72cf
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Constants.\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601.json"
@@ -0,0 +1,36 @@
+{"com.github._1c_syntax.bsl.mdo.Constant": {
+ "comment": "",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "modules": [
+ {
+ "moduleType": "ValueManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Constants/Константа1/Ext/ValueManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Constant/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Constants/Константа1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Constant/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Константа1",
+ "objectBelonging": "OWN",
+ "passwordMode": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "61e6a6f2-7057-4e93-96c3-7bd2559217f4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Constants.\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/Constants.\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601_edt.json"
new file mode 100644
index 000000000..592c8af09
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Constants.\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601_edt.json"
@@ -0,0 +1,36 @@
+{"com.github._1c_syntax.bsl.mdo.Constant": {
+ "comment": "",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "modules": [
+ {
+ "moduleType": "ValueManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Constants/Константа1/ValueManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Constant/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Constants/Константа1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Constant/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Константа1",
+ "objectBelonging": "OWN",
+ "passwordMode": false,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "61e6a6f2-7057-4e93-96c3-7bd2559217f4"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json" "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json"
new file mode 100644
index 000000000..af0cf4755
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.json"
@@ -0,0 +1,914 @@
+{"com.github._1c_syntax.bsl.mdo.DataProcessor": {
+ "allAttributes": [],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "5a32de80-b66f-4d6d-be8b-a117f5f71480",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.Обработка1.Form.Форма",
+ "mdoRefRu": "Обработка.Обработка1.Форма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/Обработка1/Forms/Форма/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/Обработка1/Forms/Форма/Ext/Form.xml",
+ "title": {
+ "content": []
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "HTMLDocumentField",
+ "id": 1,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит3",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 7,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "SpreadSheetDocumentField",
+ "id": 10,
+ "name": "Реквизит4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит4",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "Реквизит4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "Реквизит5",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "5a32de80-f66f-4d6d-be8b-a117f5f71480",
+ "name": "ЖурналРегистрации",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.Обработка1.Form.ЖурналРегистрации",
+ "mdoRefRu": "Обработка.Обработка1.Форма.ЖурналРегистрации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "ЖурналРегистрации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/Обработка1/Forms/ЖурналРегистрации/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/DataProcessors/Обработка1/Forms/ЖурналРегистрации/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал регистрации"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 103,
+ "name": "ГруппаОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отбора"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 101,
+ "name": "КоличествоПоказываемыхСобытий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КоличествоПоказываемыхСобытий",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 170,
+ "name": "Критичность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Критичность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 35,
+ "name": "ПредставлениеОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отбор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредставлениеОтбора",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 116,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 117,
+ "name": "ЖурналРегистрации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал регистрации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 48,
+ "name": "Журнал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 51,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата, время"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.Дата",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 119,
+ "name": "ПредставлениеРазделенияДанныхСеанса",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеРазделенияДанныхСеанса",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 53,
+ "name": "ГруппаПользовательКомпьютерПриложение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователь, компьютер, приложение, сеанс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 54,
+ "name": "ИмяПользователя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователь"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ИмяПользователя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 56,
+ "name": "Компьютер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Компьютер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.Компьютер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 204,
+ "name": "ГруппаПриложениеСеанс",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приложение сеанс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 59,
+ "name": "ПредставлениеПриложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приложение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеПриложения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 80,
+ "name": "Сеанс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.Сеанс",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 175,
+ "name": "ГруппаСобытиеИДанные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Событие, данные и метаданные, комментарий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 64,
+ "name": "ПредставлениеСобытия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Событие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеСобытия",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 202,
+ "name": "ГруппаДанныеМетаданные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данные метаданные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 76,
+ "name": "Данные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.Данные",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 74,
+ "name": "ПредставлениеМетаданных",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Метаданные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеМетаданных",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "Комментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.Комментарий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 84,
+ "name": "ГруппаСервер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Рабочий сервер, IP порты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 85,
+ "name": "РабочийСервер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.РабочийСервер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 89,
+ "name": "ОсновнойIPПорт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ОсновнойIPПорт",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 91,
+ "name": "ВспомогательныйIPПорт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ВспомогательныйIPПорт",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 68,
+ "name": "ГруппаТранзакция",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Транзакция"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 69,
+ "name": "СтатусТранзакции",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус транзакции"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.СтатусТранзакции",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 71,
+ "name": "Транзакция",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.Транзакция",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 206,
+ "name": "ДатаНаСервере",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ДатаНаСервере",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 118,
+ "name": "ИндикаторДлительныхОпераций",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Индикатор длительных операций"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "SpreadSheetDocumentField",
+ "id": 114,
+ "name": "ПолеИндикаторДлительныхОпераций",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПолеИндикаторДлительныхОпераций",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредставлениеОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление отбора"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Журнал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ОтборЖурналаРегистрации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "КоличествоПоказываемыхСобытий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Количество показываемых событий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ИнтервалДат",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ПолеИндикаторДлительныхОпераций",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поле индикатор длительных операций"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "АдресХранилища",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ОтборЖурналаРегистрацииПоУмолчанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "Критичность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Критичность"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ЗапускатьНеВФоне",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ИдентификаторЗадания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ХранилищеДанных",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "modules": [],
+ "name": "Обработка1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "a7c57ba0-75d8-487d-b8ea-ae5083d8a503"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json"
new file mode 100644
index 000000000..885cdd062
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/DataProcessors.\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601_edt.json"
@@ -0,0 +1,914 @@
+{"com.github._1c_syntax.bsl.mdo.DataProcessor": {
+ "allAttributes": [],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "5a32de80-b66f-4d6d-be8b-a117f5f71480",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.Обработка1.Form.Форма",
+ "mdoRefRu": "Обработка.Обработка1.Форма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/Обработка1/Forms/Форма/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/Обработка1/Forms/Форма/Form.form",
+ "title": {
+ "content": []
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "HTMLDocumentField",
+ "id": 1,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит3",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 7,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "SpreadsheetDocumentField",
+ "id": 10,
+ "name": "Реквизит4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Реквизит4",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "Реквизит4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "Реквизит5",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "5a32de80-f66f-4d6d-be8b-a117f5f71481",
+ "name": "ЖурналРегистрации",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.Обработка1.Form.ЖурналРегистрации",
+ "mdoRefRu": "Обработка.Обработка1.Форма.ЖурналРегистрации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "ЖурналРегистрации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/Обработка1/Forms/ЖурналРегистрации/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/DataProcessors/Обработка1/Forms/ЖурналРегистрации/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал регистрации"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 103,
+ "name": "ГруппаОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отбора"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 101,
+ "name": "КоличествоПоказываемыхСобытий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КоличествоПоказываемыхСобытий",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 170,
+ "name": "Критичность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Критичность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 35,
+ "name": "ПредставлениеОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отбор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредставлениеОтбора",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 116,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 117,
+ "name": "ЖурналРегистрации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал регистрации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 48,
+ "name": "Журнал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 51,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата, время"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.Дата",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 119,
+ "name": "ПредставлениеРазделенияДанныхСеанса",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеРазделенияДанныхСеанса",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 53,
+ "name": "ГруппаПользовательКомпьютерПриложение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователь, компьютер, приложение, сеанс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 54,
+ "name": "ИмяПользователя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователь"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ИмяПользователя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 56,
+ "name": "Компьютер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Компьютер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.Компьютер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 204,
+ "name": "ГруппаПриложениеСеанс",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приложение сеанс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 59,
+ "name": "ПредставлениеПриложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приложение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеПриложения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 80,
+ "name": "Сеанс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.Сеанс",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 175,
+ "name": "ГруппаСобытиеИДанные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Событие, данные и метаданные, комментарий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 64,
+ "name": "ПредставлениеСобытия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Событие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеСобытия",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 202,
+ "name": "ГруппаДанныеМетаданные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данные метаданные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 76,
+ "name": "Данные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.Данные",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 74,
+ "name": "ПредставлениеМетаданных",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Метаданные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.ПредставлениеМетаданных",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "Комментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.Комментарий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 84,
+ "name": "ГруппаСервер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Рабочий сервер, IP порты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 85,
+ "name": "РабочийСервер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.РабочийСервер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 89,
+ "name": "ОсновнойIPПорт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ОсновнойIPПорт",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 91,
+ "name": "ВспомогательныйIPПорт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ВспомогательныйIPПорт",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 68,
+ "name": "ГруппаТранзакция",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Транзакция"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 69,
+ "name": "СтатусТранзакции",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус транзакции"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Журнал.СтатусТранзакции",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 71,
+ "name": "Транзакция",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.Транзакция",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 206,
+ "name": "ДатаНаСервере",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Журнал.ДатаНаСервере",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 118,
+ "name": "ИндикаторДлительныхОпераций",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Индикатор длительных операций"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "SpreadsheetDocumentField",
+ "id": 114,
+ "name": "ПолеИндикаторДлительныхОпераций",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПолеИндикаторДлительныхОпераций",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредставлениеОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление отбора"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Журнал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Журнал"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ОтборЖурналаРегистрации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "КоличествоПоказываемыхСобытий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Количество показываемых событий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ИнтервалДат",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ПолеИндикаторДлительныхОпераций",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поле индикатор длительных операций"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "АдресХранилища",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ОтборЖурналаРегистрацииПоУмолчанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "Критичность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Критичность"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ЗапускатьНеВФоне",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ИдентификаторЗадания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ХранилищеДанных",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "modules": [],
+ "name": "Обработка1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "a7c57ba0-75d8-487d-b8ea-ae5083d8a503"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/DefinedTypes.\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.json" "b/src/test/resources/fixtures/mdclasses/DefinedTypes.\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.json"
new file mode 100644
index 000000000..1a2ea16c6
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/DefinedTypes.\320\236\320\277\321\200\320\265\320\264\320\265\320\273\321\217\320\265\320\274\321\213\320\271\320\242\320\270\320\2771.json"
@@ -0,0 +1,15 @@
+{"com.github._1c_syntax.bsl.mdo.DefinedType": {
+ "comment": "",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "name": "ОпределяемыйТип1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "e8c616d9-4957-48ab-a917-afb6847f6840"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/DocumentJournals.\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.json" "b/src/test/resources/fixtures/mdclasses/DocumentJournals.\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.json"
new file mode 100644
index 000000000..bbd127be3
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/DocumentJournals.\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.json"
@@ -0,0 +1,69 @@
+{"com.github._1c_syntax.bsl.mdo.DocumentJournal": {
+ "allAttributes": [
+ {
+ "uuid": "b52d063e-5d2c-498b-a333-4957277f47e3",
+ "name": "Графа",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Column.Графа",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Колонка.Графа"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "columns": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn"
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/DocumentJournals/ЖурналДокументов1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЖурналДокументов1",
+ "objectBelonging": "OWN",
+ "registeredDocuments": [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "templates": [],
+ "uuid": "c6743657-4787-40de-9a45-2493c630f626"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/DocumentJournals.\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621_edt.json" "b/src/test/resources/fixtures/mdclasses/DocumentJournals.\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621_edt.json"
new file mode 100644
index 000000000..f871f28fb
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/DocumentJournals.\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621_edt.json"
@@ -0,0 +1,69 @@
+{"com.github._1c_syntax.bsl.mdo.DocumentJournal": {
+ "allAttributes": [
+ {
+ "uuid": "b52d063e-5d2c-498b-a333-4957277f47e3",
+ "name": "Графа",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Column.Графа",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Колонка.Графа"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "columns": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn"
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/DocumentJournals/ЖурналДокументов1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЖурналДокументов1",
+ "objectBelonging": "OWN",
+ "registeredDocuments": [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "templates": [],
+ "uuid": "c6743657-4787-40de-9a45-2493c630f626"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/DocumentNumerators.\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.json" "b/src/test/resources/fixtures/mdclasses/DocumentNumerators.\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.json"
new file mode 100644
index 000000000..f060ce21f
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/DocumentNumerators.\320\235\321\203\320\274\320\265\321\200\320\260\321\202\320\276\321\200\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621.json"
@@ -0,0 +1,15 @@
+{"com.github._1c_syntax.bsl.mdo.DocumentNumerator": {
+ "comment": "",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "name": "НумераторДокументов1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "e401f835-6bfc-4cd4-8d87-5e6b6332a3f6"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json" "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json"
new file mode 100644
index 000000000..d839af711
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021.json"
@@ -0,0 +1,924 @@
+{"com.github._1c_syntax.bsl.mdo.Document": {
+ "attributes": [
+ [
+ {
+ "uuid": "681aaa11-422a-41a6-bd93-28b2ad83f595",
+ "name": "Реквизит1",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.Attribute.Реквизит1",
+ "mdoRefRu": "Документ.Документ1.Реквизит.Реквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "bdbbb8f0-84af-4a72-80c4-21f7436bbe99",
+ "name": "Реквизит2",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.Attribute.Реквизит2",
+ "mdoRefRu": "Документ.Документ1.Реквизит.Реквизит2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f9b6dbc4-79c1-4985-bfd2-87cb8c9fb01c",
+ "name": "Реквизит3",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.Attribute.Реквизит3",
+ "mdoRefRu": "Документ.Документ1.Реквизит.Реквизит3"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [
+ [
+ {
+ "uuid": "cdb33f38-7e75-444a-ab2f-bb267be790da",
+ "name": "Команда",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Document.Документ1.Command.Команда",
+ "mdoRefRu": "Документ.Документ1.Команда.Команда"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Команда"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Commands/Команда/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ },
+ {
+ "uuid": "cdb33f38-7e75-444a-ab2f-bb267be790df",
+ "name": "Команда2",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Document.Документ1.Command.Команда2",
+ "mdoRefRu": "Документ.Документ1.Команда.Команда2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Команда"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Commands/Команда2/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ []
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "875c9efc-f2ae-4773-bac2-3556424557c3",
+ "name": "ФормаДокумента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Документ1.Form.ФормаДокумента",
+ "mdoRefRu": "Документ.Документ1.Форма.ФормаДокумента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма документа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Forms/ФормаДокумента/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Forms/ФормаДокумента/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [
+ {
+ "event": "NewWriteProcessing",
+ "name": "ОбработкаЗаписиНового"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "~Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 16,
+ "name": "ТабличнаяЧасть1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 29,
+ "name": "ТабличнаяЧасть1НомерСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1.LineNumber",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "ТабличнаяЧасть1Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 35,
+ "name": "ТабличнаяЧасть1Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "c7c49315-4318-459c-9a6b-8b293ef3e772",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Документ1.Form.ФормаСписка",
+ "mdoRefRu": "Документ.Документ1.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 3,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 19,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "Проведен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Posted",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 31,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9b76b5be-bacf-4d63-b745-4024668740d2",
+ "name": "ФормаВыбора",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Документ1.Form.ФормаВыбора",
+ "mdoRefRu": "Документ.Документ1.Форма.ФормаВыбора"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма выбора"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Forms/ФормаВыбора/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Forms/ФормаВыбора/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 3,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 19,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "Проведен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Posted",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 31,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Documents/Документ1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Документ1",
+ "objectBelonging": "OWN",
+ "registerRecords": [
+ [
+ {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РегистрСведений2",
+ "mdoRefRu": "РегистрСведений.РегистрСведений2"
+ },
+ {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "tabularSections": [
+ {
+ "uuid": "508fe2d9-44b0-4b34-a349-2b0bcae6adc4",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "55f8b5cd-5f29-4034-9cb0-000180f11754",
+ "name": "Реквизит1",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "22b9ca2e-c861-4f47-8377-cc364b9ebf5d",
+ "name": "Реквизит2",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит2",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [],
+ "uuid": "ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json" "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json"
new file mode 100644
index 000000000..be91ca850
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Documents.\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021_edt.json"
@@ -0,0 +1,924 @@
+{"com.github._1c_syntax.bsl.mdo.Document": {
+ "attributes": [
+ [
+ {
+ "uuid": "681aaa11-422a-41a6-bd93-28b2ad83f595",
+ "name": "Реквизит1",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.Attribute.Реквизит1",
+ "mdoRefRu": "Документ.Документ1.Реквизит.Реквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "bdbbb8f0-84af-4a72-80c4-21f7436bbe99",
+ "name": "Реквизит2",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.Attribute.Реквизит2",
+ "mdoRefRu": "Документ.Документ1.Реквизит.Реквизит2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f9b6dbc4-79c1-4985-bfd2-87cb8c9fb01c",
+ "name": "Реквизит3",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.Attribute.Реквизит3",
+ "mdoRefRu": "Документ.Документ1.Реквизит.Реквизит3"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [
+ [
+ {
+ "uuid": "cdb33f38-7e75-444a-ab2f-bb267be790da",
+ "name": "Команда",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Document.Документ1.Command.Команда",
+ "mdoRefRu": "Документ.Документ1.Команда.Команда"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Команда"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Commands/Команда/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ },
+ {
+ "uuid": "cdb33f38-7e75-444a-ab2f-bb267be790df",
+ "name": "Команда2",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Document.Документ1.Command.Команда2",
+ "mdoRefRu": "Документ.Документ1.Команда.Команда2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Команда"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Commands/Команда2/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ []
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "875c9efc-f2ae-4773-bac2-3556424557c3",
+ "name": "ФормаДокумента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Документ1.Form.ФормаДокумента",
+ "mdoRefRu": "Документ.Документ1.Форма.ФормаДокумента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма документа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Forms/ФормаДокумента/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Forms/ФормаДокумента/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [
+ {
+ "event": "NewWriteProcessing",
+ "name": "ОбработкаЗаписиНового"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "~Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 16,
+ "name": "ТабличнаяЧасть1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 29,
+ "name": "ТабличнаяЧасть1НомерСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1.LineNumber",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "ТабличнаяЧасть1Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 35,
+ "name": "ТабличнаяЧасть1Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Объект.ТабличнаяЧасть1.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "c7c49315-4318-459c-9a6b-8b293ef3e772",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Документ1.Form.ФормаСписка",
+ "mdoRefRu": "Документ.Документ1.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Forms/ФормаСписка/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 3,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 19,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "Проведен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Posted",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 31,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9b76b5be-bacf-4d63-b745-4024668740d2",
+ "name": "ФормаВыбора",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Документ1.Form.ФормаВыбора",
+ "mdoRefRu": "Документ.Документ1.Форма.ФормаВыбора"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма выбора"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Forms/ФормаВыбора/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/Forms/ФормаВыбора/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 3,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 19,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 25,
+ "name": "Проведен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Posted",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "ПометкаУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.DeletionMark",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 31,
+ "name": "Реквизит1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Реквизит2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "Реквизит3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "dataPath": {
+ "segments": "Список.Реквизит3",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Documents/Документ1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Документ1",
+ "objectBelonging": "OWN",
+ "registerRecords": [
+ [
+ {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РегистрСведений2",
+ "mdoRefRu": "РегистрСведений.РегистрСведений2"
+ },
+ {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "tabularSections": [
+ {
+ "uuid": "508fe2d9-44b0-4b34-a349-2b0bcae6adc4",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "55f8b5cd-5f29-4034-9cb0-000180f11754",
+ "name": "Реквизит1",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "22b9ca2e-c861-4f47-8377-cc364b9ebf5d",
+ "name": "Реквизит2",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1.Attribute.Реквизит2",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1.Реквизит.Реквизит2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [],
+ "uuid": "ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Enums.\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.json" "b/src/test/resources/fixtures/mdclasses/Enums.\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.json"
new file mode 100644
index 000000000..3bb5d9a75
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Enums.\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651.json"
@@ -0,0 +1,54 @@
+{"com.github._1c_syntax.bsl.mdo.Enum": {
+ "children": [
+ {
+ "uuid": "47a90ebe-6127-4041-bdd4-def343363004",
+ "name": "ЗначениеПеречисления1",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.Перечисление1.EnumValue.ЗначениеПеречисления1",
+ "mdoRefRu": "Перечисление.Перечисление1.ЗначениеПеречисления.ЗначениеПеречисления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ }
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "enumValues": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue"
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Enums/Перечисление1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Перечисление1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/synonym"
+ },
+ "templates": [],
+ "uuid": "f11f3441-4b64-4344-b1a0-0e4b3e466e03"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Enums.\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651_edt.json" "b/src/test/resources/fixtures/mdclasses/Enums.\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651_edt.json"
new file mode 100644
index 000000000..303907cd9
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Enums.\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651_edt.json"
@@ -0,0 +1,54 @@
+{"com.github._1c_syntax.bsl.mdo.Enum": {
+ "children": [
+ {
+ "uuid": "47a90ebe-6127-4041-bdd4-def343363004",
+ "name": "ЗначениеПеречисления1",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.Перечисление1.EnumValue.ЗначениеПеречисления1",
+ "mdoRefRu": "Перечисление.Перечисление1.ЗначениеПеречисления.ЗначениеПеречисления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ }
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "enumValues": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue"
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Enums/Перечисление1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Перечисление1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/synonym"
+ },
+ "templates": [],
+ "uuid": "f11f3441-4b64-4344-b1a0-0e4b3e466e03"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/EventSubscriptions.\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.json" "b/src/test/resources/fixtures/mdclasses/EventSubscriptions.\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.json"
new file mode 100644
index 000000000..c27c06a90
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/EventSubscriptions.\320\237\320\276\320\264\320\277\320\270\321\201\320\272\320\260\320\235\320\260\320\241\320\276\320\261\321\213\321\202\320\270\320\2651.json"
@@ -0,0 +1,21 @@
+{"com.github._1c_syntax.bsl.mdo.EventSubscription": {
+ "comment": "",
+ "event": "BeforeWrite",
+ "handler": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "ПодпискаНаСобытие1ПередЗаписью"
+ },
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "name": "ПодпискаНаСобытие1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "4da21a7b-3d07-4e6d-b91f-7e1c8ddcffcd"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json" "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json"
new file mode 100644
index 000000000..e9586f3ae
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601.json"
@@ -0,0 +1,54 @@
+{"com.github._1c_syntax.bsl.mdo.ExchangePlan": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "content": [
+ [
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "autoRecord": "ALLOW"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "autoRecord": "DENY"
+ }
+ ],
+ []
+ ],
+ "distributedInfoBase": false,
+ "forms": [],
+ "includeConfigurationExtensions": false,
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ExchangePlans/ПланОбмена1/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ПланОбмена1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "242cb07d-3d2b-4689-b590-d3ed23ac9d10"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json"
new file mode 100644
index 000000000..c7d812ab3
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ExchangePlans.\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601_edt.json"
@@ -0,0 +1,54 @@
+{"com.github._1c_syntax.bsl.mdo.ExchangePlan": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "content": [
+ [
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "autoRecord": "ALLOW"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "autoRecord": "DENY"
+ }
+ ],
+ []
+ ],
+ "distributedInfoBase": false,
+ "forms": [],
+ "includeConfigurationExtensions": false,
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "modules": [
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ExchangePlans/ПланОбмена1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "ПланОбмена1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "242cb07d-3d2b-4689-b590-d3ed23ac9d10"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json" "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json"
new file mode 100644
index 000000000..64da13a0d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224.json"
@@ -0,0 +1,506 @@
+{"com.github._1c_syntax.bsl.mdo.ExternalDataSource": {
+ "children": [
+ {
+ "uuid": "318e517a-2dd6-4cdf-a502-c8cd6e429ff6",
+ "name": "ИнформацияОбОшибках",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Информация об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "RecordSetModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Ext/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "commands": [
+ {
+ "uuid": "ff4437b1-325e-47d7-87f7-9cf5e51460c5",
+ "name": "Command",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Command.Command",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Команда.Command"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Command"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Commands/Command/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/commands/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "fields": [
+ [
+ {
+ "uuid": "87f60b35-2a90-49fd-aa27-c094d7374c98",
+ "name": "Период",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.Период",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.Период"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Период"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "e6e7c2e1-b4b4-4da5-8d1a-b5b7e0c18cdd",
+ "name": "ИдентификаторОшибки",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.ИдентификаторОшибки",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.ИдентификаторОшибки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор ошибки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "5569bb8a-91fa-40b4-a86c-0840769ddf76",
+ "name": "УровеньОшибки",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.УровеньОшибки",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.УровеньОшибки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Уровень ошибки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "e04f524f-a38c-4a4a-9810-f8a87b17089c",
+ "name": "Категория",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.Категория",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.Категория"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Категория"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "09a537fe-b8df-490d-8800-bc1959376cd3",
+ "name": "НомерСеанса",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.НомерСеанса",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.НомерСеанса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Номер сеанса"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "2abf5cec-cec6-4493-9da0-bdc8ae4cf962",
+ "name": "Пользователь",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.Пользователь",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.Пользователь"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Пользователь"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "995d9173-88e3-4afb-b60f-242f530978e7",
+ "name": "ДатаУведомления",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.ДатаУведомления",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.ДатаУведомления"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата уведомления"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "8dbba219-9048-43ac-88b3-ff5cdd4071d1",
+ "name": "ОписаниеОшибки",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE_FILED",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Field.ОписаниеОшибки",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Поле.ОписаниеОшибки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Описание ошибки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ []
+ ],
+ "forms": [
+ [
+ {
+ "uuid": "1d52a188-4e96-435f-9f64-ee0695bb3365",
+ "name": "RecordForm",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Form.RecordForm",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Форма.RecordForm"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Record form"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/RecordForm/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/RecordForm/Ext/Form.xml",
+ "title": {
+ "content": []
+ },
+ "handlers": [
+ {
+ "event": "OnClose",
+ "name": "ПриЗакрытии"
+ }
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "User settings group"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ }
+ ],
+ "attributes": []
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "681048bc-2642-40ec-b037-a61bce5cfab4",
+ "name": "ListForm",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Form.ListForm",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Форма.ListForm"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "List form"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/ListForm/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/ListForm/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ {
+ "event": "OnClose",
+ "name": "ПриЗакрытии"
+ }
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "User settings group"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ "attributes": []
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "templates": [
+ {
+ "uuid": "28805bba-20fd-40dd-b442-1f7ca7dcf665",
+ "name": "Template",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Template.Template",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Макет.Template"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Template"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "dataLockControlMode": "MANAGED"
+ }
+ ],
+ "comment": "",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/owner"
+ },
+ "name": "ТекущаяСУБД",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущая СУБД"
+ ]
+ ]
+ },
+ "tables": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable"
+ }
+ ],
+ "uuid": "2ceefe90-5a06-41ce-aac5-a3293a85946f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json" "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json"
new file mode 100644
index 000000000..b8c35a83c
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ExternalDataSources.\320\242\320\265\320\272\321\203\321\211\320\260\321\217\320\241\320\243\320\221\320\224_edt.json"
@@ -0,0 +1,506 @@
+{"com.github._1c_syntax.bsl.mdo.ExternalDataSource": {
+ "children": [
+ {
+ "uuid": "318e517a-2dd6-4cdf-a502-c8cd6e429ff6",
+ "name": "ИнформацияОбОшибках",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Информация об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "RecordSetModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "commands": [
+ {
+ "uuid": "ff4437b1-325e-47d7-87f7-9cf5e51460c5",
+ "name": "Command",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Command.Command",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Команда.Command"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Command"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Commands/Command/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/commands/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "fields": [
+ [
+ {
+ "uuid": "87f60b35-2a90-49fd-aa27-c094d7374c98",
+ "name": "Период",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..Период",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..Период"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Период"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "e6e7c2e1-b4b4-4da5-8d1a-b5b7e0c18cdd",
+ "name": "ИдентификаторОшибки",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..ИдентификаторОшибки",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..ИдентификаторОшибки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор ошибки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "5569bb8a-91fa-40b4-a86c-0840769ddf76",
+ "name": "УровеньОшибки",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..УровеньОшибки",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..УровеньОшибки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Уровень ошибки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "e04f524f-a38c-4a4a-9810-f8a87b17089c",
+ "name": "Категория",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..Категория",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..Категория"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Категория"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "09a537fe-b8df-490d-8800-bc1959376cd3",
+ "name": "НомерСеанса",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..НомерСеанса",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..НомерСеанса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Номер сеанса"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "2abf5cec-cec6-4493-9da0-bdc8ae4cf962",
+ "name": "Пользователь",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..Пользователь",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..Пользователь"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Пользователь"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "995d9173-88e3-4afb-b60f-242f530978e7",
+ "name": "ДатаУведомления",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..ДатаУведомления",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..ДатаУведомления"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата уведомления"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "8dbba219-9048-43ac-88b3-ff5cdd4071d1",
+ "name": "ОписаниеОшибки",
+ "mdoReference": {
+ "type": "UNKNOWN",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках..ОписаниеОшибки",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках..ОписаниеОшибки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Описание ошибки"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ []
+ ],
+ "forms": [
+ [
+ {
+ "uuid": "1d52a188-4e96-435f-9f64-ee0695bb3365",
+ "name": "RecordForm",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Form.RecordForm",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Форма.RecordForm"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Record form"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/RecordForm/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/RecordForm/Form.form",
+ "title": {
+ "content": []
+ },
+ "handlers": [
+ {
+ "event": "OnClose",
+ "name": "ПриЗакрытии"
+ }
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "User settings group"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ }
+ ],
+ "attributes": []
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "681048bc-2642-40ec-b037-a61bce5cfab4",
+ "name": "ListForm",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Form.ListForm",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Форма.ListForm"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "List form"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/ListForm/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/ExternalDataSources/ТекущаяСУБД/Tables/ИнформацияОбОшибках/Forms/ListForm/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ {
+ "event": "OnClose",
+ "name": "ПриЗакрытии"
+ }
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СписокКомпоновщикНастроекПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "User settings group"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ "attributes": []
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "templates": [
+ {
+ "uuid": "28805bba-20fd-40dd-b442-1f7ca7dcf665",
+ "name": "Template",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Template.Template",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Макет.Template"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Template"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/mdoReference"
+ }
+ }
+ ],
+ "dataLockControlMode": "MANAGED"
+ }
+ ],
+ "comment": "",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/owner"
+ },
+ "name": "ТекущаяСУБД",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущая СУБД"
+ ]
+ ]
+ },
+ "tables": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable"
+ }
+ ],
+ "uuid": "2ceefe90-5a06-41ce-aac5-a3293a85946f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/FilterCriteria.\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.json" "b/src/test/resources/fixtures/mdclasses/FilterCriteria.\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.json"
new file mode 100644
index 000000000..6336b9ed6
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/FilterCriteria.\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601.json"
@@ -0,0 +1,28 @@
+{"com.github._1c_syntax.bsl.mdo.FilterCriterion": {
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.КритерийОтбора1",
+ "mdoRefRu": "КритерийОтбора.КритерийОтбора1"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/FilterCriteria/КритерийОтбора1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "КритерийОтбора1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/FilterCriteria.\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601_edt.json" "b/src/test/resources/fixtures/mdclasses/FilterCriteria.\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601_edt.json"
new file mode 100644
index 000000000..10c523ce8
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/FilterCriteria.\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601_edt.json"
@@ -0,0 +1,28 @@
+{"com.github._1c_syntax.bsl.mdo.FilterCriterion": {
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.КритерийОтбора1",
+ "mdoRefRu": "КритерийОтбора.КритерийОтбора1"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/FilterCriteria/КритерийОтбора1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "КритерийОтбора1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/FunctionalOptions.\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.json" "b/src/test/resources/fixtures/mdclasses/FunctionalOptions.\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.json"
new file mode 100644
index 000000000..214728eda
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/FunctionalOptions.\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\320\260\321\217\320\236\320\277\321\206\320\270\321\2171.json"
@@ -0,0 +1,22 @@
+{"com.github._1c_syntax.bsl.mdo.FunctionalOption": {
+ "comment": "",
+ "content": [],
+ "location": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTION",
+ "mdoRef": "FunctionalOption.ФункциональнаяОпция1",
+ "mdoRefRu": "ФункциональнаяОпция.ФункциональнаяОпция1"
+ },
+ "name": "ФункциональнаяОпция1",
+ "objectBelonging": "OWN",
+ "privilegedGetMode": true,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "d3b7fd71-6570-4047-91e0-b3df75dba08d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/FunctionalOptionsParameters.\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.json" "b/src/test/resources/fixtures/mdclasses/FunctionalOptionsParameters.\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.json"
new file mode 100644
index 000000000..78029ce3c
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/FunctionalOptionsParameters.\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\271.json"
@@ -0,0 +1,25 @@
+{"com.github._1c_syntax.bsl.mdo.FunctionalOptionsParameter": {
+ "comment": "",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTIONS_PARAMETER",
+ "mdoRef": "FunctionalOptionsParameter.ПараметрФункциональныхОпций",
+ "mdoRefRu": "ПараметрФункциональныхОпций.ПараметрФункциональныхОпций"
+ },
+ "name": "ПараметрФункциональныхОпций",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметр функциональных опций"
+ ]
+ ]
+ },
+ "use": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ },
+ "uuid": "9fae7345-6220-4e5b-b4c1-84bb921a58b7"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/HTTPServices.HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.json" "b/src/test/resources/fixtures/mdclasses/HTTPServices.HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.json"
new file mode 100644
index 000000000..5e148295e
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/HTTPServices.HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.json"
@@ -0,0 +1,116 @@
+{"com.github._1c_syntax.bsl.mdo.HTTPService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate": {
+ "uuid": "4d97db36-cfbf-4f11-9647-d95677380b8f",
+ "name": "ШаблонURL",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_URL_TEMPLATE",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон URL"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "methods": [
+ [
+ {
+ "uuid": "c2b0e62c-9d2e-4bd8-8bee-3213ee460ffa",
+ "name": "Метод",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_METHOD",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL.Method.Метод",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL.Метод.Метод"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Метод"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/mdoReference"
+ },
+ "handler": "ШаблонURLМетод"
+ },
+ {
+ "uuid": "b1993b83-8943-4603-a60a-c948b2ee9290",
+ "name": "Метод1",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_METHOD",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL.Method.Метод1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL.Метод.Метод1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Метод1"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/mdoReference"
+ },
+ "handler": "ШаблонURLМетод1"
+ }
+ ],
+ []
+ ],
+ "template": "/*"
+ }
+ }
+ ],
+ "comment": "",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "HTTPServiceModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/HTTPServices/HTTPСервис1/Ext/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "HTTPСервис1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "urlTemplates": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate"
+ }
+ ],
+ "uuid": "3f029e1e-5a9e-4446-b74f-cbcb79b1e2fe"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/HTTPServices.HTTP\320\241\320\265\321\200\320\262\320\270\321\2011_edt.json" "b/src/test/resources/fixtures/mdclasses/HTTPServices.HTTP\320\241\320\265\321\200\320\262\320\270\321\2011_edt.json"
new file mode 100644
index 000000000..26649f40a
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/HTTPServices.HTTP\320\241\320\265\321\200\320\262\320\270\321\2011_edt.json"
@@ -0,0 +1,116 @@
+{"com.github._1c_syntax.bsl.mdo.HTTPService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate": {
+ "uuid": "4d97db36-cfbf-4f11-9647-d95677380b8f",
+ "name": "ШаблонURL",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_URL_TEMPLATE",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон URL"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "methods": [
+ [
+ {
+ "uuid": "c2b0e62c-9d2e-4bd8-8bee-3213ee460ffa",
+ "name": "Метод",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_METHOD",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL.Method.Метод",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL.Метод.Метод"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Метод"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/mdoReference"
+ },
+ "handler": "ШаблонURLМетод"
+ },
+ {
+ "uuid": "b1993b83-8943-4603-a60a-c948b2ee9290",
+ "name": "Метод1",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_METHOD",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL.Method.Метод1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL.Метод.Метод1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Метод1"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/mdoReference"
+ },
+ "handler": "ШаблонURLМетод1"
+ }
+ ],
+ []
+ ],
+ "template": "/*"
+ }
+ }
+ ],
+ "comment": "",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "HTTPServiceModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/HTTPServices/HTTPСервис1/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "HTTPСервис1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "urlTemplates": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.HTTPService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.HTTPServiceURLTemplate"
+ }
+ ],
+ "uuid": "3f029e1e-5a9e-4446-b74f-cbcb79b1e2fe"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/InformationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.json" "b/src/test/resources/fixtures/mdclasses/InformationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.json"
new file mode 100644
index 000000000..7b5eaff0d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/InformationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.json"
@@ -0,0 +1,57 @@
+{"com.github._1c_syntax.bsl.mdo.InformationRegister": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ {
+ "uuid": "7214d9c9-1b47-4057-8220-c8c32fc25d94",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РегистрСведений1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "RecordSetModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/InformationRegisters/РегистрСведений1/Ext/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "РегистрСведений1",
+ "objectBelonging": "OWN",
+ "resources": [],
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym"
+ },
+ "templates": [],
+ "uuid": "184d9d78-9523-4cfa-9542-a7ba72efe4dd"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/InformationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711_edt.json" "b/src/test/resources/fixtures/mdclasses/InformationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711_edt.json"
new file mode 100644
index 000000000..1d4325fb6
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/InformationRegisters.\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711_edt.json"
@@ -0,0 +1,57 @@
+{"com.github._1c_syntax.bsl.mdo.InformationRegister": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ {
+ "uuid": "7214d9c9-1b47-4057-8220-c8c32fc25d94",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РегистрСведений1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "RecordSetModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/InformationRegisters/РегистрСведений1/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "РегистрСведений1",
+ "objectBelonging": "OWN",
+ "resources": [],
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym"
+ },
+ "templates": [],
+ "uuid": "184d9d78-9523-4cfa-9542-a7ba72efe4dd"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Interfaces.\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.json" "b/src/test/resources/fixtures/mdclasses/Interfaces.\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.json"
new file mode 100644
index 000000000..7aacce5d1
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Interfaces.\320\230\320\275\321\202\320\265\321\200\321\204\320\265\320\271\321\2011.json"
@@ -0,0 +1,15 @@
+{"com.github._1c_syntax.bsl.mdo.Interface": {
+ "comment": "",
+ "mdoReference": {
+ "type": "INTERFACE",
+ "mdoRef": "Interface.Интерфейс1",
+ "mdoRefRu": "Интерфейс.Интерфейс1"
+ },
+ "name": "Интерфейс1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "874d641c-12f7-4db7-bde2-dd72c3d5b522"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Languages.\320\220\320\273\320\261\320\260\320\275\321\201\320\272\320\270\320\271.json" "b/src/test/resources/fixtures/mdclasses/Languages.\320\220\320\273\320\261\320\260\320\275\321\201\320\272\320\270\320\271.json"
new file mode 100644
index 000000000..01f0f56c1
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Languages.\320\220\320\273\320\261\320\260\320\275\321\201\320\272\320\270\320\271.json"
@@ -0,0 +1,25 @@
+{"com.github._1c_syntax.bsl.mdo.Language": {
+ "comment": "",
+ "languageCode": "sq",
+ "mdoReference": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Албанский",
+ "mdoRefRu": "Язык.Албанский"
+ },
+ "name": "Албанский",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Албанский"
+ ],
+ [
+ "sq",
+ "Shqip"
+ ]
+ ]
+ },
+ "uuid": "decdbdbf-7512-429b-bd18-346319e86e91"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Languages.\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.json" "b/src/test/resources/fixtures/mdclasses/Languages.\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.json"
new file mode 100644
index 000000000..e63ca8986
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Languages.\320\257\320\277\320\276\320\275\321\201\320\272\320\270\320\271.json"
@@ -0,0 +1,25 @@
+{"com.github._1c_syntax.bsl.mdo.Language": {
+ "comment": "",
+ "languageCode": "ja",
+ "mdoReference": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Японский",
+ "mdoRefRu": "Язык.Японский"
+ },
+ "name": "Японский",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Японский"
+ ],
+ [
+ "ja",
+ "日本語"
+ ]
+ ]
+ },
+ "uuid": "11729685-2de9-4dd6-823f-7ae25fdff505"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json" "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json"
new file mode 100644
index 000000000..eeea4fcb1
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021.json"
@@ -0,0 +1,348 @@
+{"com.github._1c_syntax.bsl.mdo.Report": {
+ "allAttributes": [],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.Отчет1",
+ "mdoRefRu": "Отчет.Отчет1"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Reports/Отчет1/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Reports/Отчет1/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Отчет1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [
+ [
+ {
+ "uuid": "938a7553-1ef1-4d93-b071-0ef1c0740f5b",
+ "name": "МакетОтчета",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.Отчет1.Template.МакетОтчета",
+ "mdoRefRu": "Отчет.Отчет1.Макет.МакетОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ },
+ {
+ "uuid": "e205e6cf-c198-406f-8658-9223527a0d58",
+ "name": "СКД",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.Отчет1.Template.СКД",
+ "mdoRefRu": "Отчет.Отчет1.Макет.СКД"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "СКД"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "НаборДанных1",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 24,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных2",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 65,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.ВерсияДанных КАК ВерсияДанных,\n\tПервыйСправочник.ПометкаУдаления КАК ПометкаУдаления,\n\tПервыйСправочник.Код КАК Код,\n\tПервыйСправочник.Наименование КАК Наименование,\n\tПервыйСправочник.Реквизит1 КАК Реквизит1,\n\tПервыйСправочник.Предопределенный КАК Предопределенный,\n\tПервыйСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "ИмяПредопределенныхДанных",
+ "name": "ИмяПредопределенныхДанных"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Предопределенный",
+ "name": "Предопределенный"
+ },
+ {
+ "dataPath": "Наименование",
+ "name": "Наименование"
+ },
+ {
+ "dataPath": "ВерсияДанных",
+ "name": "ВерсияДанных"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Код",
+ "name": "Код"
+ },
+ {
+ "dataPath": "Реквизит1",
+ "name": "Реквизит1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных3",
+ "type": "DATA_SET_UNION",
+ "dataSource": "",
+ "items": [
+ [
+ {
+ "name": "НаборДанных2",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 110,
+ "column": 11
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных1",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 133,
+ "column": 11
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных4",
+ "type": "DATA_SET_UNION",
+ "dataSource": "",
+ "items": [
+ {
+ "name": "НаборДанных3",
+ "type": "DATA_SET_OBJECT",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 0,
+ "column": 0
+ },
+ "textQuery": ""
+ },
+ "fields": []
+ }
+ ],
+ "querySource": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet/querySource"
+ },
+ "fields": []
+ }
+ ],
+ []
+ ],
+ "querySource": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet/querySource"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных3",
+ "type": "DATA_SET_OBJECT",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet/querySource"
+ },
+ "fields": []
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[4]"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/designer/mdclasses/src/cf/Reports/Отчет1/Templates/СКД/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ },
+ {
+ "uuid": "7f3604a2-474a-4597-ad56-e48854d02085",
+ "name": "ТекстовыйДокумент",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.Отчет1.Template.ТекстовыйДокумент",
+ "mdoRefRu": "Отчет.Отчет1.Макет.ТекстовыйДокумент"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текстовый документ"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "TEXT_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData",
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ }
+ ],
+ []
+ ],
+ "uuid": "34d3754d-298c-4786-92f6-a487db249fc7"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json" "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json"
new file mode 100644
index 000000000..0b2cfbb8d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Reports.\320\236\321\202\321\207\320\265\321\2021_edt.json"
@@ -0,0 +1,348 @@
+{"com.github._1c_syntax.bsl.mdo.Report": {
+ "allAttributes": [],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.Отчет1",
+ "mdoRefRu": "Отчет.Отчет1"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Reports/Отчет1/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Reports/Отчет1/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Отчет1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "tabularSections": [],
+ "templates": [
+ [
+ {
+ "uuid": "938a7553-1ef1-4d93-b071-0ef1c0740f5b",
+ "name": "МакетОтчета",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.Отчет1.Template.МакетОтчета",
+ "mdoRefRu": "Отчет.Отчет1.Макет.МакетОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ },
+ {
+ "uuid": "e205e6cf-c198-406f-8658-9223527a0d58",
+ "name": "СКД",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.Отчет1.Template.СКД",
+ "mdoRefRu": "Отчет.Отчет1.Макет.СКД"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "СКД"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "НаборДанных1",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 24,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных2",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 65,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.ВерсияДанных КАК ВерсияДанных,\n\tПервыйСправочник.ПометкаУдаления КАК ПометкаУдаления,\n\tПервыйСправочник.Код КАК Код,\n\tПервыйСправочник.Наименование КАК Наименование,\n\tПервыйСправочник.Реквизит1 КАК Реквизит1,\n\tПервыйСправочник.Предопределенный КАК Предопределенный,\n\tПервыйСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "ИмяПредопределенныхДанных",
+ "name": "ИмяПредопределенныхДанных"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Предопределенный",
+ "name": "Предопределенный"
+ },
+ {
+ "dataPath": "Наименование",
+ "name": "Наименование"
+ },
+ {
+ "dataPath": "ВерсияДанных",
+ "name": "ВерсияДанных"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Код",
+ "name": "Код"
+ },
+ {
+ "dataPath": "Реквизит1",
+ "name": "Реквизит1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных3",
+ "type": "DATA_SET_UNION",
+ "dataSource": "",
+ "items": [
+ [
+ {
+ "name": "НаборДанных2",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 110,
+ "column": 11
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных1",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 133,
+ "column": 11
+ },
+ "textQuery": "ВЫБРАТЬ\n\tПервыйСправочник.Ссылка КАК Ссылка,\n\tПервыйСправочник.Код КАК Код1\nИЗ\n\tСправочник.ПервыйСправочник КАК ПервыйСправочник"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных4",
+ "type": "DATA_SET_UNION",
+ "dataSource": "",
+ "items": [
+ {
+ "name": "НаборДанных3",
+ "type": "DATA_SET_OBJECT",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 0,
+ "column": 0
+ },
+ "textQuery": ""
+ },
+ "fields": []
+ }
+ ],
+ "querySource": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet/querySource"
+ },
+ "fields": []
+ }
+ ],
+ []
+ ],
+ "querySource": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet/querySource"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Код1",
+ "name": "Код1"
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НаборДанных3",
+ "type": "DATA_SET_OBJECT",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet/querySource"
+ },
+ "fields": []
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[3]/items/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet[4]"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/edt/mdclasses/configuration/src/Reports/Отчет1/Templates/СКД/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ },
+ {
+ "uuid": "7f3604a2-474a-4597-ad56-e48854d02085",
+ "name": "ТекстовыйДокумент",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.Отчет1.Template.ТекстовыйДокумент",
+ "mdoRefRu": "Отчет.Отчет1.Макет.ТекстовыйДокумент"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текстовый документ"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "TEXT_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData",
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ }
+ ],
+ []
+ ],
+ "uuid": "34d3754d-298c-4786-92f6-a487db249fc7"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json" "b/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json"
new file mode 100644
index 000000000..eba26ee50
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json"
@@ -0,0 +1,257 @@
+{"com.github._1c_syntax.bsl.mdo.Role": {
+ "comment": "",
+ "data": {
+ "setForNewObjects": false,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ {
+ "name": "Configuration.Конфигурация",
+ "rights": [
+ [
+ {
+ "name": "ADMINISTRATION",
+ "value": true
+ },
+ {
+ "name": "DATA_ADMINISTRATION",
+ "value": true
+ },
+ {
+ "name": "UPDATE_DATA_BASE_CONFIGURATION",
+ "value": true
+ },
+ {
+ "name": "EXCLUSIVE_MODE",
+ "value": true
+ },
+ {
+ "name": "ACTIVE_USERS",
+ "value": true
+ },
+ {
+ "name": "EVENT_LOG",
+ "value": true
+ },
+ {
+ "name": "THIN_CLIENT",
+ "value": true
+ },
+ {
+ "name": "WEB_CLIENT",
+ "value": true
+ },
+ {
+ "name": "THICK_CLIENT",
+ "value": true
+ },
+ {
+ "name": "EXTERNAL_CONNECTION",
+ "value": true
+ },
+ {
+ "name": "AUTOMATION",
+ "value": true
+ },
+ {
+ "name": "ALL_FUNCTIONS_MODE",
+ "value": true
+ },
+ {
+ "name": "COLLABORATION_SYSTEM_INFO_BASE_REGISTRATION",
+ "value": true
+ },
+ {
+ "name": "SAVE_USER_DATA",
+ "value": true
+ },
+ {
+ "name": "CONFIGURATION_EXTENSIONS_ADMINISTRATION",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_OPEN_EXT_DATA_PROCESSORS",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_OPEN_EXT_REPORTS",
+ "value": true
+ },
+ {
+ "name": "OUTPUT",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Document.Документ1",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "INSERT",
+ "value": true
+ },
+ {
+ "name": "UPDATE",
+ "value": true
+ },
+ {
+ "name": "DELETE",
+ "value": true
+ },
+ {
+ "name": "POSTING",
+ "value": true
+ },
+ {
+ "name": "UNDO_POSTING",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_INSERT",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_DELETE",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_SET_DELETION_MARK",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_CLEAR_DELETION_MARK",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_DELETE_MARKED",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_POSTING",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_POSTING_REGULAR",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_UNDO_POSTING",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_CHANGE_OF_POSTED",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.Справочник1",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "INSERT",
+ "value": true
+ },
+ {
+ "name": "UPDATE",
+ "value": true
+ },
+ {
+ "name": "DELETE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_INSERT",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_DELETE",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_SET_DELETION_MARK",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_CLEAR_DELETION_MARK",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_DELETE_MARKED",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_DELETE_PREDEFINED_DATA",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_SET_DELETION_MARK_PREDEFINED_DATA",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_CLEAR_DELETION_MARK_PREDEFINED_DATA",
+ "value": true
+ },
+ {
+ "name": "INTERACTIVE_DELETE_MARKED_PREDEFINED_DATA",
+ "value": true
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "name": "Роль1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "ecad0539-4f9f-491b-b0f2-f8f42d9a7c41"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/ScheduledJobs.\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.json" "b/src/test/resources/fixtures/mdclasses/ScheduledJobs.\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.json"
new file mode 100644
index 000000000..1d2a7865a
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/ScheduledJobs.\320\240\320\265\320\263\320\273\320\260\320\274\320\265\320\275\321\202\320\275\320\276\320\265\320\227\320\260\320\264\320\260\320\275\320\270\320\2651.json"
@@ -0,0 +1,26 @@
+{"com.github._1c_syntax.bsl.mdo.ScheduledJob": {
+ "comment": "",
+ "description": "Описание Регламентное задание 1",
+ "key": "ПроверкаАктивностиСеансаУдаленияОбъектов",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "methodName": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "name": "РегламентноеЗадание1",
+ "objectBelonging": "OWN",
+ "predefined": true,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "use": true,
+ "uuid": "0de0c839-4427-46d9-be68-302f88ac162c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Sequences.\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.json" "b/src/test/resources/fixtures/mdclasses/Sequences.\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.json"
new file mode 100644
index 000000000..f274f80b9
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Sequences.\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141.json"
@@ -0,0 +1,63 @@
+{"com.github._1c_syntax.bsl.mdo.Sequence": {
+ "allAttributes": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.children.Dimension": {
+ "uuid": "763b82dd-2fdb-4a02-a50b-3eb916c02d3d",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ }
+ ],
+ "comment": "",
+ "dimensions": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension"
+ }
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "RecordSetModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Sequences/Последовательность1/Ext/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Последовательность1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym"
+ },
+ "uuid": "514bbcf4-7fc4-4a3e-9245-598fad397eec"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Sequences.\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141_edt.json" "b/src/test/resources/fixtures/mdclasses/Sequences.\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141_edt.json"
new file mode 100644
index 000000000..b2918b221
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Sequences.\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141_edt.json"
@@ -0,0 +1,63 @@
+{"com.github._1c_syntax.bsl.mdo.Sequence": {
+ "allAttributes": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.children.Dimension": {
+ "uuid": "763b82dd-2fdb-4a02-a50b-3eb916c02d3d",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ }
+ ],
+ "comment": "",
+ "dimensions": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension"
+ }
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "RecordSetModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Sequences/Последовательность1/RecordSetModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Последовательность1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Sequence/allAttributes/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym"
+ },
+ "uuid": "514bbcf4-7fc4-4a3e-9245-598fad397eec"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/SessionParameters.\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.json" "b/src/test/resources/fixtures/mdclasses/SessionParameters.\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.json"
new file mode 100644
index 000000000..697b5b548
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/SessionParameters.\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\241\320\265\320\260\320\275\321\201\320\2601.json"
@@ -0,0 +1,15 @@
+{"com.github._1c_syntax.bsl.mdo.SessionParameter": {
+ "comment": "",
+ "mdoReference": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ПараметрСеанса1",
+ "mdoRefRu": "ПараметрСеанса.ПараметрСеанса1"
+ },
+ "name": "ПараметрСеанса1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "66844df5-823b-40f1-ab8a-b07c1cb7462f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/StyleItems.\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.json" "b/src/test/resources/fixtures/mdclasses/StyleItems.\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.json"
new file mode 100644
index 000000000..dbb0c1321
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/StyleItems.\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\241\321\202\320\270\320\273\321\2171.json"
@@ -0,0 +1,15 @@
+{"com.github._1c_syntax.bsl.mdo.StyleItem": {
+ "comment": "",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ЭлементСтиля1",
+ "mdoRefRu": "ЭлементСтиля.ЭлементСтиля1"
+ },
+ "name": "ЭлементСтиля1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "68047ae8-62aa-4696-9780-d364feb3cc10"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Styles.\320\241\321\202\320\270\320\273\321\214.json" "b/src/test/resources/fixtures/mdclasses/Styles.\320\241\321\202\320\270\320\273\321\214.json"
new file mode 100644
index 000000000..b73b0d135
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Styles.\320\241\321\202\320\270\320\273\321\214.json"
@@ -0,0 +1,20 @@
+{"com.github._1c_syntax.bsl.mdo.Style": {
+ "comment": "",
+ "mdoReference": {
+ "type": "STYLE",
+ "mdoRef": "Style.Стиль",
+ "mdoRefRu": "Стиль.Стиль"
+ },
+ "name": "Стиль",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Стиль"
+ ]
+ ]
+ },
+ "uuid": "d6aaa851-cba7-486d-92f4-ab31b1628c6b"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Subsystems.\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.json" "b/src/test/resources/fixtures/mdclasses/Subsystems.\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.json"
new file mode 100644
index 000000000..49d213ce4
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Subsystems.\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.json"
@@ -0,0 +1,208 @@
+{"com.github._1c_syntax.bsl.mdo.Subsystem": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 2,
+ "com.github._1c_syntax.bsl.mdo.Subsystem": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 0
+ }
+ ],
+ "comment": "",
+ "content": [
+ [
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ }
+ ],
+ []
+ ],
+ "explanation": {
+ "content": []
+ },
+ "includeHelpInContents": true,
+ "includeInCommandInterface": true,
+ "mdoReference": {
+ "type": "SUBSYSTEM",
+ "mdoRef": "Subsystem.ПерваяПодсистема.Subsystem.ПодчиненнаяПодсистема",
+ "mdoRefRu": "Подсистема.ПерваяПодсистема.Подсистема.ПодчиненнаяПодсистема"
+ },
+ "name": "ПодчиненнаяПодсистема",
+ "objectBelonging": "OWN",
+ "parentSubsystem": {
+ "type": "SUBSYSTEM",
+ "mdoRef": "Subsystem.ПерваяПодсистема",
+ "mdoRefRu": "Подсистема.ПерваяПодсистема"
+ },
+ "subsystems": [],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подчиненная подсистема"
+ ]
+ ]
+ },
+ "uuid": "0fbc4f99-ef89-4d98-9b8f-d26c216c8e31"
+ },
+ "com.github._1c_syntax.bsl.mdo.Subsystem": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.Subsystem": {
+ "children": [],
+ "comment": "",
+ "content": [
+ [
+ {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ },
+ {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ }
+ ],
+ []
+ ],
+ "explanation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem/explanation"
+ },
+ "includeHelpInContents": true,
+ "includeInCommandInterface": true,
+ "mdoReference": {
+ "type": "SUBSYSTEM",
+ "mdoRef": "Subsystem.ПерваяПодсистема.Subsystem.ПочиненнаяСистема2.Subsystem.ПодчиненнаяПодсистема3Уровня",
+ "mdoRefRu": "Подсистема.ПерваяПодсистема.Подсистема.ПочиненнаяСистема2.Подсистема.ПодчиненнаяПодсистема3Уровня"
+ },
+ "name": "ПодчиненнаяПодсистема3Уровня",
+ "objectBelonging": "OWN",
+ "parentSubsystem": {
+ "type": "SUBSYSTEM",
+ "mdoRef": "Subsystem.ПерваяПодсистема.Subsystem.ПочиненнаяСистема2",
+ "mdoRefRu": "Подсистема.ПерваяПодсистема.Подсистема.ПочиненнаяСистема2"
+ },
+ "subsystems": [],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подчиненная подсистема3 уровня"
+ ]
+ ]
+ },
+ "uuid": "71eb6d50-7c51-41b4-9a43-753e49ee518b"
+ }
+ }
+ ],
+ "comment": "",
+ "content": [
+ [
+ {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ }
+ ],
+ []
+ ],
+ "explanation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem/explanation"
+ },
+ "includeHelpInContents": true,
+ "includeInCommandInterface": true,
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem[2]/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem/parentSubsystem"
+ },
+ "name": "ПочиненнаяСистема2",
+ "objectBelonging": "OWN",
+ "parentSubsystem": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem/parentSubsystem"
+ },
+ "subsystems": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem[2]/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem"
+ }
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Починенная система2"
+ ]
+ ]
+ },
+ "uuid": "c2e12fa5-e679-4932-8c37-db175f268b3d"
+ }
+ }
+ ],
+ "comment": "",
+ "content": [],
+ "explanation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem/explanation"
+ },
+ "includeHelpInContents": true,
+ "includeInCommandInterface": true,
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem/parentSubsystem"
+ },
+ "name": "ПерваяПодсистема",
+ "objectBelonging": "OWN",
+ "parentSubsystem": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "subsystems": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Subsystem/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.Subsystem[2]"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Первая подсистема"
+ ]
+ ]
+ },
+ "uuid": "3d00f7d6-e3b0-49cf-8093-e2e4f6ea2293"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/Tasks.\320\227\320\260\320\264\320\260\321\207\320\2601.json" "b/src/test/resources/fixtures/mdclasses/Tasks.\320\227\320\260\320\264\320\260\321\207\320\2601.json"
new file mode 100644
index 000000000..992c285f6
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/Tasks.\320\227\320\260\320\264\320\260\321\207\320\2601.json"
@@ -0,0 +1,73 @@
+{"com.github._1c_syntax.bsl.mdo.Task": {
+ "addressingAttributes": [
+ {
+ "uuid": "bf531047-7ec7-4c74-bfdb-917138b2127c",
+ "name": "РеквизитАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.Задача1.AddressingAttribute.РеквизитАдресации",
+ "mdoRefRu": "Задача.Задача1.РеквизитАдресации.РеквизитАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ }
+ }
+ ],
+ "attributes": [],
+ "children": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute"
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "modules": [],
+ "name": "Задача1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "c251fcec-ec02-4ef4-8f70-4d70db6631ea"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/WSReferences.WS\320\241\321\201\321\213\320\273\320\272\320\260.json" "b/src/test/resources/fixtures/mdclasses/WSReferences.WS\320\241\321\201\321\213\320\273\320\272\320\260.json"
new file mode 100644
index 000000000..d14bb2cc1
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/WSReferences.WS\320\241\321\201\321\213\320\273\320\272\320\260.json"
@@ -0,0 +1,21 @@
+{"com.github._1c_syntax.bsl.mdo.WSReference": {
+ "comment": "",
+ "locationURL": "http://ya.ru",
+ "mdoReference": {
+ "type": "WS_REFERENCE",
+ "mdoRef": "WSReference.WSСсылка",
+ "mdoRefRu": "WSСсылка.WSСсылка"
+ },
+ "name": "WSСсылка",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "WSСсылка"
+ ]
+ ]
+ },
+ "uuid": "95b745f2-e1fa-4f94-b7f9-f3f0224fc8c7"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/WebServices.Web\320\241\320\265\321\200\320\262\320\270\321\2011.json" "b/src/test/resources/fixtures/mdclasses/WebServices.Web\320\241\320\265\321\200\320\262\320\270\321\2011.json"
new file mode 100644
index 000000000..f163b1d26
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/WebServices.Web\320\241\320\265\321\200\320\262\320\270\321\2011.json"
@@ -0,0 +1,105 @@
+{"com.github._1c_syntax.bsl.mdo.WebService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 2,
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "21c0c4a9-5f3b-4147-be1e-500ed834fae4",
+ "name": "Операция",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.WebСервис1.Operation.Операция",
+ "mdoRefRu": "WebСервис.WebСервис1.Операция.Операция"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Операция"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.WebСервис1",
+ "mdoRefRu": "WebСервис.WebСервис1"
+ },
+ "procedureName": "Операция1",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": []
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "7de4ce76-1b08-4853-81fc-0c8756321f78",
+ "name": "Операция1",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.WebСервис1.Operation.Операция1",
+ "mdoRefRu": "WebСервис.WebСервис1.Операция.Операция1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Операция1"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "Операция11",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": []
+ }
+ }
+ ],
+ "comment": "",
+ "descriptorFileName": "ws1.1cws",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "WEBServiceModule",
+ "uri": "src/test/resources/ext/designer/mdclasses/src/cf/WebServices/WebСервис1/Ext/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "WebСервис1",
+ "namespace": "http://test.test",
+ "objectBelonging": "OWN",
+ "operations": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]"
+ }
+ ],
+ []
+ ],
+ "reuseSessions": "AUTO_USE",
+ "sessionMaxAge": 20,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "d7f9b06b-0799-486e-adff-c45a2d5b8101"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/WebServices.Web\320\241\320\265\321\200\320\262\320\270\321\2011_edt.json" "b/src/test/resources/fixtures/mdclasses/WebServices.Web\320\241\320\265\321\200\320\262\320\270\321\2011_edt.json"
new file mode 100644
index 000000000..d2162772a
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/WebServices.Web\320\241\320\265\321\200\320\262\320\270\321\2011_edt.json"
@@ -0,0 +1,105 @@
+{"com.github._1c_syntax.bsl.mdo.WebService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 2,
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "21c0c4a9-5f3b-4147-be1e-500ed834fae4",
+ "name": "Операция",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.WebСервис1.Operation.Операция",
+ "mdoRefRu": "WebСервис.WebСервис1.Операция.Операция"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Операция"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.WebСервис1",
+ "mdoRefRu": "WebСервис.WebСервис1"
+ },
+ "procedureName": "Операция1",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": []
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "7de4ce76-1b08-4853-81fc-0c8756321f78",
+ "name": "Операция1",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.WebСервис1.Operation.Операция1",
+ "mdoRefRu": "WebСервис.WebСервис1.Операция.Операция1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Операция1"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "Операция11",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": []
+ }
+ }
+ ],
+ "comment": "",
+ "descriptorFileName": "ws1.1cws",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "WEBServiceModule",
+ "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/WebServices/WebСервис1/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "WebСервис1",
+ "namespace": "http://test.test",
+ "objectBelonging": "OWN",
+ "operations": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]"
+ }
+ ],
+ []
+ ],
+ "reuseSessions": "AUTO_USE",
+ "sessionMaxAge": 20,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "d7f9b06b-0799-486e-adff-c45a2d5b8101"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses/XDTOPackages.\320\237\320\260\320\272\320\265\321\202XDTO1.json" "b/src/test/resources/fixtures/mdclasses/XDTOPackages.\320\237\320\260\320\272\320\265\321\202XDTO1.json"
new file mode 100644
index 000000000..c1b4fbc3d
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses/XDTOPackages.\320\237\320\260\320\272\320\265\321\202XDTO1.json"
@@ -0,0 +1,52861 @@
+{"com.github._1c_syntax.bsl.mdo.XDTOPackage": {
+ "comment": "",
+ "data": {
+ "targetNamespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "imports": [
+ [
+ "http://www.1c.ru/SSL/Exchange/Message",
+ "http://www.1c.ru/SSL/Exchange/Message2"
+ ],
+ []
+ ],
+ "valueTypes": [
+ [
+ {
+ "name": "ТипДатаФНС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": []
+ },
+ {
+ "name": "ТипКоличество",
+ "base": "xs:decimal",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипКратность",
+ "base": "xs:int",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипКурс",
+ "base": "xs:decimal",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипНомерДокумента",
+ "base": "xs:string",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипНомерДекларации",
+ "base": "xs:string",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипНомерСтроки",
+ "base": "xs:int",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипИдентификаторСтроки",
+ "base": "xs:string",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипНоль",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ "0"
+ ]
+ },
+ {
+ "name": "ТипСумма",
+ "base": "xs:decimal",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "АмортизационныеГруппы",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Первая",
+ "Вторая",
+ "Третья",
+ "Четвертая",
+ "Пятая",
+ "Шестая",
+ "Седьмая",
+ "Восьмая",
+ "Девятая",
+ "Десятая",
+ "Отдельная"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВариантыОплаты",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Аванс",
+ "Предоплата",
+ "Кредит",
+ "ОтсрочкаПлатежа"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВариантыОтраженияИзлишковПриПоступлении",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ВПользуПоставщика",
+ "НаПрочиеДоходы"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВариантыОтраженияНедостачиПриПоступлении",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ЗаСчетСтороннейКомпании",
+ "ЗаСчетПоставщика",
+ "НаПрочиеРасходы"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидДеятельностиРаздельногоУчетаНДС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПоФактическомуИспользованию",
+ "ЭкспортСырьевыхТоваров",
+ "ЭкспортНеСырьевыхТоваров",
+ "НеОблагаетсяНДС",
+ "ОблагаетсяЕНВД",
+ "ОблагаетсяНДС",
+ "ОпределяетсяРаспределением"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыБанковскихСчетов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Расчетный",
+ "Депозитный",
+ "Ссудный",
+ "ЧековыеКнижки",
+ "Аккредитивы",
+ "Иной"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыДенежныхДокументов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Билеты",
+ "Путевки",
+ "ПочтовыеМарки",
+ "ТалоныНаГСМ",
+ "Прочее"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыДоговоров",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "СПокупателем",
+ "СПоставщиком",
+ "СКомиссионером",
+ "СКомитентом",
+ "СКомитентомНаЗакупку",
+ "СКомиссионеромНаЗакупку",
+ "Прочее"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыКИ",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПочтовыйАдрес",
+ "ЮридическийАдрес",
+ "ФактическийАдрес",
+ "Телефон",
+ "ТелефонДомашний",
+ "ТелефонРабочий",
+ "Факс",
+ "ВебСтраница",
+ "АдресЭлектроннойПочты",
+ "Skype",
+ "ПользовательскаяКИДругое",
+ "ПользовательскаяКИТелефон",
+ "ПользовательскаяКИАдрес",
+ "ПользовательскаяКИАдресЭлектроннойПочты",
+ "ПользовательскаяКИВебСтраница",
+ "ПользовательскаяКИФакс",
+ "ПользовательскаяКИSkype"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыЛицензийАлкогольнойПродукции",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Пиво",
+ "АлкогольнаяПродукция",
+ "СпиртосодержащаяПищеваяПродукция",
+ "СпиртосодержащаяНеПищеваяПродукция",
+ "Спирт"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОбъектовУчетаНМА",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НематериальныйАктив",
+ "РасходыНаНИОКР"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийВозвратОтПокупателя",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ВозвратОтКлиента",
+ "ВозвратОтКомиссионера",
+ "ВозвратОтРозничногоПокупателя"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийВозвратПоставщику",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ВозвратПоставщику",
+ "ВозвратКомитенту"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийВыпускаПродукции",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ВыпускПродукцииНаСклад",
+ "ВыпускПродукцииВПодразделение"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийИсправленияПоступленияРеализации",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "СогласованноеИзменение",
+ "ИсправлениеОшибки"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийКорректировкаДолга",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "СписаниеЗадолженности",
+ "ПереносЗадолженности",
+ "ПроведениеВзаимозачета"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийПоПлатежнойКарте",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ОплатаОтКлиентаПлатежнойКартой",
+ "ВозвратОплатыКлиентуНаПлатежнуюКарту"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийПоступленияТоваров",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПокупкаУПоставщика",
+ "ПриемНаКомиссию",
+ "ЗакупкаПоИмпорту"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийРКОНаБанковскийСчет",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ВзносНаличными",
+ "Инкассация"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийРеализацияТоваровУслуг",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "РеализацияКлиенту",
+ "ПередачаНаКомиссию",
+ "ОтгрузкаБезПереходаПравСобственности_ВПути",
+ "ОтгрузкаБезПереходаПравСобственности_Реализовано"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийСБДСПрочее",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПрочееСписание",
+ "ВнутренняяПередача"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийСборкаТоваров",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Сборка",
+ "Разборка"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийСПроезднымиДокументами",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Покупка",
+ "Доплата",
+ "Возврат",
+ "ЗаменаВозврат",
+ "ЗаменаПокупка"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОтветственныхЛиц",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Руководитель",
+ "ГлавныйБухгалтер",
+ "РуководительКадровойСлужбы",
+ "Кассир",
+ "ОтветственныйЗаБухгалтерскиеРегистры",
+ "ОтветственныйЗаНалоговыеРегистры",
+ "УполномоченныйПредставитель",
+ "Исполнитель",
+ "Прочее"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыРасчетовСКонтрагентами",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "СПоставщиком",
+ "СПокупателем",
+ "КредитыИЗаймы",
+ "Прочее"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыРасчетовСПокупателямиПоставщиками",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Долг",
+ "Аванс"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыРасчетовПоКредитамИЗаймам",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "КраткосрочныеКредиты",
+ "ПроцентыПоКраткосрочнымКредитам",
+ "КраткосрочныеЗаймы",
+ "ПроцентыПоКраткосрочнымЗаймам",
+ "ДолгосрочныеКредиты",
+ "ПроцентыПоДолгосрочнымКредитам",
+ "ДолгосрочныеЗаймы",
+ "ПроцентыПоДолгосрочнымЗаймам",
+ "Комиссия"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыРасчетовССотрудниками",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Займы",
+ "Подотчет",
+ "ДоговорПодряда",
+ "Депоненты"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыСкидок",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НаТовар",
+ "ПодарочнаяКарта",
+ "Дисконтная"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыСобытийОС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПринятиеКУчету",
+ "ВводВЭксплуатацию",
+ "ПринятиеКУчетуСВводомВЭксплуатацию",
+ "НачислениеАмортизации",
+ "ВнутреннееПеремещение",
+ "ТекущийРемонт",
+ "СреднийРемонт",
+ "КапитальныйРемонт",
+ "Переоценка",
+ "Реконструкция",
+ "Достройка",
+ "Дооборудование",
+ "ЧастичнаяЛиквидация",
+ "Модернизация",
+ "ПодготовкаКПередаче",
+ "Передача",
+ "Списание",
+ "Прочее"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыСчетаФактуры",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НаРеализацию",
+ "Корректировочный",
+ "НаАванс",
+ "НаАвансКомитента",
+ "СуммовыеРазницы",
+ "НалоговыйАгент",
+ "НаПоступление"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыЦенныхБумаг",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Акция",
+ "БанковскийСертификат",
+ "ВексельПокупателя",
+ "ВексельСобственный",
+ "ВексельТретьихЛиц",
+ "Облигация"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыЭД",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ТОРГ12",
+ "АктНаПередачуПрав"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ГруппыОС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Здания",
+ "Сооружения",
+ "МашиныИОборудование",
+ "ОфисноеОборудование",
+ "ТранспортныеСредства",
+ "ПроизводственныйИХозяйственныйИнвентарь",
+ "РабочийСкот",
+ "ПродуктивныйСкот",
+ "МноголетниеНасаждения",
+ "ЗемельныеУчастки",
+ "ОбъектыПриродопользования",
+ "КапитальныеВложенияВАрендованноеИмущество",
+ "ПрочееИмуществоТребующееГосударственнойРегистрации",
+ "ДругиеВидыОсновныхСредств"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НалогообложениеНДС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПродажаНаЭкспорт",
+ "ПродажаНеОблагаетсяНДС",
+ "ПродажаОблагаетсяЕНВД",
+ "ПродажаОблагаетсяНДС",
+ "ОблагаетсяНДСУПокупателя"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "НалогообложениеНДСПродавца",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НалоговыйАгентПоНДС",
+ "НДСИсчисляетсяПокупателем",
+ "НеОблагаетсяНДС",
+ "ОблагаетсяЕНВД",
+ "ОблагаетсяНДС",
+ "ЭлектронныеУслуги"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Пол",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Мужской",
+ "Женский"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПорядокВключенияСтоимостиОСВСоставРасходовНУ",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НачислениеАмортизации",
+ "ВключениеВРасходыПриПринятииКУчету",
+ "СтоимостьНеВключаетсяВРасходы",
+ "ПринятиеКУчетуЛизинговогоОС",
+ "ВключитьВСоставАмортизируемогоИмущества"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПорядокПогашенияСтоимостиОС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НачислениеАмортизации",
+ "НачислениеИзноса",
+ "СтоимостьНеПогашается",
+ "НачислениеИзносаПоЕНАОФ",
+ "СписаниеПриПринятииКУчету",
+ "ПринятиеКУчетуЛизинговогоОС",
+ "СписатьАмортизациюНаЗатратыПриПринятииКУчету"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыДоставки",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Самовывоз",
+ "ДоКлиента",
+ "СиламиПеревозчика",
+ "СиламиПеревозчикаПоАдресу",
+ "СиламиПоставщикаДоНашегоСклада",
+ "СиламиПеревозчикаДоНашегоСклада",
+ "СиламиПеревозчикаДоПунктаПередачи",
+ "НашимиСиламиСАдресаОтправителя",
+ "КПолучателюОпределяетСлужбаДоставки",
+ "ОтОтправителяОпределяетСлужбаДоставки",
+ "ПоручениеЭкспедиторуСоСклада",
+ "ПоручениеЭкспедиторуНаСклад",
+ "ПоручениеЭкспедиторуВПункте"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СостоянияОплаты",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НеОплачен",
+ "ОплаченЧастично",
+ "Оплачен",
+ "Отменен"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СостоянияОтгрузки",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НеОтгружен",
+ "ОтгруженЧастично",
+ "Отгружен",
+ "Отменен"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыВыплаты",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ЧерезБанк",
+ "ЧерезКассу",
+ "ЧерезРаздатчика",
+ "ПеречислениемНаСчета"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыПогашенияСтоимостиТМЦ",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПриПередаче",
+ "ПоСроку",
+ "ПоНаработке"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыВыставленияСчетаФактуры",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НаБумажномНосителе",
+ "ВЭлектронномВиде"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыНачисленияАмортизацииНМАБУ",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Линейный",
+ "УменьшаемогоОстатка",
+ "ПропорциональноОбъемуПродукции"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыНачисленияАмортизацииНМАНУ",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Линейный",
+ "Нелинейный",
+ "ПоЕНАОФ"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыНачисленияАмортизацииОС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Линейный",
+ "УменьшаемогоОстатка",
+ "ПоСуммеЧиселЛетИспользования",
+ "ПропорциональноОбъемуПродукции",
+ "ПоЕНАОФ",
+ "ПоЕНАОФНа1000кмПробега"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыПогашенияЗадолженности",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Автоматически",
+ "ПоДокументу",
+ "НеПогашать"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыПоступленияАктивов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПриобретениеЗаПлату",
+ "Строительство",
+ "ВкладВУставныйКапитал",
+ "ВОбменНаДругоеИмущество",
+ "БезвозмездноеПоступление",
+ "ПоДоговоруАренды",
+ "ПоступлениеВДоверительноеУправление",
+ "ВкладВСовместнуюДеятельность",
+ "Иное",
+ "ПоДоговоруЛизинга"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособыРасчетаКомиссионногоВознаграждения",
+ "base": "xs:string",
+ "variety": "",
+ "enumerations": [
+ [
+ "ПроцентОтСуммыПродажи",
+ "ПроцентОтРазницыСуммПродажиИПоступления",
+ "НеРассчитывается"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СтавкиНДС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НДС4",
+ "НДС4_104",
+ "НДС18",
+ "НДС18_118",
+ "НДС2",
+ "НДС2_102",
+ "НДС10",
+ "НДС10_110",
+ "НДС0",
+ "НДС20",
+ "НДС20_120",
+ "БезНДС",
+ "НДСИсчисляетсяНалоговымАгентом"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СтатусыЗаявокНаРасходДС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НеСогласована",
+ "Согласована",
+ "КОплате",
+ "Отклонена"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыЗапасов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "СырьеИМатериалы",
+ "ПокупныеПолуфабрикатыИКомплектующие",
+ "ВозвратнаяТара",
+ "Топливо",
+ "ЗапасныеЧасти",
+ "ПрочиеМатериалы",
+ "СтроительныеМатериалы",
+ "ИнвентарьИХозяйственныеПринадлежности",
+ "СпецоснасткаИСпецодеждаНаСкладе",
+ "СобственныеТовары",
+ "ПокупныеИзделия",
+ "ГотоваяПродукция",
+ "КомиссионныеТовары",
+ "ДавальческиеСырьеИМатериалы"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыНоменклатуры",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Товар",
+ "Услуга",
+ "Работа",
+ "МногооборотнаяТара"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыПлатежныхДокументов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Аккредитив",
+ "БанковскийОрдер",
+ "ИнкассовоеПоручение",
+ "ПлатежныйОрдер",
+ "ПлатежноеПоручение",
+ "ПлатежноеТребование"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыСостоянийЭлектронногоДокумента",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Аннулирован",
+ "ЗакрытПринудительно",
+ "ИзвещениеНаПодписи",
+ "НаПодписи",
+ "НаУтверждении",
+ "НеПолучен",
+ "НеСформирован",
+ "ОбменЗавершен",
+ "ОбменЗавершенСИсправлениями",
+ "ОжидаетсяАннулирование",
+ "ОжидаетсяИзвещениеОПолучении",
+ "ОжидаетсяИсправление",
+ "ОжидаетсяОтправка",
+ "ОжидаетсяОтправкаИзвещения",
+ "ОжидаетсяОтправкаОператору",
+ "ОжидаетсяОтправкаПолучателю",
+ "ОжидаетсяПередачаОператору",
+ "ОжидаетсяПодтверждение",
+ "ОжидаетсяПодтверждениеОператора",
+ "Отклонен",
+ "ОшибкаПередачи",
+ "ТребуетсяАннулировать",
+ "ТребуетсяУточнитьДокумент"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыСостоянийОбменаЭД",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ВсеВыполнено",
+ "ДействийНеТребуется",
+ "ТребуютсяДействия",
+ "Отклонен"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыСкладов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Оптовый",
+ "Розничный",
+ "НеавтоматизированнаяТорговаяТочка"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыУслуг",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Собственные",
+ "Агентские"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ФормыОплаты",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Наличная",
+ "Безналичная",
+ "ПлатежнаяКарта"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ЮридическоеФизическоеЛицо",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ЮридическоеЛицо",
+ "ФизическоеЛицо"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СправочникСсылка.Банки",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.БанковскиеСчета",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Валюты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ВидыНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ВидыРаботСотрудников",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ВидыРаботСотрудниковГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ГруппыАналитическогоУчетаНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ГруппыАналитическогоУчетаНоменклатурыГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ГруппыНастроекФинансовогоУчетаНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ГруппыНастроекФинансовогоУчетаРасчетов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ДенежныеДокументы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ДисконтныеКарты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Договоры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ВидыДокументовФизическихЛиц",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ВидыПодарочныхСертификатов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Должности",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ДополнительныеРеквизиты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ЕдиницыИзмерения",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ЗначенияДополнительныхРеквизитов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Кассы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.КассыККМ",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Контрагенты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.КонтрагентыГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ЛицензииПоставщиковАлкогольнойПродукции",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.НематериальныеАктивы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Номенклатура",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.НоменклатураГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Организации",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ОсновныеСредства",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Подразделения",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Пользователи",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ПрограммыЛояльности",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ПроезднойДокумент",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.РегистрацииВНалоговомОргане",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СерииНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Склады",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СкладыГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СпецификацииНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СпецификацииНоменклатурыГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СпособыОтраженияЗарплатыВФинансовомУчете",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СпособыОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СтатьиДДС",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СтатьиДДСГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СтатьиДоходов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СтатьиРасходов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СтраныМира",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ТипыЦен",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Упаковки",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.Файлы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ФизическиеЛица",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ФизическиеЛицаГруппа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ХарактеристикиНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ЦенныеБумаги",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ЦеновыеГруппы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ЭквайринговыеТерминалы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.АвансовыйОтчет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.АвизоПоМПЗВходящее",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.АвизоПоМПЗИсходящее",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.АннулированиеПодарочныхСертификатов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВедомостьНаВыплатуЗарплаты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВнесениеДСВКассуККМ",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратДенежныхДокументовПоставщику",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратМатериаловИзПроизводства",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратМатериаловИзЭксплуатации",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратПодарочныхСертификатов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратСырьяДавальцу",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратСырьяОтПереработчика",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратТоваровОтПокупателя",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВозвратТоваровПоставщику",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВыемкаДСИзКассыККМ",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВыдачаДенежныхДокументовПодотчетнику",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВыпускПродукции",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ВыработкаСотрудников",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаказНаПеремещение",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаказКлиента",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаказПоставщику",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗакрытиеКассовойСмены",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаПереводДСВБюджет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаПереводДСНаДругойСчет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаРасходДСВнутренняяПередача",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаРасходДСВыплатаЗарплаты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаРасходДСКонвертацияВалюты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаРасходДСПрочее",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЗаявкаНаРасходДСРасчетыССотрудниками",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПересчетТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ИнвентаризацияТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.КорректировкаДолга",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.КорректировкаПоступленияТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.КорректировкаРеализацииТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.НачислениеОценочныхОбязательствПоОтпускам",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.НачислениеКредитовДепозитов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОперацияПоПлатежнойКарте",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОперацияСПроезднымДокументом",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОприходованиеТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОткрытиеКассовойСмены",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтражениеЗарплатыВФинансовомУчете",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтчетБанкаПоОперациямЭквайринга",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтчетДавальцу",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтчетКомиссионера",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтчетКомитенту",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтчетОРозничныхПродажах",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ОтчетПереработчика",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСВзносНаличными",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСКонвертацияВалюты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСПереводНаДругойСчет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСПоПлатежнымКартам",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСРасчетыСКонтрагентами",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСРасчетыССотрудниками",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСПрочиеДоходы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПБДСПрочееПоступление",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПередачаДавальцу",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПередачаМатериаловВПроизводство",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПередачаМатериаловВЭксплуатацию",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПередачаПереработчику",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПеремещениеДенежныхДокументов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПеремещениеТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПереоценкаТоваровВРознице",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОВнутренняяПередача",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОКонвертацияВалюты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОПолучениеНаличныхВБанке",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОПоступлениеИзДругойКассы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОПоступлениеИзКассыККМ",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОПрочееПоступление",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОПрочиеДоходы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОРасчетыСКонтрагентами",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОРасчетыССотрудниками",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПКОРозничнаяВыручка",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПлатежноеПоручение",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПоступлениеДенежныхДокументовОтПодотчетника",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПоступлениеДенежныхДокументовОтПоставщика",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПоступлениеДенежныхДокументовПрочее",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПоступлениеОтПереработчика",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПоступлениеСырьяОтДавальца",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ПоступлениеТоваровУслуг",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОКонвертацияВалюты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОНаБанковскийСчет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОВнутренняяПередача",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОВыдачаВДругуюКассу",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОВыдачаВКассуККМ",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОВыплатаЗарплаты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОПрочаяВыдача",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОПрочийРасход",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОРасчетыСКонтрагентами",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РКОРасчетыССотрудниками",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РеализацияТоваровУслуг",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСКонвертацияВалюты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСПереводНаДругойСчет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСПлатежиВБюджет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСПеречислениеЗаработнойПлаты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСПрочееСписание",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСПрочиеРасходы",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСРасчетыСКонтрагентами",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДСРасчетыССотрудниками",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СБДССнятиеНаличных",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СборкаТоваров",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СписаниеДенежныхДокументов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СписаниеЗапасов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СписаниеМатериаловИзЭксплуатации",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СписаниеНедостач",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СчетПокупателю",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СчетПоставщика",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СчетФактураВыданный",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.СчетФактураПолученный",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ТаможеннаяДекларация",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.УстановкаЦенНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ЧекККМ",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.SKUКонтрагента",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ИнформативныеОстатки",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ИсходныйДокумент",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипыТипыОплатЧековККМ",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Наличные",
+ "Электронно",
+ "Предоплата",
+ "Постоплата",
+ "ВстречноеПредставление"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПризнакиСпособаРасчета",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Аванс",
+ "ОплатаКредита",
+ "ПередачаБезОплаты",
+ "ПередачаСПолнойОплатой",
+ "ПередачаСЧастичнойОплатой",
+ "ПредоплатаПолная",
+ "ПредоплатаЧастичная"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПризнакиАгента",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "БанковскийПлатежныйАгент",
+ "БанковскийПлатежныйСубАгент",
+ "ПлатежныйАгент",
+ "ПлатежныйСубАгент",
+ "Поверенный",
+ "Комиссионер",
+ "Агент"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СистемыНалогообложения",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Общая",
+ "УпрощеннаяДоход",
+ "УпрощеннаяДоходМинусРасход",
+ "ЕНВД",
+ "ЕдиныйСельскохозяйственныйНалог",
+ "ПатентнаяСистема"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПризнакиПредметаРасчета",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Товар",
+ "ПодакцизныйТовар",
+ "Работа",
+ "Услуга",
+ "СтавкаАзартнойИгры",
+ "ВыигрышАзартнойИгры",
+ "ЛотерейныйБилет",
+ "ВыигрышЛотереи",
+ "ПредоставлениеРезультатаИнтеллектуальнойДеятельности",
+ "ПлатежВыплата",
+ "АгентскоеВознаграждение",
+ "СоставнойПредметРасчета",
+ "ИнойПредметРасчета",
+ "ИмущественноеПраво",
+ "ВнереализационныйДоход",
+ "СтраховыеВзносы",
+ "ТорговыйСбор",
+ "КурортныйСбор"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СправочникСсылка.СостояниеОплатыЗаказа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СостояниеОтгрузкиЗаказа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.СостояниеЭлектронногоДокумента",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.МаркировкаУпаковки",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипыУпаковокНоменклатуры",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "МаркированныйТовар",
+ "МонотоварнаяУпаковка",
+ "МультитоварнаяУпаковка"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыШтрихкодов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "PDF417",
+ "ITF14",
+ "EAN8",
+ "EAN13",
+ "Code39",
+ "Code128",
+ "SSCC",
+ "GS1_DataBarExpandedStacked",
+ "GS1_128",
+ "QR"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СправочникСсылка.ПодразделениеРегламентированногоУчета",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.ДепонированиеЗарплаты",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РегламентированныйОтчет",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ВидыРегламентированнойОтчетности",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "РегламентированнаяОтчетность",
+ "ОтчетностьПоМСФО"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПорядокОкругленияОтчетности",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "НеОкгруглять",
+ "ОкруглятьДо1000",
+ "ОкруглятьДо1000000"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипыПериодов",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "День",
+ "Неделя",
+ "Декада",
+ "Месяц",
+ "Квартал",
+ "Полугодье",
+ "Год"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипУникальныйИдентификатор",
+ "base": "xs:string",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ТипGLN",
+ "base": "xs:string",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СостоянияЗаказа",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Принят",
+ "Подтвержден",
+ "ГотовКВыдаче",
+ "ПереданВДоставку",
+ "Выполнен",
+ "Отменен",
+ "Комплектуется"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СправочникСсылка.СостояниеЗаказа",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ПунктыВыдачиЗаказов",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ВидыОперацийРаспоряженияНаОтгрузку",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ОтгрузкаПоВозвратуПоставщику",
+ "ОтгрузкаПоПеремещению",
+ "ОтгрузкаКлиенту"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидыОперацийРаспоряженияНаПриемку",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ПриемкаОтПоставщика",
+ "ПриемкаПоПеремещению",
+ "ПриемкаПоВозвратуОтКлиента"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ДокументСсылка.РаспоряжениеНаОтгрузку",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ДокументСсылка.РаспоряжениеНаПриемку",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.НастройкиРасчетаРезервовОтпусков",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ВидыДоходовИсполнительногоПроизводства",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "ДоходыБезОграниченияВзысканий",
+ "ЗарплатаВознаграждения",
+ "КомпенсацииНеоблагаемые",
+ "КомпенсацииОблагаемые"
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ТипДоля",
+ "base": "xs:decimal",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ПрайсЛист",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ПозицияПрайсЛиста",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.ПринадлежностьПрайсЛистаКонтрагенту",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "СправочникСсылка.МаркиНоменклатуры",
+ "base": "d2p1:Ref",
+ "variety": "",
+ "enumerations": []
+ },
+ {
+ "name": "ВидыПродукцииИС",
+ "base": "xs:string",
+ "variety": "Atomic",
+ "enumerations": [
+ [
+ "Алкогольная",
+ "Табак",
+ "Обувь",
+ "ЛегкаяПромышленность",
+ "МолочнаяПродукция",
+ "Шины",
+ "Фотоаппараты",
+ "Духи",
+ "Велосипеды",
+ "КреслаКоляски"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "objectTypes": [
+ [
+ {
+ "name": "ЛюбаяСсылка",
+ "base": "",
+ "properties": [
+ {
+ "name": "СсылкаНаОбъект",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "АннулированиеПодарочныхСертификатовСсылка",
+ "type": "d5p1:ДокументСсылка.АннулированиеПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанкиСсылка",
+ "type": "d5p1:СправочникСсылка.Банки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскиеСчетаСсылка",
+ "type": "d5p1:СправочникСсылка.БанковскиеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютыСсылка",
+ "type": "d5p1:СправочникСсылка.Валюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВедомостьНаВыплатуЗарплатыСсылка",
+ "type": "d5p1:ДокументСсылка.ВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыДокументовФизическихЛицСсылка",
+ "type": "d5p1:СправочникСсылка.ВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыНоменклатурыСсылка",
+ "type": "d5p1:СправочникСсылка.ВидыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыПодарочныхСертификатовСсылка",
+ "type": "d5p1:СправочникСсылка.ВидыПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыРаботСотрудниковСсылка",
+ "type": "d5p1:СправочникСсылка.ВидыРаботСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыРаботСотрудниковГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.ВидыРаботСотрудниковГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВнесениеДСВКассуККМСсылка",
+ "type": "d5p1:ДокументСсылка.ВнесениеДСВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратПодарочныхСертификатовСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыемкаДСИзКассыККМСсылка",
+ "type": "d5p1:ДокументСсылка.ВыемкаДСИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыработкаСотрудниковСсылка",
+ "type": "d5p1:ДокументСсылка.ВыработкаСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппыАналитическогоУчетаНоменклатурыСсылка",
+ "type": "d5p1:СправочникСсылка.ГруппыАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппыАналитическогоУчетаНоменклатурыГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.ГруппыАналитическогоУчетаНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппыНастроекФинансовогоУчетаНоменклатурыСсылка",
+ "type": "d5p1:СправочникСсылка.ГруппыНастроекФинансовогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппыНастроекФинансовогоУчетаРасчетовСсылка",
+ "type": "d5p1:СправочникСсылка.ГруппыНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументыСсылка",
+ "type": "d5p1:СправочникСсылка.ДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДисконтныеКартыСсылка",
+ "type": "d5p1:СправочникСсылка.ДисконтныеКарты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоговорыСсылка",
+ "type": "d5p1:СправочникСсылка.Договоры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДолжностиСсылка",
+ "type": "d5p1:СправочникСсылка.Должности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизитыСсылка",
+ "type": "d5p1:СправочникСсылка.ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницыИзмеренияСсылка",
+ "type": "d5p1:СправочникСсылка.ЕдиницыИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗакрытиеКассовойСменыСсылка",
+ "type": "d5p1:ДокументСсылка.ЗакрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗначенияДополнительныхРеквизитовСсылка",
+ "type": "d5p1:СправочникСсылка.ЗначенияДополнительныхРеквизитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассыСсылка",
+ "type": "d5p1:СправочникСсылка.Кассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентыГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.КонтрагентыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентыСсылка",
+ "type": "d5p1:СправочникСсылка.Контрагенты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЛицензииПоставщиковАлкогольнойПродукцииСсылка",
+ "type": "d5p1:СправочникСсылка.ЛицензииПоставщиковАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НоменклатураГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.НоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НоменклатураСсылка",
+ "type": "d5p1:СправочникСсылка.Номенклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацииСсылка",
+ "type": "d5p1:СправочникСсылка.Организации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновныеСредстваСсылка",
+ "type": "d5p1:СправочникСсылка.ОсновныеСредства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделенияСсылка",
+ "type": "d5p1:СправочникСсылка.Подразделения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПользователиСсылка",
+ "type": "d5p1:СправочникСсылка.Пользователи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроезднойДокумент",
+ "type": "d5p1:СправочникСсылка.ПроезднойДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрограммыЛояльностиСсылка",
+ "type": "d5p1:СправочникСсылка.ПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрацииВНалоговомОрганеСсылка",
+ "type": "d5p1:СправочникСсылка.РегистрацииВНалоговомОргане",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладыГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.СкладыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладыСсылка",
+ "type": "d5p1:СправочникСсылка.Склады",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпецификацииНоменклатурыСсылка",
+ "type": "d5p1:СправочникСсылка.СпецификацииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьиДДССсылка",
+ "type": "d5p1:СправочникСсылка.СтатьиДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьиДоходовСсылка",
+ "type": "d5p1:СправочникСсылка.СтатьиДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьиРасходовСсылка",
+ "type": "d5p1:СправочникСсылка.СтатьиРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтраныМираСсылка",
+ "type": "d5p1:СправочникСсылка.СтраныМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипыЦенСсылка",
+ "type": "d5p1:СправочникСсылка.ТипыЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УпаковкиСсылка",
+ "type": "d5p1:СправочникСсылка.Упаковки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическиеЛицаГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.ФизическиеЛицаГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическиеЛицаСсылка",
+ "type": "d5p1:СправочникСсылка.ФизическиеЛица",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ХарактеристикиНоменклатурыСсылка",
+ "type": "d5p1:СправочникСсылка.ХарактеристикиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенныеБумагиСсылка",
+ "type": "d5p1:СправочникСсылка.ЦенныеБумаги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦеновыеГруппыСсылка",
+ "type": "d5p1:СправочникСсылка.ЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвансовыйОтчетСсылка",
+ "type": "d5p1:ДокументСсылка.АвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвизоПоМПЗВходящееСсылка",
+ "type": "d5p1:ДокументСсылка.АвизоПоМПЗВходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвизоПоМПЗИсходящееСсылка",
+ "type": "d5p1:ДокументСсылка.АвизоПоМПЗИсходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратДенежныхДокументовПоставщикуСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратДенежныхДокументовПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратМатериаловИзПроизводстваСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратМатериаловИзПроизводства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратМатериаловИзЭксплуатацииСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратСырьяДавальцуСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратСырьяДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратСырьяОтПереработчикаСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратСырьяОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщикуСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d5p1:ДокументСсылка.ВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыдачаДенежныхДокументовПодотчетникуСсылка",
+ "type": "d5p1:ДокументСсылка.ВыдачаДенежныхДокументовПодотчетнику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыпускПродукцииСсылка",
+ "type": "d5p1:ДокументСсылка.ВыпускПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказНаПеремещениеСсылка",
+ "type": "d5p1:ДокументСсылка.ЗаказНаПеремещение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказКлиентаСсылка",
+ "type": "d5p1:ДокументСсылка.ЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказПоставщикуСсылка",
+ "type": "d5p1:ДокументСсылка.ЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСВнутренняяПередача",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаРасходДСВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаПереводДСВБюджет",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаПереводДСВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаПереводДСНаДругойСчет",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаПереводДСНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСВыплатаЗарплаты",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСКонвертацияВалюты",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСПрочее",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСРасчетыССотрудниками",
+ "type": "d5p1:ДокументСсылка.ЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнвентаризацияТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.ИнвентаризацияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассыККМСсылка",
+ "type": "d5p1:СправочникСсылка.КассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаДолгаСсылка",
+ "type": "d5p1:ДокументСсылка.КорректировкаДолга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаПоступленияТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.КорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаРеализацииТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.КорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачислениеКредитовДепозитовСсылка",
+ "type": "d5p1:ДокументСсылка.НачислениеКредитовДепозитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачислениеОценочныхОбязательствПоОтпускамСсылка",
+ "type": "d5p1:ДокументСсылка.НачислениеОценочныхОбязательствПоОтпускам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОперацияПоПлатежнойКартеСсылка",
+ "type": "d5p1:ДокументСсылка.ОперацияПоПлатежнойКарте",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОприходованиеТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.ОприходованиеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОткрытиеКассовойСменыСсылка",
+ "type": "d5p1:ДокументСсылка.ОткрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтражениеЗарплатыВФинансовомУчетеСсылка",
+ "type": "d5p1:ДокументСсылка.ОтражениеЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетБанкаПоОперациямЭквайрингаСсылка",
+ "type": "d5p1:ДокументСсылка.ОтчетБанкаПоОперациямЭквайринга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетДавальцуСсылка",
+ "type": "d5p1:ДокументСсылка.ОтчетДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d5p1:ДокументСсылка.ОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомитентуСсылка",
+ "type": "d5p1:ДокументСсылка.ОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетОРозничныхПродажахСсылка",
+ "type": "d5p1:ДокументСсылка.ОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетПереработчикаСсылка",
+ "type": "d5p1:ДокументСсылка.ОтчетПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСВзносНаличнымиСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСВзносНаличными",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСВозвратЗарплатыПоЗарплатномуПроектуСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСКонвертацияВалютыСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПереводНаДругойСчетСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПоПлатежнымКартамСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСПоПлатежнымКартам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПрочееПоступлениеСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПрочиеДоходыСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСРасчетыСКонтрагентамиСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСРасчетыССотрудникамиСсылка",
+ "type": "d5p1:ДокументСсылка.ПБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаДавальцуСсылка",
+ "type": "d5p1:ДокументСсылка.ПередачаДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаМатериаловВПроизводствоСсылка",
+ "type": "d5p1:ДокументСсылка.ПередачаМатериаловВПроизводство",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаМатериаловВЭксплуатациюСсылка",
+ "type": "d5p1:ДокументСсылка.ПередачаМатериаловВЭксплуатацию",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаПереработчикуСсылка",
+ "type": "d5p1:ДокументСсылка.ПередачаПереработчику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеДенежныхДокументовСсылка",
+ "type": "d5p1:ДокументСсылка.ПеремещениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.ПеремещениеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПереоценкаТоваровВРозницеСсылка",
+ "type": "d5p1:ДокументСсылка.ПереоценкаТоваровВРознице",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПересчетТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.ПересчетТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОВнутренняяПередачаСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОКонвертацияВалютыСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПолучениеНаличныхВБанкеСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОПолучениеНаличныхВБанке",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПоступлениеИзДругойКассыСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОПоступлениеИзДругойКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПоступлениеИзКассыККМСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОПоступлениеИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПрочееПоступлениеСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПрочиеДоходыСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРасчетыСКонтрагентамиСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРасчетыССотрудникамиСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРозничнаяВыручкаСсылка",
+ "type": "d5p1:ДокументСсылка.ПКОРозничнаяВыручка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежноеПоручениеСсылка",
+ "type": "d5p1:ДокументСсылка.ПлатежноеПоручение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеДенежныхДокументовОтПодотчетникаСсылка",
+ "type": "d5p1:ДокументСсылка.ПоступлениеДенежныхДокументовОтПодотчетника",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеДенежныхДокументовОтПоставщикаСсылка",
+ "type": "d5p1:ДокументСсылка.ПоступлениеДенежныхДокументовОтПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеДенежныхДокументовПрочееСсылка",
+ "type": "d5p1:ДокументСсылка.ПоступлениеДенежныхДокументовПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеОтПереработчикаСсылка",
+ "type": "d5p1:ДокументСсылка.ПоступлениеОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеСырьяОтДавальцаСсылка",
+ "type": "d5p1:ДокументСсылка.ПоступлениеСырьяОтДавальца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d5p1:ДокументСсылка.ПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d5p1:ДокументСсылка.РеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВнутренняяПередачаСсылка",
+ "type": "d5p1:ДокументСсылка.РКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВыдачаВДругуюКассуСсылка",
+ "type": "d5p1:ДокументСсылка.РКОВыдачаВДругуюКассу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВыдачаВКассуККМСсылка",
+ "type": "d5p1:ДокументСсылка.РКОВыдачаВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВыплатаЗарплатыСсылка",
+ "type": "d5p1:ДокументСсылка.РКОВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОКонвертацияВалютыСсылка",
+ "type": "d5p1:ДокументСсылка.РКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОНаБанковскийСчетСсылка",
+ "type": "d5p1:ДокументСсылка.РКОНаБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОПрочаяВыдачаСсылка",
+ "type": "d5p1:ДокументСсылка.РКОПрочаяВыдача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОПрочийРасходСсылка",
+ "type": "d5p1:ДокументСсылка.РКОПрочийРасход",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОРасчетыСКонтрагентамиСсылка",
+ "type": "d5p1:ДокументСсылка.РКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОРасчетыССотрудникамиСсылка",
+ "type": "d5p1:ДокументСсылка.РКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСКонвертацияВалютыСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПереводНаДругойСчетСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчетаСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПеречислениеЗаработнойПлатыСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСПеречислениеЗаработнойПлаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПлатежиВБюджет",
+ "type": "d5p1:ДокументСсылка.СБДСПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПрочееСписаниеСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСПрочееСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПрочиеРасходыСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСПрочиеРасходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыСКонтрагентамиСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыССотрудникамиСсылка",
+ "type": "d5p1:ДокументСсылка.СБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДССнятиеНаличныхСсылка",
+ "type": "d5p1:ДокументСсылка.СБДССнятиеНаличных",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СборкаТоваровСсылка",
+ "type": "d5p1:ДокументСсылка.СборкаТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СерииНоменклатурыСсылка",
+ "type": "d5p1:СправочникСсылка.СерииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпецификацииНоменклатурыГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.СпецификацииНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеДенежныхДокументовСсылка",
+ "type": "d5p1:ДокументСсылка.СписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеЗапасовСсылка",
+ "type": "d5p1:ДокументСсылка.СписаниеЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеМатериаловИзЭксплуатацииСсылка",
+ "type": "d5p1:ДокументСсылка.СписаниеМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеНедостачСсылка",
+ "type": "d5p1:ДокументСсылка.СписаниеНедостач",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособыОтраженияЗарплатыВФинансовомУчетеСсылка",
+ "type": "d5p1:СправочникСсылка.СпособыОтраженияЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособыОтраженияЗарплатыВФинансовомУчетеГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.СпособыОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьиДДСГруппаСсылка",
+ "type": "d5p1:СправочникСсылка.СтатьиДДСГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПокупателюСсылка",
+ "type": "d5p1:ДокументСсылка.СчетПокупателю",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПоставщикаСсылка",
+ "type": "d5p1:ДокументСсылка.СчетПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураВыданныйСсылка",
+ "type": "d5p1:ДокументСсылка.СчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураПолученныйСсылка",
+ "type": "d5p1:ДокументСсылка.СчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможеннаяДекларацияСсылка",
+ "type": "d5p1:ДокументСсылка.ТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УстановкаЦенНоменклатурыСсылка",
+ "type": "d5p1:ДокументСсылка.УстановкаЦенНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФайлыСсылка",
+ "type": "d5p1:СправочникСсылка.Файлы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЧекККМСсылка",
+ "type": "d5p1:ДокументСсылка.ЧекККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭквайринговыеТерминалыСсылка",
+ "type": "d5p1:СправочникСсылка.ЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсходныйДокумент",
+ "type": "d5p1:ДокументСсылка.ИсходныйДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОперацияСПроезднымДокументом",
+ "type": "d5p1:ДокументСсылка.ОперацияСПроезднымДокументом",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d5p1:СправочникСсылка.SKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнформативныеОстатки",
+ "type": "d5p1:СправочникСсылка.ИнформативныеОстатки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкаУпаковки",
+ "type": "d5p1:СправочникСсылка.МаркировкаУпаковки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НематериальныеАктивы",
+ "type": "d5p1:СправочникСсылка.НематериальныеАктивы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОплатыЗаказа",
+ "type": "d5p1:СправочникСсылка.СостояниеОплатыЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОтгрузкиЗаказа",
+ "type": "d5p1:СправочникСсылка.СостояниеОтгрузкиЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЭлектронногоДокумента",
+ "type": "d5p1:СправочникСсылка.СостояниеЭлектронногоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеРегламентированногоУчета",
+ "type": "d5p1:СправочникСсылка.ПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДепонированиеЗарплаты",
+ "type": "d5p1:ДокументСсылка.ДепонированиеЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегламентированныйОтчет",
+ "type": "d5p1:ДокументСсылка.РегламентированныйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЗаказа",
+ "type": "d5p1:СправочникСсылка.СостояниеЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПунктыВыдачиЗаказов",
+ "type": "d5p1:СправочникСсылка.ПунктыВыдачиЗаказов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РаспоряжениеНаОтгрузку",
+ "type": "d5p1:ДокументСсылка.РаспоряжениеНаОтгрузку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РаспоряжениеНаПриемку",
+ "type": "d5p1:ДокументСсылка.РаспоряжениеНаПриемку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НастройкиРасчетаРезервовОтпусков",
+ "type": "d5p1:СправочникСсылка.НастройкиРасчетаРезервовОтпусков",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрайсЛистСсылка",
+ "type": "d5p1:СправочникСсылка.ПрайсЛист",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПозицияПрайсЛиста",
+ "type": "d5p1:СправочникСсылка.ПозицияПрайсЛиста",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринадлежностьПрайсЛистаКонтрагенту",
+ "type": "d5p1:СправочникСсылка.ПринадлежностьПрайсЛистаКонтрагенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркиНоменклатуры",
+ "type": "d5p1:СправочникСсылка.МаркиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "name": "СоставнойЛюбойОбъект",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "АвансовыйОтчет",
+ "type": "d3p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвизоПоМПЗВходящее",
+ "type": "d3p1:КлючевыеСвойстваАвизоПоМПЗВходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвизоПоМПЗИсходящее",
+ "type": "d3p1:КлючевыеСвойстваАвизоПоМПЗИсходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АннулированиеПодарочныхСертификатов",
+ "type": "d3p1:КлючевыеСвойстваАннулированиеПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Банк",
+ "type": "d3p1:КлючевыеСвойстваБанк",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВедомостьНаВыплатуЗарплаты",
+ "type": "d3p1:КлючевыеСвойстваВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРаботСотрудников",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРаботСотрудниковГруппа",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудниковГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидАлкогольнойПродукции",
+ "type": "d3p1:КлючевыеСвойстваВидыАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДокументаФизическогоЛица",
+ "type": "d3p1:КлючевыеСвойстваВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидПодарочногоСертификата",
+ "type": "d3p1:КлючевыеСвойстваВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваВидыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратДенежныхДокументовПоставщику",
+ "type": "d3p1:КлючевыеСвойстваВозвратДенежныхДокументовПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратМатериаловИзПроизводства",
+ "type": "d3p1:КлючевыеСвойстваВозвратМатериаловИзПроизводства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратМатериаловИзЭксплуатации",
+ "type": "d3p1:КлючевыеСвойстваВозвратМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратПодарочныхСертификатов",
+ "type": "d3p1:КлючевыеСвойстваВозвратПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратСырьяДавальцу",
+ "type": "d3p1:КлючевыеСвойстваВозвратСырьяДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратСырьяОтПереработчика",
+ "type": "d3p1:КлючевыеСвойстваВозвратСырьяОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателя",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщику",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыдачаДенежныхДокументовПодотчетнику",
+ "type": "d3p1:КлючевыеСвойстваВыдачаДенежныхДокументовПодотчетнику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыпускПродукции",
+ "type": "d3p1:КлючевыеСвойстваВыпускПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыработкаСотрудников",
+ "type": "d3p1:КлючевыеСвойстваВыработкаСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГодовойГрафикАмортизацииОС",
+ "type": "d3p1:КлючевыеСвойстваГодовыеГрафикиАмортизацииОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаАналитическогоУчетаНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаАналитическогоУчетаНоменклатурыГруппа",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДисконтныеКарты",
+ "type": "d3p1:КлючевыеСвойстваДисконтныеКарты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Должность",
+ "type": "d3p1:КлючевыеСвойстваДолжности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныйРеквизит",
+ "type": "d3p1:КлючевыеСвойстваДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказКлиента",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказНаПеремещение",
+ "type": "d3p1:КлючевыеСвойстваЗаказНаПеремещение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказПоставщику",
+ "type": "d3p1:КлючевыеСвойстваЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаПереводДСВБюджет",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаПереводДСНаДругойСчет",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСВнутренняяПередача",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСВыплатаЗарплаты",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСКонвертацияВалюты",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСПрочее",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСРасчетыССотрудниками",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗначениеДополнительногоРеквизита",
+ "type": "d3p1:КлючевыеСвойстваЗначенияДополнительныхРеквизитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнвентаризацияТоваров",
+ "type": "d3p1:КлючевыеСвойстваИнвентаризацияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Кассы",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентГруппа",
+ "type": "d3p1:КлючевыеСвойстваКонтрагентГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаДолга",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаДолга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаПоступленияТоваров",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаРеализацииТоваров",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЛицензииПоставщиковАлкогольнойПродукции",
+ "type": "d3p1:КлючевыеСвойстваЛицензииПоставщиковАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачислениеОценочныхОбязательствПоОтпускам",
+ "type": "d3p1:КлючевыеСвойстваНачислениеОценочныхОбязательствПоОтпускам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачисленияКредитовДепозитов",
+ "type": "d3p1:КлючевыеСвойстваНачисленияКредитовДепозитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НоменклатураГруппа",
+ "type": "d3p1:КлючевыеСвойстваНоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОперацияПоПлатежнойКарте",
+ "type": "d3p1:КлючевыеСвойстваОперацияПоПлатежнойКарте",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОперацияСПроезднымДокументом",
+ "type": "d3p1:КлючевыеСвойстваОперацияСПроезднымДокументом",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОприходованиеТоваров",
+ "type": "d3p1:КлючевыеСвойстваОприходованиеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновныеСредства",
+ "type": "d3p1:КлючевыеСвойстваОсновныеСредства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтражениеЗарплатыВФинансовомУчете",
+ "type": "d3p1:КлючевыеСвойстваОтражениеЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетБанкаПоОперациямЭквайринга",
+ "type": "d3p1:КлючевыеСвойстваОтчетБанкаПоОперациямЭквайринга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетДавальцу",
+ "type": "d3p1:КлючевыеСвойстваОтчетДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионера",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомитенту",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетОРозничныхПродажах",
+ "type": "d3p1:КлючевыеСвойстваОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетПереработчика",
+ "type": "d3p1:КлючевыеСвойстваОтчетПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСВзносНаличными",
+ "type": "d3p1:КлючевыеСвойстваПБДСВзносНаличными",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "type": "d3p1:КлючевыеСвойстваПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСКонвертацияВалюты",
+ "type": "d3p1:КлючевыеСвойстваПБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПереводНаДругойСчет",
+ "type": "d3p1:КлючевыеСвойстваПБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПоПлатежнымКартам",
+ "type": "d3p1:КлючевыеСвойстваПБДСПоПлатежнымКартам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПрочееПоступление",
+ "type": "d3p1:КлючевыеСвойстваПБДСПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСПрочиеДоходы",
+ "type": "d3p1:КлючевыеСвойстваПБДСПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСРасчетыСКонтрагентами",
+ "type": "d3p1:КлючевыеСвойстваПБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСРасчетыССотрудниками",
+ "type": "d3p1:КлючевыеСвойстваПБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаДавальцу",
+ "type": "d3p1:КлючевыеСвойстваПередачаДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаМатериаловВПроизводство",
+ "type": "d3p1:КлючевыеСвойстваПередачаМатериаловВПроизводство",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаМатериаловВЭксплуатацию",
+ "type": "d3p1:КлючевыеСвойстваПередачаМатериаловВЭксплуатацию",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПередачаПереработчику",
+ "type": "d3p1:КлючевыеСвойстваПередачаПереработчику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеДенежныхДокументов",
+ "type": "d3p1:КлючевыеСвойстваПеремещениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеТоваров",
+ "type": "d3p1:КлючевыеСвойстваПеремещениеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПереоценкаТоваровВРознице",
+ "type": "d3p1:КлючевыеСвойстваПереоценкаТоваровВРознице",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПересчетТоваров",
+ "type": "d3p1:КлючевыеСвойстваПересчетТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОВнутренняяПередача",
+ "type": "d3p1:КлючевыеСвойстваПКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОКонвертацияВалюты",
+ "type": "d3p1:КлючевыеСвойстваПКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПолучениеНаличныхВБанке",
+ "type": "d3p1:КлючевыеСвойстваПКОПолучениеНаличныхВБанке",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПоступлениеИзДругойКассы",
+ "type": "d3p1:КлючевыеСвойстваПКОПоступлениеИзДругойКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПоступлениеИзКассыККМ",
+ "type": "d3p1:КлючевыеСвойстваПКОПоступлениеИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПрочееПоступление",
+ "type": "d3p1:КлючевыеСвойстваПКОПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОПрочиеДоходы",
+ "type": "d3p1:КлючевыеСвойстваПКОПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРасчетыСКонтрагентами",
+ "type": "d3p1:КлючевыеСвойстваПКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРасчетыССотрудниками",
+ "type": "d3p1:КлючевыеСвойстваПКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРозничнаяВыручка",
+ "type": "d3p1:КлючевыеСвойстваПКОРозничнаяВыручка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежноеПоручение",
+ "type": "d3p1:КлючевыеСвойстваПлатежноеПоручение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательНаработки",
+ "type": "d3p1:КлючевыеСвойстваПоказателиНаработки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Пользователь",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеДенежныхДокументовОтПодотчетника",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеДенежныхДокументовОтПодотчетника",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеДенежныхДокументовОтПоставщика",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеДенежныхДокументовОтПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеДенежныхДокументовПрочее",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеДенежныхДокументовПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеОтПереработчика",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеСырьяОтДавальца",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеСырьяОтДавальца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслуг",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрограммыЛояльности",
+ "type": "d3p1:КлючевыеСвойстваПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслуг",
+ "type": "d3p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрацияВНалоговомОргане",
+ "type": "d3p1:КлючевыеСвойстваРегистрацияВНалоговомОргане",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВнутренняяПередача",
+ "type": "d3p1:КлючевыеСвойстваРКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВыдачаВДругуюКассу",
+ "type": "d3p1:КлючевыеСвойстваРКОВыдачаВДругуюКассу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВыдачаВКассуККМ",
+ "type": "d3p1:КлючевыеСвойстваРКОВыдачаВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОВыплатаЗарплаты",
+ "type": "d3p1:КлючевыеСвойстваРКОВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОКонвертацияВалюты",
+ "type": "d3p1:КлючевыеСвойстваРКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОНаБанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваРКОНаБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОПрочаяВыдача",
+ "type": "d3p1:КлючевыеСвойстваРКОПрочаяВыдача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОПрочийРасход",
+ "type": "d3p1:КлючевыеСвойстваРКОПрочийРасход",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОРасчетыСКонтрагентами",
+ "type": "d3p1:КлючевыеСвойстваРКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОРасчетыССотрудниками",
+ "type": "d3p1:КлючевыеСвойстваРКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСКонвертацияВалюты",
+ "type": "d3p1:КлючевыеСвойстваСБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПереводНаДругойСчет",
+ "type": "d3p1:КлючевыеСвойстваСБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПеречислениеЗаработнойПлаты",
+ "type": "d3p1:КлючевыеСвойстваСБДСПеречислениеЗаработнойПлаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "type": "d3p1:КлючевыеСвойстваСБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПлатежиВБюджет",
+ "type": "d3p1:КлючевыеСвойстваСБДСПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПрочееСписание",
+ "type": "d3p1:КлючевыеСвойстваСБДСПрочееСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПрочиеРасходы",
+ "type": "d3p1:КлючевыеСвойстваСБДСПрочиеРасходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыСКонтрагентами",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыССотрудниками",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДССнятиеНаличных",
+ "type": "d3p1:КлючевыеСвойстваСБДССнятиеНаличных",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СборкаТоваров",
+ "type": "d3p1:КлючевыеСвойстваСборкаТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СерииНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваСерииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладГруппа",
+ "type": "d3p1:КлючевыеСвойстваСкладГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СобытиеОС",
+ "type": "d3p1:КлючевыеСвойстваСобытияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпецификацияНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпецификацияНоменклатурыГруппа",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеДенежныхДокументов",
+ "type": "d3p1:КлючевыеСвойстваСписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеЗапасов",
+ "type": "d3p1:КлючевыеСвойстваСписаниеЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеМатериаловИзЭксплуатации",
+ "type": "d3p1:КлючевыеСвойстваСписаниеМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеНедостач",
+ "type": "d3p1:КлючевыеСвойстваСписаниеНедостач",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособОтраженияЗарплатыВФинансовомУчете",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатусыОбъектов",
+ "type": "d3p1:КлючевыеСвойстваСтатусыОбъектов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДСГруппа",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДСГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаМира",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПокупателю",
+ "type": "d3p1:КлючевыеСвойстваСчетПокупателю",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПоставщика",
+ "type": "d3p1:КлючевыеСвойстваСчетПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураВыданный",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураПолученный",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможеннаяДекларация",
+ "type": "d3p1:КлючевыеСвойстваТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Упаковка",
+ "type": "d3p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УстановкаЦенНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваУстановкаЦенНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицоГруппа",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицоГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ХарактеристикаНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенныеБумаги",
+ "type": "d3p1:КлючевыеСвойстваЦенныеБумаги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦеновыеГруппы",
+ "type": "d3p1:КлючевыеСвойстваЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегламентированныйОтчет",
+ "type": "d3p1:КлючевыеСвойстваРегламентированныйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЗаказа",
+ "type": "d3p1:КлючевыеСвойстваСостояниеЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидыПодарочныхСертификатов",
+ "type": "d3p1:КлючевыеСвойстваВидыПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВнесениеДСВКассуККМ",
+ "type": "d3p1:КлючевыеСвойстваВнесениеДСВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыемкаДСИзКассыККМ",
+ "type": "d3p1:КлючевыеСвойстваВыемкаДСИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДепонированиеЗарплаты",
+ "type": "d3p1:КлючевыеСвойстваДепонированиеЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗакрытиеКассовойСмены",
+ "type": "d3p1:КлючевыеСвойстваЗакрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнформативныеОстатки",
+ "type": "d3p1:КлючевыеСвойстваИнформативныеОстатки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсходныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваИсходныйДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассыККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкаУпаковки",
+ "type": "d3p1:КлючевыеСвойстваМаркировкаУпаковки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НематериальныеАктивы",
+ "type": "d3p1:КлючевыеСвойстваНематериальныеАктивы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОткрытиеКассовойСмены",
+ "type": "d3p1:КлючевыеСвойстваОткрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеРегламентированногоУчета",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроезднойДокумент",
+ "type": "d3p1:КлючевыеСвойстваПроезднойДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПунктыВыдачиЗаказов",
+ "type": "d3p1:КлючевыеСвойстваПунктыВыдачиЗаказов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОплатыЗаказа",
+ "type": "d3p1:КлючевыеСвойстваСостояниеОплатыЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОтгрузкиЗаказа",
+ "type": "d3p1:КлючевыеСвойстваСостояниеОтгрузкиЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЭлектронногоДокумента",
+ "type": "d3p1:КлючевыеСвойстваСостояниеЭлектронногоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЧекККМ",
+ "type": "d3p1:КлючевыеСвойстваЧекККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭквайринговыеТерминалы",
+ "type": "d3p1:КлючевыеСвойстваЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Файлы",
+ "type": "d3p1:КлючевыеСвойстваФайлы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РаспоряжениеНаПриемку",
+ "type": "d3p1:КлючевыеСвойстваРаспоряжениеНаПриемку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РаспоряжениеНаОтгрузку",
+ "type": "d3p1:КлючевыеСвойстваРаспоряжениеНаОтгрузку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НастройкиРасчетаРезервовОтпусков",
+ "type": "d3p1:КлючевыеСвойстваНастройкиРасчетаРезервовОтпусков",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрайсЛист",
+ "type": "d3p1:КлючевыеСвойстваПрайсЛист",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПозицияПрайсЛиста",
+ "type": "d3p1:КлючевыеСвойстваПозицияПрайсЛиста",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринадлежностьПрайсЛистаКонтрагенту",
+ "type": "d3p1:КлючевыеСвойстваПринадлежностьПрайсЛистаКонтрагенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркиНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваМаркиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПараметрыПередачиДанных",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ИспользоватьСерии",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьХарактеристики",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьНомераГТД",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьОплатуПлатежнымиКартами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьОплатуБанковскимиКредитами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьЗачетАвансов",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьСкидкиНаценки",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьСебестоимость",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "УдалениеОбъекта",
+ "base": "",
+ "properties": [
+ {
+ "name": "СсылкаНаОбъект",
+ "type": "d3p1:ЛюбаяСсылка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Info",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Date",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "PostDocuments",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваАмортизацияНМА",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НачислятьАмортизациюБУ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособНачисленияАмортизацииБУ",
+ "type": "d3p1:СпособыНачисленияАмортизацииНМАБУ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокПолезногоИспользованияБУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоэффициентБУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбъемПродукцииРаботДляВычисленияАмортизации",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачислятьАмортизациюНУ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособНачисленияАмортизацииНУ",
+ "type": "d3p1:СпособыНачисленияАмортизацииНМАНУ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпециальныйКоэффициентНУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокПолезногоИспользованияНУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияБУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияПР",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияВР",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетАмортизацииБУ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваАмортизацияОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НачислятьАмортизациюБУ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособНачисленияАмортизацииБУ",
+ "type": "d3p1:СпособыНачисленияАмортизацииОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокПолезногоИспользованияБУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГрафикАмортизацииБУ",
+ "type": "d3p1:КлючевыеСвойстваГодовыеГрафикиАмортизацииОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоэффициентАмортизацииБУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоэффициентУскоренияБУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбъемНаработкиБУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательНаработки",
+ "type": "d3p1:КлючевыеСвойстваПоказателиНаработки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачислятьАмортизациюНУ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпециальныйКоэффициентНУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокПолезногоИспользованияНУ",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияБУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяАмортизацияПР",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НакопленнаяВыработка",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетАмортизацииБУ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваВыплаченнаяЗП",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Депонент",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВедомостиНаВыплатуЗарплаты",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВедомостиНаВыплатуЗарплаты",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеАлкогольнойПродукции",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "АлкогольнаяПродукция",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидАлкогольнойПродукции",
+ "type": "d3p1:КлючевыеСвойстваВидыАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИмпортнаяАлкогольнаяПродукция",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбъемДАЛ",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроизводительИмпортер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодыПоКлассификаторуЕГАИС",
+ "type": "d3p1:КодыПоКлассификаторуЕГАИС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодАлкогольнойПродукции",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Крепость",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеВзаиморасчетов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсВзаиморасчетов",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КратностьВзаиморасчетов",
+ "type": "d3p1:ТипКратность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыВУсловныхЕдиницах",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКонтрагентом",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоАвансам",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеВходящегоДокумента",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерВходящегоДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВходящегоДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеВходящегоДокумента",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеКлассификатора",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Код",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеЗатрат",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СчетЗатрат",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеЗатрат",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяЗатрат",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаАналитическогоУчетаНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Характеристика",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Серия",
+ "type": "d3p1:КлючевыеСвойстваСерииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Упаковка",
+ "type": "d3p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Штрихкод",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеНомераГТД",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерГТД",
+ "type": "d3p1:ТипНомерДекларации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхождения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеПодарочногоСертификата",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СерийныйНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Штрихкод",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МагнитныйКод",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидПодарочногоСертификата",
+ "type": "d3p1:КлючевыеСвойстваВидыПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДействителенДо",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваИспользованиеДо2009Года",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "АмортизацияДо2009",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокИспользованияНУДо2009",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваМодернизацияОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаПоследнейМодернизации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазваниеДокументаМодернизации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерДокументаМодернизации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СобытиеМодернизации",
+ "type": "d3p1:КлючевыеСвойстваСобытияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПБДС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаВыписки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВходящегоДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВходящегоДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипПлатежногоДокумента",
+ "type": "d3p1:ТипыПлатежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазначениеПлатежа",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваОперацияККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Кассир",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПКО",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Основание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Приложение",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятоОт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВТомЧислеНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГлавныйБухгалтер",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПоступлениеДенежныхДокументов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятоОт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПлатежиВБюджет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СтатусСоставителя",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательКБК",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКАТО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательОснования",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательПериода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательНомера",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательДаты",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательТипа",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПлатежиВБюджетДляБанка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СтатусСоставителя",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательКБК",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКАТО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательОснования",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательПериода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательНомера",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательДаты",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоказательТипа",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПринятиеКУчетуНМА",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаПринятияКУчету",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПриобретения",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПоступления",
+ "type": "d3p1:СпособыПоступленияАктивов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОбъектаУчета",
+ "type": "d3p1:ВидыОбъектовУчетаНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаБУ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваПринятиеКУчетуОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаПринятияКУчету",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерДокументаПринятияКУчету",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазваниеДокументаПринятияКУчету",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СобытиеПринятияКУчету",
+ "type": "d3p1:КлючевыеСвойстваСобытияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПоступления",
+ "type": "d3p1:СпособыПоступленияАктивов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АмортизационнаяГруппа",
+ "type": "d3p1:АмортизационныеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаОС",
+ "type": "d3p1:ГруппыОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодПоОКОФ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ШифрПоЕНАОФ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПорядокПогашенияСтоимостиБУ",
+ "type": "d3p1:ПорядокПогашенияСтоимостиОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПорядокПогашенияСтоимостиНУ",
+ "type": "d3p1:ПорядокВключенияСтоимостиОСВСоставРасходовНУ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаБУ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваРКО",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазначениеПлатежа",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Основание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Приложение",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Выдать",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоДокументу",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Руководитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГлавныйБухгалтер",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваРеквизитыПлатежа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ВидПлатежа",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОплаты",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Очередность",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Код",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазначениеПлатежа",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваСБДС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаВыписки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВходящегоДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВходящегоДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипПлатежногоДокумента",
+ "type": "d3p1:ТипыПлатежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежноеПоручение",
+ "type": "d3p1:КлючевыеСвойстваПлатежноеПоручение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеквизитыПлатежа",
+ "type": "d3p1:ОбщиеСвойстваРеквизитыПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваЗаявокНаОперацииСДС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Статус",
+ "type": "d3p1:СтатусыЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазначениеПлатежа",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КрайнийСрокПлатежа",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УтвержденнаяДатаПлатежа",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторПлатежа",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Автор",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КтоЗаявил",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КтоРешил",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заметки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваЗаявокНаПереводДС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаОперацииСДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваЗаявокНаРасходДС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаОперацииСДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЖелательнаяФормаОплатыНаличные",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЖелательнаяФормаОплатыБезналичные",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЖелательнаяФормаОплатыПлатежнаяКарта",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УтвержденнаяФормаОплаты",
+ "type": "d3p1:ФормыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваСписаниеДенежныхДокументов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Выдано",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваСправочныеДанныеНМА",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрочиеСведения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АмортизационнаяГруппа",
+ "type": "d3p1:АмортизационныеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваСправочныеДанныеОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Изготовитель",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаводскойНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерПаспорта",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыпуска",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваСтоимостьНМА",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ПервоначальнаяСтоимостьБУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПервоначальнаяСтоимостьНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьБУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьПР",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьВР",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваСтоимостьОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ПервоначальнаяСтоимостьБУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПервоначальнаяСтоимостьНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьБУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекущаяСтоимостьПР",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СоставнойДокументПоступления",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "АвансовыйОтчет",
+ "type": "d3p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвизоПоМПЗВходящее",
+ "type": "d3p1:КлючевыеСвойстваАвизоПоМПЗВходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратМатериаловИзПроизводства",
+ "type": "d3p1:КлючевыеСвойстваВозвратМатериаловИзПроизводства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратМатериаловИзЭксплуатации",
+ "type": "d3p1:КлючевыеСвойстваВозвратМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратСырьяОтПереработчика",
+ "type": "d3p1:КлючевыеСвойстваВозвратСырьяОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателя",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыпускПродукции",
+ "type": "d3p1:КлючевыеСвойстваВыпускПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОприходованиеТоваров",
+ "type": "d3p1:КлючевыеСвойстваОприходованиеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеТоваров",
+ "type": "d3p1:КлючевыеСвойстваПеремещениеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеОтПереработчика",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеСырьяОтДавальца",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеСырьяОтДавальца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслуг",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СборкаТоваров",
+ "type": "d3p1:КлючевыеСвойстваСборкаТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсходныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваИсходныйДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СоставнойДокументРасчетов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "АвансовыйОтчетСсылка",
+ "type": "d3p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщикуСсылка",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказКлиентаСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаДолгаСсылка",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаДолга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаПоступленияСсылка",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаРеализацииСсылка",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОперацияПоПлатежнойКартеСсылка",
+ "type": "d3p1:КлючевыеСвойстваОперацияПоПлатежнойКарте",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетДавальцуСсылка",
+ "type": "d3p1:КлючевыеСвойстваОтчетДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомитентуСсылка",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетПереработчикаСсылка",
+ "type": "d3p1:КлючевыеСвойстваОтчетПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПБДСРасчетыСКонтрагентамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваПБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПКОРасчетыСКонтрагентамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваПКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d3p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РКОРасчетыСКонтрагентамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваРКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыСКонтрагентамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможеннаяДекларацияСсылка",
+ "type": "d3p1:КлючевыеСвойстваТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсходныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваИсходныйДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СоставнойОснованияЭлектронныхДокументов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказКлиентаСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказПоставщикуСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаПереводДСВБюджетСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаПереводДСНаДругойСчетСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСВнутренняПередачаСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСВыплатаЗарплатыСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСКонвертацияВалютыСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСПрочееСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСРасчетыСКонтрагентамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДСРасчетыССотрудникамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаПоступленияСсылка",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаРеализацииСсылка",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомитентуСсылка",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d3p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСКонвертацияВалютыСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПереводНаДругойСчетСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчетаСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПеречислениеЗаработнойПлатыСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСПеречислениеЗаработнойПлаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПлатежиВБюджетСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПрочееСписаниеСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСПрочееСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСПрочиеРасходыСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСПрочиеРасходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыСКонтрагентамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДСРасчетыССотрудникамиСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СБДССнятиеНаличныхСсылка",
+ "type": "d3p1:КлючевыеСвойстваСБДССнятиеНаличных",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоговорСсылка",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПокупателюСсылка",
+ "type": "d3p1:КлючевыеСвойстваСчетПокупателю",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураВыданныйСсылка",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураПолученныйСсылка",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщику",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "АвизоМПЗДанныеПоСФ",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:АвизоМПЗДанныеПоСФ.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "АвизоМПЗДанныеПоСФ.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СчетФактура",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураПолученныйСсылка",
+ "type": "d5p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможеннаяДекларацияСсылка",
+ "type": "d5p1:КлючевыеСвойстваТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвансовыйОтчетСсылка",
+ "type": "d5p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБезНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерСтрокиТовары",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ДенежныеДокументыПоступление",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ДенежныеДокументыПоступление.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ДенежныеДокументыПоступление.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДенежныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ДенежныеДокументыСписание",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ДенежныеДокументыСписание.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ДенежныеДокументыСписание.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДенежныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ДополнительныеРеквизиты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ДополнительныеРеквизиты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ЗначениеСвойства",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ЗначениеДополнительногоРеквизитаСсылка",
+ "type": "d5p1:КлючевыеСвойстваЗначенияДополнительныхРеквизитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НоменклатураСсылка",
+ "type": "d5p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НоменклатураГруппаСсылка",
+ "type": "d5p1:КлючевыеСвойстваНоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентСсылка",
+ "type": "d5p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентГруппаСсылка",
+ "type": "d5p1:КлючевыеСвойстваКонтрагентГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанкСсылка",
+ "type": "d5p1:КлючевыеСвойстваБанк",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаСсылка",
+ "type": "d5p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументыСсылка",
+ "type": "d5p1:КлючевыеСвойстваДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоговорСсылка",
+ "type": "d5p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмеренияСсылка",
+ "type": "d5p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияСсылка",
+ "type": "d5p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеСсылка",
+ "type": "d5p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПользовательСсылка",
+ "type": "d5p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладСсылка",
+ "type": "d5p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладГруппаСсылка",
+ "type": "d5p1:КлючевыеСвойстваСкладГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДССсылка",
+ "type": "d5p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходовСсылка",
+ "type": "d5p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходовСсылка",
+ "type": "d5p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаМираСсылка",
+ "type": "d5p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦенСсылка",
+ "type": "d5p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УпаковкаСсылка",
+ "type": "d5p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицоСсылка",
+ "type": "d5p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицоГруппаСсылка",
+ "type": "d5p1:КлючевыеСвойстваФизическоеЛицоГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ХарактеристикаНоменклатурыСсылка",
+ "type": "d5p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Число",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Строка",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Булево",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Свойство",
+ "type": "d3p1:КлючевыеСвойстваДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КодыПоКлассификаторуЕГАИС",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:КодыПоКлассификаторуЕГАИС.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "КодыПоКлассификаторуЕГАИС.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Код",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидАлкогольнойПродукции",
+ "type": "d3p1:КлючевыеСвойстваВидыАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторУпаковки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОперацияККМТовары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ОперацияККМТовары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ОперацияККМТовары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Акциз",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОперацияККМВозвратТоваров",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ОперацияККМВозвратТоваров.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ОперацияККМВозвратТоваров.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаККМПродажи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПродажи",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПродажи",
+ "type": "d3p1:КлючевыеСвойстваЧекККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Акциз",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОплатаПлатежнымиКартами",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ОплатаПлатежнымиКартами.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ОплатаПлатежнымиКартами.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СуммаОплаты",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидКарты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКарты",
+ "type": "xs:string",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Эквайрер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭквайринговыйТерминал",
+ "type": "d3p1:КлючевыеСвойстваЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОплатыККМ",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ОплатыККМ.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ОплатыККМ.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипОплаты",
+ "type": "d3p1:ТипыТипыОплатЧековККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПодарочныеСертификаты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:ПодарочныеСертификаты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ПодарочныеСертификаты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеСертификата",
+ "type": "d3p1:ОбщиеСвойстваДанныеПодарочногоСертификата",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасчетыПоДокументам",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасчетыПоДокументам.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасчетыПоДокументам.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДокументРасчетов",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежа.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежа.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Заказ",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ЗаказКлиента",
+ "type": "d5p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказПоставщику",
+ "type": "d5p1:КлючевыеСвойстваЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВзаиморасчетов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетовРасширенный",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ВидРасчетовСПокупателямиПоставщиками",
+ "type": "d5p1:ВидыРасчетовСПокупателямиПоставщиками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетовПоКредитамИЗаймам",
+ "type": "d5p1:ВидыРасчетовПоКредитамИЗаймам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРасчетов",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаВыплатаЗарплаты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаВыплатаЗарплаты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаВыплатаЗарплаты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеРасчетов",
+ "type": "d3p1:ОбщиеСвойстваВыплаченнаяЗП",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаВыплатаЗарплатыСотруднику",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаВыплатаЗарплатыСотруднику.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаВыплатаЗарплатыСотруднику.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеРасчетов",
+ "type": "d3p1:ОбщиеСвойстваВыплаченнаяЗП",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаКонвертацииВалюты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаКонвертацииВалюты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаКонвертацииВалюты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВал",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаКонвертации",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсКонвертации",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КратностьКонвертации",
+ "type": "d3p1:ТипКратность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсЦБНаДатуКонвертации",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКонтрагентом",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоАвансам",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаПрочее",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаПрочее.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаПрочее.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаПрочихДоходов",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаПрочихДоходов.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаПрочихДоходов.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаПрочихРасходов",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаПрочихРасходов.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаПрочихРасходов.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаРасчетовССотрудниками",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаПлатежаРасчетовССотрудниками.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаПлатежаРасчетовССотрудниками.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасшифровкаОстатковРасчетовСКонтрагентами",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасшифровкаОстатковРасчетовСКонтрагентами.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "РасшифровкаОстатковРасчетовСКонтрагентами.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРегл",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРасчетов",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "СкидкиНаценки",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:СкидкиНаценки.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "СкидкиНаценки.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидСкидки",
+ "type": "d3p1:ВидыСкидок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроцентСкидки",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаСкидки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаСУчетомСкидки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваSKUКонтрагента",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.SKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Артикул",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Идентификатор",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ШтрихКод",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторНоменклатурыСервиса1СНоменклатура",
+ "type": "d3p1:ТипУникальныйИдентификатор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторХарактеристикиСервиса1СНоменклатура",
+ "type": "d3p1:ТипУникальныйИдентификатор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Владелец",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УпаковкаНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваАвансовыйОтчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.АвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваАвизоПоМПЗВходящее",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.АвизоПоМПЗВходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваАвизоПоМПЗИсходящее",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.АвизоПоМПЗИсходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваАннулированиеПодарочныхСертификатов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.АннулированиеПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваБанк",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Банки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеКлассификатораБанков",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатораБанков",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваБанковскийСчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.БанковскиеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерСчета",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Банк",
+ "type": "d3p1:КлючевыеСвойстваБанк",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанкДляРасчетов",
+ "type": "d3p1:КлючевыеСвойстваБанк",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Владелец",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "КонтрагентыСсылка",
+ "type": "d5p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацииСсылка",
+ "type": "d5p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическиеЛицаСсылка",
+ "type": "d5p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВалюта",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Валюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеКлассификатора",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатора",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВедомостьНаВыплатуЗарплаты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВедомости",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВедомости",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодВыплаты",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВидыАлкогольнойПродукции",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Код",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидЛицензии",
+ "type": "d3p1:ВидыЛицензийАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маркируемый",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВидыДокументовФизическихЛиц",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДокументаИзКлассификатора",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВидыПодарочныхСертификатов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ВидыПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номинал",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РазрешитьЧастичнуюОплату",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВидРаботСотрудников",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ВидыРаботСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВидРаботСотрудниковГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ВидыРаботСотрудниковГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудниковГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВидыНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ВидыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипНоменклатуры",
+ "type": "d3p1:ТипыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьСерии",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьСрокГодностиСерии",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВнесениеДСВКассуККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВнесениеДСВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКассовойСмены",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВПрограмме",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаФР",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратДенежныхДокументовПоставщику",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратДенежныхДокументовПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратМатериаловИзПроизводства",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратМатериаловИзПроизводства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратМатериаловИзЭксплуатации",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратПодарочныхСертификатов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратСырьяДавальцу",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратСырьяДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратСырьяОтПереработчика",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратСырьяОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВозвратТоваровПоставщику",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВыдачаДенежныхДокументовПодотчетнику",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВыдачаДенежныхДокументовПодотчетнику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВыработкаСотрудников",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВыработкаСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВыемкаДСИзКассыККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВыемкаДСИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКассовойСмены",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВПрограмме",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаФР",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваВыпускПродукции",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ВыпускПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваГодовыеГрафикиАмортизацииОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент1",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент2",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент3",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент4",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент5",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент6",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент7",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент8",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент9",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент10",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент11",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент12",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ГруппыАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатурыГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ГруппыАналитическогоУчетаНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваГруппаНастроекФинансовогоУчетаНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ГруппыНастроекФинансовогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ГруппыНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваДенежныеДокументы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДокумента",
+ "type": "d3p1:ВидыДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваДисконтныеКарты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ДисконтныеКарты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКарты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВладелецКарты",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "Контрагент",
+ "type": "d5p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d5p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваДоговор",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Договоры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДоговора",
+ "type": "d3p1:ВидыДоговоров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыВУсловныхЕдиницах",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваДолжности",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Должности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваДополнительныеРеквизиты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭтоДополнительноеСведение",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЕдиницаИзмерения",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ЕдиницыИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеКлассификатора",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатора",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаказКлиента",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаказНаПеремещение",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаказНаПеремещение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаказПоставщику",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗакрытиеКассовойСмены",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗакрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКассовойСмены",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВПрограмме",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаФР",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаПереводДСВБюджет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаПереводДСВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаПереводДСНаДругойСчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаПереводДСНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаРасходДСВнутренняяПередача",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаРасходДСВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаРасходДСКонвертацияВалюты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗаявкаНаРасходДСРасчетыССотрудниками",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЗначенияДополнительныхРеквизитов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ЗначенияДополнительныхРеквизитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Владелец",
+ "type": "d3p1:КлючевыеСвойстваДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваИнвентаризацияТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ИнвентаризацияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКассы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Кассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКассыККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.КассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрационныйНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКонтрагент",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Контрагенты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИНН",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПП",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЮридическоеФизическоеЛицо",
+ "type": "d3p1:ЮридическоеФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаРегистрации",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваКонтрагентГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "GLN",
+ "type": "d3p1:ТипGLN",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалоговыйНомерНерезидента",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрационныйНомерНерезидента",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКонтрагентГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.КонтрагентыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваКонтрагентГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКорректировкаДолга",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.КорректировкаДолга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.КорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.КорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЛицензииПоставщиковАлкогольнойПродукции",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ЛицензииПоставщиковАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваНачислениеОценочныхОбязательствПоОтпускам",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.НачислениеОценочныхОбязательствПоОтпускам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваНачисленияКредитовДепозитов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.НачислениеКредитовДепозитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваНематериальныеАктивы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.НематериальныеАктивы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АмортизационнаяГруппа",
+ "type": "d3p1:АмортизационныеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваНоменклатура",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Номенклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Артикул",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваНоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСервиса1СНоменклатура",
+ "type": "d3p1:ТипУникальныйИдентификатор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваНоменклатураГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.НоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваНоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОперацияПоПлатежнойКарте",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОперацияПоПлатежнойКарте",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийПоПлатежнойКарте",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОперацияСПроезднымДокументом",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОперацияСПроезднымДокументом",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОприходованиеТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОприходованиеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОрганизация",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Организации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеСокращенное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИНН",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПП",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГоловнаяОрганизация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЮридическоеФизическоеЛицо",
+ "type": "d3p1:ЮридическоеФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "GLN",
+ "type": "d3p1:ТипGLN",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаРегистрации",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалоговыйНомерНерезидента",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрационныйНомерНерезидента",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОсновныеСредства",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ОсновныеСредства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнвентарныйНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаводскойНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СерийныйНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОткрытиеКассовойСмены",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОткрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКассовойСмены",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВПрограмме",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаФР",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтражениеЗарплатыВФинансовомУчете",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтражениеЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтчетБанкаПоОперациямЭквайринга",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтчетБанкаПоОперациямЭквайринга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтчетДавальцу",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтчетДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтчетКомиссионера",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтчетКомитенту",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтчетОРозничныхПродажах",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассоваяСмена",
+ "type": "d3p1:КлючевыеСвойстваОткрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваОтчетПереработчика",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ОтчетПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСВзносНаличными",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСВзносНаличными",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСКонвертацияВалюты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСПереводНаДругойСчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСПрочиеДоходы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСПрочееПоступление",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСПоПлатежнымКартам",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСПоПлатежнымКартам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСРасчетыСКонтрагентами",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПБДСРасчетыССотрудниками",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПередачаДавальцу",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПередачаДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПередачаМатериаловВПроизводство",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПередачаМатериаловВПроизводство",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПередачаМатериаловВЭксплуатацию",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПередачаМатериаловВЭксплуатацию",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПередачаПереработчику",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПередачаПереработчику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПеремещениеДенежныхДокументов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПеремещениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПеремещениеТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПеремещениеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПересчетТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПересчетТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачалоПериодаИнвентаризации",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОкончаниеПериодаИнвентаризации",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПереоценкаТоваровВРознице",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПереоценкаТоваровВРознице",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОВнутренняяПередача",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОКонвертацияВалюты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОПолучениеНаличныхВБанке",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОПолучениеНаличныхВБанке",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОПоступлениеИзДругойКассы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОПоступлениеИзДругойКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОПоступлениеИзКассыККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОПоступлениеИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОПрочиеДоходы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОПрочееПоступление",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОРасчетыСКонтрагентами",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОРасчетыССотрудниками",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПКОРозничнаяВыручка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПКОРозничнаяВыручка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПлатежноеПоручение",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПлатежноеПоручение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПодразделение",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Подразделения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВышестоящееПодразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоказателиНаработки",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПользователь",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Пользователи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоступлениеДенежныхДокументовОтПодотчетника",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПоступлениеДенежныхДокументовОтПодотчетника",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоступлениеДенежныхДокументовОтПоставщика",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПоступлениеДенежныхДокументовОтПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоступлениеДенежныхДокументовПрочее",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПоступлениеДенежныхДокументовПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоступлениеОтПереработчика",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПоступлениеОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоступлениеСырьяОтДавальца",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПоступлениеСырьяОтДавальца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПроезднойДокумент",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПроезднойДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерБилета",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Перевозчик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПрограммыЛояльности",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаКонвертацииБонусов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаксимальныйПроцентОплатыБонусами",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРеализацияТоваровУслуг",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРегистрацияВНалоговомОргане",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.РегистрацииВНалоговомОргане",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПП",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКАТО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКТМО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеОбособленногоПодразделения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦифровойИндексОбособленногоПодразделения",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодНалоговогоОргана",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОВнутренняяПередача",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОВыдачаВДругуюКассу",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОВыдачаВДругуюКассу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОВыдачаВКассуККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОВыдачаВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОВыплатаЗарплаты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОКонвертацияВалюты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОНаБанковскийСчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОНаБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОПрочаяВыдача",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОПрочаяВыдача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОПрочийРасход",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОПрочийРасход",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОРасчетыСКонтрагентами",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРКОРасчетыССотрудниками",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСКонвертацияВалюты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСПереводНаДругойСчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСПеречислениеЗаработнойПлаты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСПеречислениеЗаработнойПлаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСПлатежиВБюджет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСПрочееСписание",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСПрочееСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСПрочиеРасходы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСПрочиеРасходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСРасчетыСКонтрагентами",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДСРасчетыССотрудниками",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСБДССнятиеНаличных",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СБДССнятиеНаличных",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСборкаТоваров",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СборкаТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСерииНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СерииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СерийныйНомер",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСклад",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Склады",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипСклада",
+ "type": "d3p1:ТипыСкладов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладГруппа",
+ "type": "d3p1:КлючевыеСвойстваСкладГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "GLN",
+ "type": "d3p1:ТипGLN",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодАдресаФИАС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Помещение",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСкладГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СкладыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСкладГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСобытияОС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидСобытияОС",
+ "type": "d3p1:ВидыСобытийОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСостояниеОплатыЗаказа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СостояниеОплатыЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСостояниеОтгрузкиЗаказа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СостояниеОтгрузкиЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСостояниеЭлектронногоДокумента",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ОснованиеЭлектронногоДокумента",
+ "type": "d3p1:СоставнойОснованияЭлектронныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СостояниеЭлектронногоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСпецификацииНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СпецификацииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСпецификацииНоменклатурыГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СпецификацииНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСписаниеДенежныхДокументов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСписаниеЗапасов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СписаниеЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСписаниеМатериаловИзЭксплуатации",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СписаниеМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСписаниеНедостач",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СписаниеНедостач",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчете",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СпособыОтраженияЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СпособыОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСчетПокупателю",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СчетПокупателю",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСчетПоставщика",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СчетПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСчетФактураВыданный",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерИсправления",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаИсправления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСчетФактураПолученный",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.СчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВходящегоДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВходящегоДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерИсправления",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаИсправления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСтатусыОбъектов",
+ "base": "",
+ "properties": [
+ {
+ "name": "Объект",
+ "type": "d3p1:СоставнойЛюбойОбъект",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСтатьяДДС",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СтатьиДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСтатьяДДСГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СтатьиДДСГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДСГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСтатьяДоходов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СтатьиДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСтатьяРасходов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СтатьиРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСтранаМира",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СтраныМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеКлассификатора",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатора",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваТаможеннаяДекларация",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваТипЦен",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ТипыЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаЦены",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваУпаковка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Упаковки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Коэффициент",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваУстановкаЦенНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.УстановкаЦенНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваФайлы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.Файлы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Имя",
+ "type": "xs:string",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВладелецФайла",
+ "type": "d3p1:СоставнойЛюбойОбъект",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваФизическоеЛицо",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ФизическиеЛица",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФИО",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Фамилия",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Имя",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Отчество",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаРождения",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИНН",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицоГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваФизическоеЛицоГруппа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ФизическиеЛицаГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицоГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ХарактеристикиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВладелецХарактеристики",
+ "type": "d3p1:ОбщиеСвойстваВладелецХарактеристики",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСервиса1СНоменклатура",
+ "type": "d3p1:ТипУникальныйИдентификатор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЦенныеБумаги",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ЦенныеБумаги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Серия",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Эмитент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЦеновыеГруппы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЧекККМ",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ЧекККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКассовойСмены",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВПрограмме",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаФР",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваЭквайринговыеТерминалы",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.SKUКонтрагента",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Банки",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваБанк",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Город",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Адрес",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Телефоны",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Страна",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИностранныйБанк",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.БанковскиеСчета",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекстКорреспондента",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекстНазначения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыводитьМесяцПрописью",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыводитьСуммуБезКопеек",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидСчета",
+ "type": "d3p1:ВидыБанковскихСчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОткрытия",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаЗакрытия",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерИДатаРазрешения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Валюты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗагружаетсяИзИнтернета",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПараметрыПрописи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновнаяВалюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наценка",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ВидыНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВидыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ВидыРаботСотрудников",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудниковГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ВидыРаботСотрудниковГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудниковГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ВидыДокументовФизическихЛиц",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодМВД",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодПФР",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ВидыПодарочныхСертификатов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВидыПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипПериодаДействия",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоПериодовДействия",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ШаблоныКодов",
+ "type": "d3p1:Справочник.ВидыПодарочныхСертификатов.ШаблоныКодов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ВидыПодарочныхСертификатов.ШаблоныКодов",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ВидыПодарочныхСертификатов.ШаблоныКодов.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ВидыПодарочныхСертификатов.ШаблоныКодов.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДлинаШтрихкода",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачалоДиапазонаШтрихкода",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонецДиапазонаШтрихкода",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДлинаМагнитногоКода",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачалоДиапазонаМагнитногоКода",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонецДиапазонаМагнитногоКода",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ШаблонМагнитнойКарты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ГруппыАналитическогоУчетаНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ГруппыАналитическогоУчетаНоменклатурыГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ГруппыНастроекФинансовогоУчетаНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаПередачиНаКомиссию",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаВыручкиОтПродаж",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаСебестоимостиПродаж",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПриПродаже",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНаСкладе",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаВПути",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСВПути",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПриЗакупке",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ГруппыНастроекФинансовогоУчетаРасчетов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКлиентами",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаАвансовПолученных",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоВознаграждению",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСПоставщиками",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаАвансовВыданных",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоПретензиям",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКлиентамиТара",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСПоставщикамиТара",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКредиторамиОсновнойДолг",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКредиторамиПроценты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКредиторамиКомиссия",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСДебиторамиОсновнойДолг",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСДебиторамиПроценты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСДебиторамиКомиссия",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНеотфактурованныеПоставки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСЛизингодателемЛизинговыеУслуги",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСЛизингодателемОбеспечительныйПлатеж",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСЛизингодателемВыкупПредметаЛизинга",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСЛизингодателемАрендныеОбязательства",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСКлиентами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСПоставщиками",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСКомиссионерами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСКомитентами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСКредиторами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСДебиторами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыСЛизингодателями",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыВВалюте",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ДенежныеДокументы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ДисконтныеКарты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваДисконтныеКарты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрограммаЛояльности",
+ "type": "d3p1:КлючевыеСвойстваПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОткрытия",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Договоры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокДействия",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УчетАгентскогоНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокКонтроляОплатыВДнях",
+ "type": "xs:int",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ДокументыФизическихЛиц",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицоОтбор",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДокументаОтбор",
+ "type": "d3p1:КлючевыеСвойстваВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодОтбор",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Записи",
+ "type": "d3p1:Справочник.ДокументыФизическихЛицЗаписи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ДокументыФизическихЛицЗаписи",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ДокументыФизическихЛицЗапись",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ДокументыФизическихЛицЗапись",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДокумента",
+ "type": "d3p1:КлючевыеСвойстваВидыДокументовФизическихЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Период",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Серия",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыдачи",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокДействия",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КемВыдан",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодПодразделения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Представление",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Должности",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваДолжности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеКраткое",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ДополнительныеРеквизиты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МногострочноеПолеВвода",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заголовок",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаполнятьОбязательно",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеЗначенияИспользуются",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВладелецДополнительныхЗначений",
+ "type": "d3p1:КлючевыеСвойстваДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеЗначенияСВесом",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаголовокФормыЗначения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФорматСвойства",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подсказка",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ЕдиницыИзмерения",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ЗначенияДополнительныхРеквизитов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗначенияДополнительныхРеквизитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Вес",
+ "type": "xs:decimal",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Кассы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.КассыККМ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СистемаНалогообложения",
+ "type": "d3p1:СистемыНалогообложения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Контрагенты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКПО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительнаяИнформация",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументУдЛичность",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактнаяИнформация",
+ "type": "d3p1:КонтактнаяИнформация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГоловнойКонтрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбособленноеПодразделение",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновнойБанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновнойДоговор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.КонтрагентыГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКонтрагентГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ЛицензииПоставщиковАлкогольнойПродукции",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЛицензииПоставщиковАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидЛицензии",
+ "type": "d3p1:ВидыЛицензийАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КемВыдана",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаНачала",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОкончания",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.НематериальныеАктивы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваНематериальныеАктивы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятиеКУчету",
+ "type": "d3p1:ОбщиеСвойстваПринятиеКУчетуНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ОбщиеСвойстваСтоимостьНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Амортизация",
+ "type": "d3p1:ОбщиеСвойстваАмортизацияНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Номенклатура",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипНоменклатуры",
+ "type": "d3p1:ТипыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеАлкогольнойПродукции",
+ "type": "d3p1:ОбщиеСвойстваДанныеАлкогольнойПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчета",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодТНВЭД",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатора",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодОКВЭД",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатора",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодОКП",
+ "type": "d3p1:ОбщиеСвойстваДанныеКлассификатора",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхождения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаАналитическогоУчета",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновнаяСпецификацияНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦеноваяГруппа",
+ "type": "d3p1:КлючевыеСвойстваЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваВидыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПризнакПредметаРасчета",
+ "type": "d3p1:ПризнакиПредметаРасчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Весовой",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маркируемый",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользоватьСерии",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодакцизныйТовар",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокГодности",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмеренияСрокаГодности",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновнаяКартинка",
+ "type": "d3p1:КлючевыеСвойстваФайлы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаНоменклатурнойКлассификации",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Производитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Марка",
+ "type": "d3p1:КлючевыеСвойстваМаркиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидПродукцииИС",
+ "type": "d3p1:ВидыПродукцииИС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.НоменклатураГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваНоменклатураГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.Организации",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПлательщикаПриПеречисленииНалогов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Префикс",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СвидетельствоСерияНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СвидетельствоДатаВыдачи",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКПО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКАТО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОГРН",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактнаяИнформация",
+ "type": "d3p1:КонтактнаяИнформация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновнойБанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЯвляетсяНерезидентом",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганПФР",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрационныйНомерПФР",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеТерриториальногоОрганаПФР",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганФСС",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрационныйНомерФСС",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеТерриториальногоОрганаФСС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодПодчиненностиФСС",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныйКодФСС",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКВЭД",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКВЭД2",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеОКВЭД",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеОКВЭД2",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКОПФ",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКФС",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеОКОПФ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеОКФС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ОсновныеСредства",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОсновныеСредства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыпуска",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерПаспорта",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВЭксплуатации",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Изготовитель",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятиеКУчету",
+ "type": "d3p1:ОбщиеСвойстваПринятиеКУчетуОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтоимостьОС",
+ "type": "d3p1:ОбщиеСвойстваСтоимостьОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АмортизацияОС",
+ "type": "d3p1:ОбщиеСвойстваАмортизацияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МодернизацияОС",
+ "type": "d3p1:ОбщиеСвойстваМодернизацияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ОтветственныеЛица",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "ОрганизацияОтбор",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОтветственногоЛицаОтбор",
+ "type": "d3p1:ВидыОтветственныхЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УполномоченноеЛицоОтбор",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Записи",
+ "type": "d3p1:Справочник.ОтветственныеЛицаЗаписи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ОтветственныеЛицаЗаписи",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ОтветственныеЛицаЗапись",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ОтветственныеЛицаЗапись",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОтветственногоЛица",
+ "type": "d3p1:ВидыОтветственныхЛиц",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОтветственногоЛицаСтрокой",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрацияВНалоговомОргане",
+ "type": "d3p1:КлючевыеСвойстваРегистрацияВНалоговомОргане",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УполномоченноеЛицо",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДокументаПравоПодписи",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаНачала",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОкончания",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерДокументаПраваПодписи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаДокументаПраваПодписи",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПредставлениеДокументаПраваПодписи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Должность",
+ "type": "d3p1:КлючевыеСвойстваДолжности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Подразделения",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Пользователи",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПроезднойДокумент",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПроезднойДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПриобретения",
+ "type": "xs:dateTime",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маршрут",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОтправления",
+ "type": "xs:dateTime",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Агент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНеОблагаемаяНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПрограммыЛояльности",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсКонвертацииБонусовВВалюту",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НеНачислятьБаллыПриОплатеБонусами",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦеновыеГруппы",
+ "type": "d3p1:Справочник.ПрограммыЛояльности.ЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПрограммыЛояльности.ЦеновыеГруппы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ПрограммыЛояльности.ЦеновыеГруппы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ПрограммыЛояльности.ЦеновыеГруппы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтроки",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦеноваяГруппа",
+ "type": "d3p1:КлючевыеСвойстваЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаксимальныйПроцентОплатыБонусами",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.РегистрацииВНалоговомОргане",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРегистрацияВНалоговомОргане",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КраткоеНаименованиеНалоговогоОргана",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеИФНС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Представитель",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "Контрагент",
+ "type": "d5p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d5p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "УполномоченноеЛицоПредставителя",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПредставителя",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Доверенность",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СерииНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСерииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГоденДо",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокГодностиВЧасах",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПроизводства",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Склады",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МОЛ",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦенРозничнойТорговли",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресСтрокой",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактнаяИнформация",
+ "type": "d3p1:КонтактнаяИнформация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СкладыГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСкладГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.СостояниеОплатыЗаказа",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСостояниеОплатыЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСостояния",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПлатежа",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВсехПлатежей",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОплаты",
+ "type": "d3p1:СостоянияОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СостояниеОтгрузкиЗаказа",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСостояниеОтгрузкиЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСостояния",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОтгрузки",
+ "type": "d3p1:СостоянияОтгрузки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СостояниеЭлектронногоДокумента",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСостояниеЭлектронногоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЭлектронногоДокумента",
+ "type": "d3p1:ТипыСостоянийЭлектронногоДокумента",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОбменаЭДНаНашейСтороне",
+ "type": "d3p1:ТипыСостоянийОбменаЭД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеОбменаЭДНаСторонеКонтрагента",
+ "type": "d3p1:ТипыСостоянийОбменаЭД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СпецификацииНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Упаковка",
+ "type": "d3p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Справочник.СпецификацииНоменклатуры.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СпецификацииНоменклатурыГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатурыГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Владелец",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СпецификацииНоменклатуры.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.СпецификацииНоменклатуры.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.СпецификацииНоменклатуры.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Характеристика",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Упаковка",
+ "type": "d3p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоляСтоимости",
+ "type": "d3p1:ТипДоля",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СпособыОтраженияЗарплатыВФинансовомУчете",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СпособыОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчетеГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.СтатьиДДС",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Группа",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДСГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СтатьиДДСГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДСГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.СтатьиДоходов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СтатьиРасходов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДеятельностиДляНалоговогоУчетаЗатрат",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасходовПоОсновнойДеятельности",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасходовПоНеосновнойДеятельности",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СтраныМира",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеПолное",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодАльфа2",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодАльфа3",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ТипыЦен",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОкруглятьВБольшуюСторону",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТочностьОкругления",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Идентификатор",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Упаковки",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваУпаковка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Высота",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Глубина",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ширина",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Объем",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Файлы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваФайлы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ХранимыйФайл",
+ "type": "xs:base64Binary",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расширение",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭлектронныеПодписи",
+ "type": "d3p1:Справочник.Файлы.ЭлектронныеПодписи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СертификатыШифрования",
+ "type": "d3p1:Справочник.Файлы.СертификатыШифрования",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Файлы.СертификатыШифрования",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.Файлы.СертификатыШифрования.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.Файлы.СертификатыШифрования.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сертификат",
+ "type": "xs:base64Binary",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.Файлы.ЭлектронныеПодписи",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.Файлы.ЭлектронныеПодписи.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.Файлы.ЭлектронныеПодписи.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Подпись",
+ "type": "xs:base64Binary",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сертификат",
+ "type": "xs:base64Binary",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ФизическиеЛица",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Пол",
+ "type": "d3p1:Пол",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УточнениеНаименования",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтраховойНомерПФР",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МестоРождения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактнаяИнформация",
+ "type": "d3p1:КонтактнаяИнформация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеФИО",
+ "type": "d3p1:Справочник.ФизическиеЛица.ДанныеФИО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Гражданство",
+ "type": "d3p1:Справочник.ФизическиеЛица.Гражданство",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаРегистрации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ФизическиеЛица.ДанныеФИО",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ФизическиеЛица.ДанныеФИО.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ФизическиеЛица.ДанныеФИО.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Фамилия",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Имя",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Отчество",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачалоПериода",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ФизическиеЛица.Гражданство",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ФизическиеЛица.Гражданство.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ФизическиеЛица.Гражданство.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Страна",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачалоПериода",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ФизическиеЛицаГруппа",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицоГруппа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ХарактеристикиНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ЦенныеБумаги",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЦенныеБумаги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидЦеннойБумаги",
+ "type": "d3p1:ВидыЦенныхБумаг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НоминальнаяЦена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПринятияКУчету",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГосударственнаяЦБ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ЦеновыеГруппы",
+ "base": "d2p1:Object",
+ "properties": [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЦеновыеГруппы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ШтрихкодыНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Штрихкод",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Записи",
+ "type": "d3p1:Справочник.ШтрихкодыНоменклатурыЗаписи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ШтрихкодыНоменклатурыЗаписи",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ШтрихкодыНоменклатурыЗапись",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ШтрихкодыНоменклатурыЗапись",
+ "base": "",
+ "properties": [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваОписываемаяНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ЭквайринговыеТерминалы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Эквайер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсДокумента",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КратностьДокумента",
+ "type": "d3p1:ТипКратность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НазначениеАванса",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДокументов",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоЛистов",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыданныеАвансы",
+ "type": "d3p1:Документ.АвансовыйОтчет.ВыданныеАвансы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаКонтрагентам",
+ "type": "d3p1:Документ.АвансовыйОтчет.ОплатаКонтрагентам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.АвансовыйОтчет.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрочиеРасходы",
+ "type": "d3p1:Документ.АвансовыйОтчет.ПрочиеРасходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалогообложениеНДСПродавца",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроездныеДокументы",
+ "type": "d3p1:Документ.АвансовыйОтчет.ПроездныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ВыданныеАвансы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвансовыйОтчет.ВыданныеАвансы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ВыданныеАвансы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Документ",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "АвансовыйОтчетСсылка",
+ "type": "d5p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасходныйКассовыйОрдерСсылка",
+ "type": "d5p1:КлючевыеСвойстваРКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеБезналичныхДенежныхСредствСсылка",
+ "type": "d5p1:КлючевыеСвойстваСБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ОплатаКонтрагентам",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвансовыйОтчет.ОплатаКонтрагентам.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ОплатаКонтрагентам.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВзаиморасчетов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРасчетов",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетовРасширенный",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ВидРасчетовСПокупателямиПоставщиками",
+ "type": "d5p1:ВидыРасчетовСПокупателямиПоставщиками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетовПоКредитамИЗаймам",
+ "type": "d5p1:ВидыРасчетовПоКредитамИЗаймам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ПрочиеРасходы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвансовыйОтчет.ПрочиеРасходы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ПрочиеРасходы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПредъявленСФ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСФ",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерСФ",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗакупкаПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвансовыйОтчет.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПредъявленСФ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСФ",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерСФ",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗакупкаПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ПроездныеДокументы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвансовыйОтчет.ПроездныеДокументы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвансовыйОтчет.ПроездныеДокументы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваПроезднойДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвизоПоМПЗВходящее",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваАвизоПоМПЗВходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияОтправитель",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладОтправитель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.АвизоПоМПЗВходящее.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеПоСФ",
+ "type": "d3p1:АвизоМПЗДанныеПоСФ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвизоПоМПЗВходящее.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвизоПоМПЗВходящее.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвизоПоМПЗВходящее.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвизоПоМПЗИсходящее",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваАвизоПоМПЗИсходящее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияПолучатель",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладПолучатель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.АвизоПоМПЗИсходящее.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеПоСФ",
+ "type": "d3p1:АвизоМПЗДанныеПоСФ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АвизоПоМПЗИсходящее.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.АвизоПоМПЗИсходящее.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.АвизоПоМПЗИсходящее.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.АннулированиеПодарочныхСертификатов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваАннулированиеПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодарочныеСертификаты",
+ "type": "d3p1:ПодарочныеСертификаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВнесениеДСВКассуККМ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВнесениеДСВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеОперацииККМ",
+ "type": "d3p1:ОбщиеСвойстваОперацияККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВедомостьНаВыплатуЗарплаты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособВыплаты",
+ "type": "d3p1:СпособыВыплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДокумента",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Зарплата",
+ "type": "d3p1:Документ.ВедомостьНаВыплатуЗарплаты.Зарплата",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НДФЛ",
+ "type": "d3p1:Документ.ВедомостьНаВыплатуЗарплаты.НДФЛ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеРегламентированногоУчета",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидДоходаИсполнительногоПроизводства",
+ "type": "d3p1:ВидыДоходовИсполнительногоПроизводства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВедомостьНаВыплатуЗарплаты.Зарплата",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВедомостьНаВыплатуЗарплаты.Зарплата.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВедомостьНаВыплатуЗарплаты.Зарплата.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЛицевогоСчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодВзаиморасчетов",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеСтатьиФинансирования",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КомпенсацияЗаЗадержкуЗарплаты",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВедомостьНаВыплатуЗарплаты.НДФЛ",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВедомостьНаВыплатуЗарплаты.НДФЛ.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВедомостьНаВыплатуЗарплаты.НДФЛ.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодДохода",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНалога",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МесяцНалоговогоПериода",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратДенежныхДокументовПоставщику",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратДенежныхДокументовПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:ДенежныеДокументыСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратМатериаловИзПроизводства",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратМатериаловИзПроизводства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ВозвратМатериаловИзПроизводства.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратМатериаловИзПроизводства.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВозвратМатериаловИзПроизводства.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВозвратМатериаловИзПроизводства.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеСпособаОтраженияРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаМатериалов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратМатериаловИзЭксплуатации",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ВозвратМатериаловИзЭксплуатации.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратМатериаловИзЭксплуатации.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВозвратМатериаловИзЭксплуатации.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВозвратМатериаловИзЭксплуатации.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеСпособаОтраженияРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПередачи",
+ "type": "d3p1:КлючевыеСвойстваПередачаМатериаловВЭксплуатацию",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнвентарныйНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратПодарочныхСертификатов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратПодарочныхСертификатов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Руководитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГлавныйБухгалтер",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетОРозничныхПродажах",
+ "type": "d3p1:КлючевыеСвойстваОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаПлатежнымиКартами",
+ "type": "d3p1:ОплатаПлатежнымиКартами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодарочныеСертификаты",
+ "type": "d3p1:ПодарочныеСертификаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратСырьяДавальцу",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратСырьяДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузополучатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ВозвратСырьяДавальцу.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратСырьяДавальцу.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВозвратСырьяДавальцу.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВозвратСырьяДавальцу.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратСырьяОтПереработчика",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратСырьяОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ВозвратСырьяОтПереработчика.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратСырьяОтПереработчика.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВозвратСырьяОтПереработчика.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВозвратСырьяОтПереработчика.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратТоваровОтПокупателя",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийВозвратОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРеализации",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетОРозничныхПродажахСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ПокупателемВыставляетсяСчетФактураНаВозврат",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ВозвратТоваровОтПокупателя.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратТоваровОтПокупателя.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВозвратТоваровОтПокупателя.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВозвратТоваровОтПокупателя.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Себестоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратТоваровПоставщику",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийВозвратПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузополучатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ВозвратТоваровПоставщику.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВозвратТоваровПоставщику.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВозвратТоваровПоставщику.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВозвратТоваровПоставщику.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Себестоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыдачаДенежныхДокументовПодотчетнику",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВыдачаДенежныхДокументовПодотчетнику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицоКонтрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:ДенежныеДокументыСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыемкаДСИзКассыККМ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВыемкаДСИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеОперацииККМ",
+ "type": "d3p1:ОбщиеСвойстваОперацияККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВыпускПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Продукция",
+ "type": "d3p1:Документ.ВыпускПродукции.Продукция",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийВыпускаПродукции",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Материалы",
+ "type": "d3p1:Документ.ВыпускПродукции.Материалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратныеОтходы",
+ "type": "d3p1:Документ.ВыпускПродукции.ВозвратныеОтходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Работы",
+ "type": "d3p1:Документ.ВыпускПродукции.Работы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.ВозвратныеОтходы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВыпускПродукции.ВозвратныеОтходы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.ВозвратныеОтходы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.Материалы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВыпускПродукции.Материалы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.Материалы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.Продукция",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВыпускПродукции.Продукция.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.Продукция.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаАналитическогоУчетаНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваГруппаАналитическогоУчетаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпецификацияНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваСпецификацииНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыработкаСотрудников",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваВыработкаСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыполненныеРаботы",
+ "type": "d3p1:Документ.ВыработкаСотрудников.ВыполненныеРаботы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыработкаСотрудников.ВыполненныеРаботы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВыработкаСотрудников.ВыполненныеРаботы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ВыработкаСотрудников.ВыполненныеРаботы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРабот",
+ "type": "d3p1:КлючевыеСвойстваВидРаботСотрудников",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расценка",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактноеЛицоКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоступления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособДоставки",
+ "type": "d3p1:СпособыДоставки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресДоставки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ЗаказКлиента.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ЗаказКлиента.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Оплаты",
+ "type": "d3p1:ОплатыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭтапыОплаты",
+ "type": "d3p1:Документ.ЗаказКлиента.ЭтапыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактноеЛицоОрганизации",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалогообложениеНДСПродавца",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказВТерминахКонтрагента",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежнаяСсылка",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПунктВыдачи",
+ "type": "d3p1:КлючевыеСвойстваПунктыВыдачиЗаказов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоставки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтгружатьЗаказЦеликом",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказКлиента.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоставки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказКлиента.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоставки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента.ЭтапыОплаты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказКлиента.ЭтапыОплаты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказКлиента.ЭтапыОплаты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВариантОплаты",
+ "type": "d3p1:ВариантыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФормаОплаты",
+ "type": "d3p1:ФормыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПлатежа",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроцентПлатежа",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПлатежа",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДнейОтсрочки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказНаПеремещение",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаказНаПеремещение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеОтправитель",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеПолучатель",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладОтправитель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладПолучатель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ЗаказНаПеремещение.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказНаПеремещение.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказНаПеремещение.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказНаПеремещение.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Отменено",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресДоставки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ЗаказПоставщику.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ЗаказПоставщику.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактноеЛицоКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособДоставки",
+ "type": "d3p1:СпособыДоставки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоступления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭтапыОплаты",
+ "type": "d3p1:Документ.ЗаказПоставщику.ЭтапыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактноеЛицоОрганизации",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалогообложениеНДСПродавца",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаказВТерминахКонтрагента",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоставки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтгружатьЗаказЦеликом",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказПоставщику.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоставки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказПоставщику.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Характеристика",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоставки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику.ЭтапыОплаты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЗаказПоставщику.ЭтапыОплаты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЗаказПоставщику.ЭтапыОплаты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВариантОплаты",
+ "type": "d3p1:ВариантыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФормаОплаты",
+ "type": "d3p1:ФормыОплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПлатежа",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроцентПлатежа",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПлатежа",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДнейОтсрочки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗакрытиеКассовойСмены",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗакрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеОперацииККМ",
+ "type": "d3p1:ОбщиеСвойстваОперацияККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаПереводДСВБюджет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаПереводДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежиВБюджет",
+ "type": "d3p1:ОбщиеСвойстваПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаПереводДСНаДругойСчет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаПереводДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаРасходДСВнутренняяПередача",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияПолучатель",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаРасходДСВыплатаЗарплаты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаРасходДСКонвертацияВалюты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаКонвертацииВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаРасходДСПрочее",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочихРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЗаявкаНаРасходДСРасчетыССотрудниками",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваЗаявокНаРасходДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ИнвентаризацияТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваИнвентаризацияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтветственноеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументОснованиеВид",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументОснованиеДата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументОснованиеНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПричинаПроведенияИнвентаризации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаНачалаИнвентаризации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОкончанияИнвентаризации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ИнвентаризацияТоваров.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ИнвентаризацияТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ИнвентаризацияТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ИнвентаризацияТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУчет",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаУчет",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковокУчет",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаДолга",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаДолга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийКорректировкаДолга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДебиторскойЗадолженности",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаКредиторскойЗадолженности",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсДокумента",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КратностьДокумента",
+ "type": "d3p1:ТипКратность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентДебитор",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентКредитор",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДебиторскаяЗадолженность",
+ "type": "d3p1:Документ.КорректировкаДолга.Задолженность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КредиторскаяЗадолженность",
+ "type": "d3p1:Документ.КорректировкаДолга.Задолженность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетКт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаДолга.Задолженность",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.КорректировкаДолга.Задолженность.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаДолга.Задолженность.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВзаиморасчетов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетовРасширенный",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ВидРасчетовСПокупателямиПоставщиками",
+ "type": "d5p1:ВидыРасчетовСПокупателямиПоставщиками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетовПоКредитамИЗаймам",
+ "type": "d5p1:ВидыРасчетовПоКредитамИЗаймам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ДокументРасчетов",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорСчетУчетаРасчетовСКонтрагентом",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаПоступленияТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВосстановитьНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ТаможеннаяДекларацияСсылка",
+ "type": "d5p1:КлючевыеСвойстваТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураПолученныйСсылка",
+ "type": "d5p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщикуСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаПоступленияСсылка",
+ "type": "d5p1:КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ИсправляемыйДокументПоступления",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ТаможеннаяДекларацияСсылка",
+ "type": "d5p1:КлючевыеСвойстваТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураПолученныйСсылка",
+ "type": "d5p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщикуСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаПоступленияСсылка",
+ "type": "d5p1:КлючевыеСвойстваКорректировкаПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийИсправленияПоступленияРеализации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтражатьВУчете",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаИсправления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерИсправления",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.КорректировкаПоступленияТоваров.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.КорректировкаПоступленияТоваров.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаПоступленияТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.КорректировкаПоступленияТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаПоступленияТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоИзменения",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоКорректировки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСДоИзменения",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕстьВДокументеПоступленияРеализации",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерГТД",
+ "type": "d3p1:ТипНомерДекларации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерГТДДоИзменения",
+ "type": "d3p1:ТипНомерДекларации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхождения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхожденияДоИзменения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗакупкаПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковокДоИзменения",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковокДоКорректировки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаПоступленияТоваров.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.КорректировкаПоступленияТоваров.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаПоступленияТоваров.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоКорректировки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоИзменения",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСДоИзменения",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СодержаниеДоИзменения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕстьВДокументеПоступленияРеализации",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаРеализацииТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузополучатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРеализации",
+ "type": "",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "СчетФактураВыданныйСсылка",
+ "type": "d5p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщикуСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомитентуСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаРеализацииСсылка",
+ "type": "d5p1:КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ИсправляемыйДокументРеализации",
+ "type": "",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "СчетФактураВыданныйСсылка",
+ "type": "d5p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровОтПокупателяСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровОтПокупателя",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратТоваровПоставщикуСсылка",
+ "type": "d5p1:КлючевыеСвойстваВозвратТоваровПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеализацияТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомиссионераСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтчетКомитентуСсылка",
+ "type": "d5p1:КлючевыеСвойстваОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаРеализацииСсылка",
+ "type": "d5p1:КлючевыеСвойстваКорректировкаРеализацииТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийИсправленияПоступленияРеализации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтражатьВУчете",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаИсправления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерИсправления",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресДоставки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.КорректировкаРеализацииТоваров.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.КорректировкаРеализацииТоваров.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКонтрагентом",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаРеализацииТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.КорректировкаРеализацииТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаРеализацииТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоИзменения",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоКорректировки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСДоИзменения",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕстьВДокументеПоступленияРеализации",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерГТД",
+ "type": "d3p1:ТипНомерДекларации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерГТДДоИзменения",
+ "type": "d3p1:ТипНомерДекларации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхождения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхожденияДоИзменения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковокДоИзменения",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковокДоКорректировки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаРеализацииТоваров.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.КорректировкаРеализацииТоваров.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.КорректировкаРеализацииТоваров.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоКорректировки",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоДоИзменения",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСДоИзменения",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоИзменения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСДоКорректировки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СодержаниеДоИзменения",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕстьВДокументеПоступленияРеализации",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипУслуги",
+ "type": "d3p1:ТипыУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Принципал",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоговорСПринципалом",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.НачислениеОценочныхОбязательствПоОтпускам",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваНачислениеОценочныхОбязательствПоОтпускам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодРегистрации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КорректировкаОбязательств",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоляРасходов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОценочныеОбязательства",
+ "type": "d3p1:Документ.НачислениеОценочныхОбязательствПоОтпускам.ОценочныеОбязательства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Бухгалтер",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбязательстваОтраженыВБухучете",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.НачислениеОценочныхОбязательствПоОтпускам.ОценочныеОбязательства",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.НачислениеОценочныхОбязательствПоОтпускам.ОценочныеОбязательства.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.НачислениеОценочныхОбязательствПоОтпускам.ОценочныеОбязательства.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ОблагаетсяЕНВД",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособОтраженияЗарплатыВФинансовомУчете",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРезерва",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРезерваНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРезерваСтраховыхВзносов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРезерваСтраховыхВзносовНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРезерваФССНесчастныеСлучаи",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРезерваФССНесчастныеСлучаиНУ",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеРегламентированногоУчета",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.НачислениеКредитовДепозитов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваНачисленияКредитовДепозитов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаНачала",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОкончания",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Начисления",
+ "type": "d3p1:Документ.НачисленияКредитовДепозитов.Начисления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.НачисленияКредитовДепозитов.Начисления",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.НачисленияКредитовДепозитов.Начисления.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.НачисленияКредитовДепозитов.Начисления.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипСуммыГрафика",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрочностьКредитаЗайма",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "КонтрагентыСсылка",
+ "type": "d5p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическиеЛицаСсылка",
+ "type": "d5p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВзаиморасчетов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетКт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОперацияПоПлатежнойКарте",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОперацияПоПлатежнойКарте",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Эквайрер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭквайринговыйТерминал",
+ "type": "d3p1:КлючевыеСвойстваЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКарты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаККМ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодАвторизации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОперацияСПроезднымДокументом",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОперацияСПроезднымДокументом",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийСПроезднымиДокументами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроезднойДокумент",
+ "type": "d3p1:КлючевыеСвойстваПроезднойДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗамененныйПроезднойДокумент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНеОблагаемаяНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Штраф",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтражениеЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодРегистрации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачисленнаяЗарплатаИВзносы",
+ "type": "d3p1:Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленнаяЗарплатаИВзносы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачисленныйНДФЛ",
+ "type": "d3p1:Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленныйНДФЛ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УдержаннаяЗарплата",
+ "type": "d3p1:Документ.ОтражениеЗарплатыВФинансовомУчете.УдержаннаяЗарплата",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Бухгалтер",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗарплатаОтраженаВРегламентированномУчете",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленнаяЗарплатаИВзносы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленнаяЗарплатаИВзносы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленнаяЗарплатаИВзносы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособОтраженияЗарплатыВФинансовомУчете",
+ "type": "d3p1:КлючевыеСвойстваСпособОтраженияЗарплатыВФинансовомУчете",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОблагаетсяЕНВД",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРСтраховая",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРНакопительная",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРПоСуммарномуТарифу",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРНаДоплатуЛетчикам",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРНаДоплатуШахтерам",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРЗаЗанятыхНаПодземныхИВредныхРаботах",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРЗаЗанятыхНаТяжелыхИПрочихРаботах",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФСС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФФОМС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТФОМС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФССНесчастныеСлучаи",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидНачисленияОплатыТрудаДляНУ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРДоПредельнойВеличины",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРСПревышения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРЗаЗанятыхНаПодземныхИВредныхРаботахБезСпецОценки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРЗаЗанятыхНаПодземныхИВредныхРаботахСпецОценка",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРЗаЗанятыхНаТяжелыхИПрочихРаботахБезСпецОценки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПФРЗаЗанятыхНаТяжелыхИПрочихРаботахСпецОценка",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодПринятияРасходов",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеРегламентированногоУчета",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленныйНДФЛ",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленныйНДФЛ.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете.НачисленныйНДФЛ.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РегистрацияВНалоговомОргане",
+ "type": "d3p1:КлючевыеСвойстваРегистрацияВНалоговомОргане",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКАТО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОКТМО",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПП",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалоговыйОрган",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете.УдержаннаяЗарплата",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтражениеЗарплатыВФинансовомУчете.УдержаннаяЗарплата.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтражениеЗарплатыВФинансовомУчете.УдержаннаяЗарплата.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеРегламентированногоУчета",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОписаниеУдержанияДляЧека",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЯвляетсяОснованиемОформленияКассовогоЧека",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОприходованиеТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОприходованиеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДоходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Основание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Инвентаризация",
+ "type": "d3p1:КлючевыеСвойстваИнвентаризацияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ОприходованиеТоваров.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОприходованиеТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОприходованиеТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОприходованиеТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОприходованиеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиЗадолженностиПодотчетныхЛиц",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:Документ.ОстаткиЗадолженностиПодотчетныхЛиц.Расчеты",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиЗадолженностиПодотчетныхЛиц.Расчеты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиЗадолженностиПодотчетныхЛиц.Расчеты.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиЗадолженностиПодотчетныхЛиц.Расчеты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРегл",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРасчетов",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "РасходныйКассовыйОрдерСсылка",
+ "type": "d5p1:КлючевыеСвойстваРКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СписаниеБезналичныхДенежныхСредствСсылка",
+ "type": "d5p1:КлючевыеСвойстваСБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиБезналичныхДенежныхСредств",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеСредства",
+ "type": "d3p1:Документ.ОстаткиБезналичныхДенежныхСредств.ДенежныеСредства",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиБезналичныхДенежныхСредств.ДенежныеСредства",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиБезналичныхДенежныхСредств.ДенежныеСредства.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиБезналичныхДенежныхСредств.ДенежныеСредства.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРегл",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидБанковскогоСчета",
+ "type": "d3p1:ВидыБанковскихСчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиНаличныхДенежныхСредств",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеСредства",
+ "type": "d3p1:Документ.ОстаткиНаличныхДенежныхСредств.ДенежныеСредства",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиНаличныхДенежныхСредств.ДенежныеСредства",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиНаличныхДенежныхСредств.ДенежныеСредства.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиНаличныхДенежныхСредств.ДенежныеСредства.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРегл",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиНематериальныхАктивов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НематериальныеАктивы",
+ "type": "d3p1:Документ.ОстаткиНематериальныхАктивов.НематериальныеАктивы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиНематериальныхАктивов.НематериальныеАктивы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиНематериальныхАктивов.НематериальныеАктивы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиНематериальныхАктивов.НематериальныеАктивы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ОбщиеСвойстваСтоимостьНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятиеКУчету",
+ "type": "d3p1:ОбщиеСвойстваПринятиеКУчетуНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Амортизация",
+ "type": "d3p1:ОбщиеСвойстваАмортизацияНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СправочныеДанные",
+ "type": "d3p1:ОбщиеСвойстваСправочныеДанныеНМА",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользованиеДо2009",
+ "type": "d3p1:ОбщиеСвойстваИспользованиеДо2009Года",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НематериальныйАктив",
+ "type": "d3p1:КлючевыеСвойстваНематериальныеАктивы",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиОсновныхСредств",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновныеСредства",
+ "type": "d3p1:Документ.ОстаткиОсновныхСредств.ОсновныеСредства",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиОсновныхСредств.ОсновныеСредства",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиОсновныхСредств.ОсновныеСредства.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиОсновныхСредств.ОсновныеСредства.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "КодВПрограмме",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МОЛ",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ОбщиеСвойстваСтоимостьОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятиеКУчету",
+ "type": "d3p1:ОбщиеСвойстваПринятиеКУчетуОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Модернизация",
+ "type": "d3p1:ОбщиеСвойстваМодернизацияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Амортизация",
+ "type": "d3p1:ОбщиеСвойстваАмортизацияОС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИспользованиеДо2009",
+ "type": "d3p1:ОбщиеСвойстваИспользованиеДо2009Года",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОсновноеСредство",
+ "type": "d3p1:КлючевыеСвойстваОсновныеСредства",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиПерерасходаПодотчетныхЛиц",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:Документ.ОстаткиПерерасходаПодотчетныхЛиц.Расчеты",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиПерерасходаПодотчетныхЛиц.Расчеты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиПерерасходаПодотчетныхЛиц.Расчеты.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиПерерасходаПодотчетныхЛиц.Расчеты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаРегл",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументРасчетов",
+ "type": "d3p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовПоКредитамЗаймам",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:Документ.ОстаткиРасчетовПоКредитамЗаймам.Расчеты",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовПоКредитамЗаймам.Расчеты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиРасчетовПоКредитамЗаймам.Расчеты.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовПоКредитамЗаймам.Расчеты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовПоКредитамИЗаймам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовСПокупателямиАвансы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:РасшифровкаОстатковРасчетовСКонтрагентами",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовСПокупателямиДолги",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:РасшифровкаОстатковРасчетовСКонтрагентами",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовСПоставщикамиАвансы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:РасшифровкаОстатковРасчетовСКонтрагентами",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиРасчетовСПоставщикамиДолги",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Расчеты",
+ "type": "d3p1:РасшифровкаОстатковРасчетовСКонтрагентами",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиСобственныхТМЦ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТМЦ",
+ "type": "d3p1:Документ.ОстаткиСобственныхТМЦ.ТМЦ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиСобственныхТМЦ.ТМЦ",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиСобственныхТМЦ.ТМЦ.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиСобственныхТМЦ.ТМЦ.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБезНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактура",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТараПереданная",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Тара",
+ "type": "d3p1:Документ.ОстаткиТараПереданная.Тара",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТараПереданная.Тара",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиТараПереданная.Тара.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТараПереданная.Тара.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБезНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТараПринятая",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Тара",
+ "type": "d3p1:Документ.ОстаткиТараПринятая.Тара",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТараПринятая.Тара",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиТараПринятая.Тара.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТараПринятая.Тара.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБезНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТоваровПереданныхНаКомиссию",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ОстаткиТоваровПереданныхНаКомиссию.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТоваровПереданныхНаКомиссию.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиТоваровПереданныхНаКомиссию.Товары.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТоваровПереданныхНаКомиссию.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБезНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТоваровПринятыхНаКомиссию",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ОстаткиТоваровПринятыхНаКомиссию.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТоваровПринятыхНаКомиссию.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОстаткиТоваровПринятыхНаКомиссию.Товары.Строка",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОстаткиТоваровПринятыхНаКомиссию.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБезНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОткрытиеКассовойСмены",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОткрытиеКассовойСмены",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Кассир",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетБанкаПоОперациямЭквайринга",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтчетБанкаПоОперациямЭквайринга",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Эквайрер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаКомиссии",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыписки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Покупки",
+ "type": "d3p1:Документ.ОтчетБанкаПоОперациямЭквайринга.РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Возвраты",
+ "type": "d3p1:Документ.ОтчетБанкаПоОперациямЭквайринга.РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетБанкаПоОперациямЭквайринга.РасшифровкаПлатежа",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетБанкаПоОперациямЭквайринга.РасшифровкаПлатежа.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетБанкаПоОперациямЭквайринга.РасшифровкаПлатежа.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаПлатежа",
+ "type": "xs:date",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидКарты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерКарты",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭквайринговыйТерминал",
+ "type": "d3p1:КлючевыеСвойстваЭквайринговыеТерминалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетДавальцу",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтчетДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Исполнитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсполнительПоПриказу",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МатериалыЗаказчика",
+ "type": "d3p1:Документ.ОтчетДавальцу.МатериалыЗаказчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ОтчетДавальцу.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетДавальцу.МатериалыЗаказчика",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетДавальцу.МатериалыЗаказчика.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетДавальцу.МатериалыЗаказчика.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетДавальцу.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетДавальцу.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетДавальцу.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаПлановая",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПлановая",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомиссионера",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомиссионера",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УдержатьКомиссионноеВознаграждение",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособРасчетаКомиссионногоВознаграждения",
+ "type": "d3p1:СпособыРасчетаКомиссионногоВознаграждения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроцентКомиссионногоВознаграждения",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВознаграждения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСВознаграждения",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ОтчетКомиссионера.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Покупатели",
+ "type": "d3p1:Документ.ОтчетКомиссионера.Покупатели",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовЗаПосредническиеУслуги",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачалоПериодаОтчета",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОкончаниеПериодаОтчета",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Руководитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаРуководителяПоПриказу",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГлавныйБухгалтер",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаГлавногоБухгалтераПоПриказу",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомиссионера.Покупатели",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетКомиссионера.Покупатели.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомиссионера.Покупатели.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "КлючСтроки",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Покупатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыставленСФ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактура",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСФ",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерСФ",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомиссионера.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетКомиссионера.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомиссионера.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаПередачи",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПередачи",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВознаграждения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСВознаграждения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КлючСтроки",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Себестоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомитенту",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтчетКомитенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УдержатьКомиссионноеВознаграждение",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособРасчетаКомиссионногоВознаграждения",
+ "type": "d3p1:СпособыРасчетаКомиссионногоВознаграждения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроцентКомиссионногоВознаграждения",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВознаграждения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСВознаграждения",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УслугаПоВознаграждению",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ОтчетКомитенту.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомитенту.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетКомитенту.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетКомитенту.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаПоступления",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПоступления",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВознаграждения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДСВознаграждения",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаРеализации",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Покупатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетФактураВыданныйПокупателю",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УчетВыручкиВОперационнойКассе",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыПродажа",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыВозвратПродажи",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ВозвратТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыЗакупка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыВозвратЗакупки",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ВозвратТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаБанковскимиКредитами",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ОплатаБанковскимиКредитами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаПлатежнымиКартами",
+ "type": "d3p1:ОплатаПлатежнымиКартами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаСертификатами",
+ "type": "d3p1:ПодарочныеСертификаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодарочныеСертификаты",
+ "type": "d3p1:ПодарочныеСертификаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаПлатежнымиКартамиПодарочныхСертификатов",
+ "type": "d3p1:ОплатаПлатежнымиКартами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НачислениеБонусныхБаллов",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.НачислениеБонусныхБаллов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаБонуснымиБаллами",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ОплатаБонуснымиБаллами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.ОплатаБанковскимиКредитами",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ОплатаБанковскимиКредитами.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.ОплатаБанковскимиКредитами.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Банк",
+ "type": "d3p1:КлючевыеСвойстваБанк",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаОплаты",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидСкидки",
+ "type": "d3p1:ВидыСкидок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПроцентСкидки",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаСкидки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаСУчетомСкидки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Себестоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.ВозвратТоваров",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ВозвратТоваров.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.ВозвратТоваров.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВозврата",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаККМПродажи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПродажи",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПродажи",
+ "type": "d3p1:КлючевыеСвойстваОтчетОРозничныхПродажах",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипУслуги",
+ "type": "d3p1:ТипыУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Принципал",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоговорСПринципалом",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.НачислениеБонусныхБаллов",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.НачислениеБонусныхБаллов.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.НачислениеБонусныхБаллов.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДисконтнаяКарта",
+ "type": "d3p1:КлючевыеСвойстваДисконтныеКарты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрограммаЛояльности",
+ "type": "d3p1:КлючевыеСвойстваПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаНачисления",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСписания",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБонусныхБаллов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.ОплатаБонуснымиБаллами",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетОРозничныхПродажах.ОплатаБонуснымиБаллами.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетОРозничныхПродажах.ОплатаБонуснымиБаллами.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДисконтнаяКарта",
+ "type": "d3p1:КлючевыеСвойстваДисконтныеКарты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрограммаЛояльности",
+ "type": "d3p1:КлючевыеСвойстваПрограммыЛояльности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаБонусныхБаллов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваОтчетПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Продукция",
+ "type": "d3p1:Документ.ОтчетПереработчика.Продукция",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Материалы",
+ "type": "d3p1:Документ.ОтчетПереработчика.Материалы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ОтчетПереработчика.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика.Материалы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетПереработчика.Материалы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика.Материалы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика.Продукция",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетПереработчика.Продукция.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика.Продукция.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ОтчетПереработчика.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ОтчетПереработчика.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСВзносНаличными",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСВзносНаличными",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаОтправитель",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСВозвратЗарплатыПоЗарплатномуПроекту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаНеВыплаченнойЗарплаты",
+ "type": "d3p1:Документ.ПБДСВозвратЗарплатыПоЗарплатномуПроекту.РасшифровкаНеВыплаченнойЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСВозвратЗарплатыПоЗарплатномуПроекту.РасшифровкаНеВыплаченнойЗарплаты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПБДСВозвратЗарплатыПоЗарплатномуПроекту.РасшифровкаНеВыплаченнойЗарплаты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПБДСВозвратЗарплатыПоЗарплатномуПроекту.РасшифровкаНеВыплаченнойЗарплаты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерВедомости",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВедомости",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ведомость",
+ "type": "d3p1:КлючевыеСвойстваВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСКонвертацияВалюты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаКонвертацииВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСПереводНаДругойСчет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОтправитель",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСПрочиеДоходы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочихДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСПрочееПоступление",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСПоПлатежнымКартам",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСПоПлатежнымКартам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:Документ.ПБДСПоПлатежнымКартам.РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаУслуг",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяРасходов",
+ "type": "d3p1:КлючевыеСвойстваСтатьяРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСПоПлатежнымКартам.РасшифровкаПлатежа",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПБДСПоПлатежнымКартам.РасшифровкаПлатежа.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПБДСПоПлатежнымКартам.РасшифровкаПлатежа.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВзаиморасчетов",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВалютаВзаиморасчетов",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсВзаиморасчетов",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КратностьВзаиморасчетов",
+ "type": "d3p1:ТипКратность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСРасчетыСКонтрагентами",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПБДСРасчетыССотрудниками",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетСотрудника",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаДавальцу",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПередачаДавальцу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузополучатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПередачаДавальцу.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаДавальцу.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПередачаДавальцу.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПередачаДавальцу.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаМатериаловВПроизводство",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПередачаМатериаловВПроизводство",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПередачаМатериаловВПроизводство.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаМатериаловВПроизводство.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПередачаМатериаловВПроизводство.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПередачаМатериаловВПроизводство.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеСпособаОтраженияРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заказчик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаМатериаловВЭксплуатацию",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПередачаМатериаловВЭксплуатацию",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПередачаМатериаловВЭксплуатацию.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаМатериаловВЭксплуатацию.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПередачаМатериаловВЭксплуатацию.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПередачаМатериаловВЭксплуатацию.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СрокЭксплуатации",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеСпособаОтраженияРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеНазначенияИспользования",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИнвентарныйНомер",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияСтоимостиТМЦ",
+ "type": "d3p1:СпособыПогашенияСтоимостиТМЦ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаПереработчику",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПередачаПереработчику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузополучатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПередачаПереработчику.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПередачаПереработчику.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПередачаПереработчику.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПередачаПереработчику.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПеремещениеДенежныхДокументов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПеремещениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицоОтправитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицоПолучатель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Выдано",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПринятоОт",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:Документ.ПеремещениеДенежныхДокументов.ДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаДенежныхДокументов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПеремещениеДенежныхДокументов.ДенежныеДокументы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПеремещениеДенежныхДокументов.ДенежныеДокументы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПеремещениеДенежныхДокументов.ДенежныеДокументы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДенежныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваДенежныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Стоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПеремещениеТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПеремещениеТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеОтправитель",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодразделениеПолучатель",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладОтправитель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладПолучатель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПеремещениеТоваров.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетСписанияНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПеремещениеТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПеремещениеТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПеремещениеТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСВРознице",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НовыйСчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеремещениеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПереоценкаТоваровВРознице",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПереоценкаТоваровВРознице",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументУстановкиЦен",
+ "type": "d3p1:КлючевыеСвойстваУстановкаЦенНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПереоценкаТоваровВРознице.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПереоценкаТоваровВРознице.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПереоценкаТоваровВРознице.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПереоценкаТоваровВРознице.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРозницеСтарая",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПереоценки",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДСВРознице",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПересчетТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПересчетТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПересчетТоваров.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПересчетТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПересчетТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПересчетТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоФакт",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковокФакт",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаФакт",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОВнутренняяПередача",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументВыдачиДС",
+ "type": "d3p1:КлючевыеСвойстваРКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОКонвертацияВалюты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаКонвертацииВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОПолучениеНаличныхВБанке",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОПолучениеНаличныхВБанке",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОПоступлениеИзДругойКассы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОПоступлениеИзДругойКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаОтправитель",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаПолучатель",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОПоступлениеИзКассыККМ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОПоступлениеИзКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОПрочееПоступление",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОПрочееПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОПрочиеДоходы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОПрочиеДоходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочихДоходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОРасчетыСКонтрагентами",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОРасчетыССотрудниками",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПКОРозничнаяВыручка",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПКОРозничнаяВыручка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерЧекаККМ",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыручкаНТТ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПлатежноеПоручение",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПлатежноеПоручение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеквизитыПлатежа",
+ "type": "d3p1:ОбщиеСвойстваРеквизитыПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РеквизитыПлатежаБюджет",
+ "type": "d3p1:ОбщиеСвойстваПлатежиВБюджетДляБанка",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекстПлательщика",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТекстПолучателя",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИННПлательщика",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПППлательщика",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИННПолучателя",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПППолучателя",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Оплачено",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПеречислениеВБюджет",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторПлатежа",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаДохода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеДенежныхДокументовОтПодотчетника",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеДенежныхДокументовОтПодотчетника",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПоступлениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицоКонтрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодотчетноеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:ДенежныеДокументыПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаДенежныхДокументов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеДенежныхДокументовОтПоставщика",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеДенежныхДокументовОтПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПоступлениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:ДенежныеДокументыПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаДенежныхДокументов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеДенежныхДокументовПрочее",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеДенежныхДокументовПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваПоступлениеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:ДенежныеДокументыПоступление",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаДенежныхДокументов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеОтПереработчика",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеОтПереработчика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПоступлениеОтПереработчика.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВозвратныеОтходы",
+ "type": "d3p1:Документ.ПоступлениеОтПереработчика.ВозвратныеОтходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовСКонтрагентом",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоАвансам",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеОтПереработчика.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеОтПереработчика.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеОтПереработчика.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеОтПереработчика.ВозвратныеОтходы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеОтПереработчика.ВозвратныеОтходы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеОтПереработчика.ВозвратныеОтходы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеСырьяОтДавальца",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеСырьяОтДавальца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПоступлениеСырьяОтДавальца.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеСырьяОтДавальца.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеСырьяОтДавальца.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеСырьяОтДавальца.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПоступлениеПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтрагентСтороннейКомпании",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Излишки",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Излишки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Недостачи",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Недостачи",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаДопРасходов",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.РасшифровкаДопРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийПоступленияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказПоставщику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДСПродавца",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПоставщика",
+ "type": "d3p1:КлючевыеСвойстваСчетПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.РасшифровкаДопРасходов",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.РасшифровкаДопРасходов.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.РасшифровкаДопРасходов.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": [
+ [
+ {
+ "name": "ПоступлениеТоваровУслугСсылка",
+ "type": "d5p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АвансовыйОтчет",
+ "type": "d5p1:КлючевыеСвойстваАвансовыйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтоимостьТоваров",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗакупкаПодДеятельность",
+ "type": "d3p1:ВидДеятельностиРаздельногоУчетаНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Излишки",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Излишки.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Излишки.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВариантОтражения",
+ "type": "d3p1:ВариантыОтраженияИзлишковПриПоступлении",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Недостачи",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Недостачи.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Недостачи.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВариантОтражения",
+ "type": "d3p1:ВариантыОтраженияНедостачиПриПоступлении",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВРознице",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ПоступлениеТоваровУслуг.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ПоступлениеТоваровУслуг.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЭтоДопРасходы",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РеализацияТоваровУслуг",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийРеализацияТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПереходаПраваСобственности",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОтпускПроизвел",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Руководитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаРуководителяПоПриказу",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГлавныйБухгалтер",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаГлавногоБухгалтераПоПриказу",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Продавец",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузоотправитель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПокупателю",
+ "type": "d3p1:КлючевыеСвойстваСчетПокупателю",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Грузополучатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоверенностьДата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоверенностьНомер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоверенностьКемВыдана",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоверенностьКомуВыдана",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресДоставки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидЭД",
+ "type": "d3p1:ВидыЭД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.РеализацияТоваровУслуг.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.РеализацияТоваровУслуг.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкидкиНаценки",
+ "type": "d3p1:СкидкиНаценки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаРасчетовПоТаре",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РеализацияТоваровУслуг.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.РеализацияТоваровУслуг.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.РеализацияТоваровУслуг.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Себестоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РеализацияТоваровУслуг.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.РеализацияТоваровУслуг.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.РеализацияТоваровУслуг.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипУслуги",
+ "type": "d3p1:ТипыУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Принципал",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоговорСПринципалом",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетДоходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДСПоРеализации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасчетовСПринципалом",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОВнутренняяПередача",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияПолучатель",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВнутренняяПередача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОВыдачаВДругуюКассу",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОВыдачаВДругуюКассу",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаОтправитель",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаПолучатель",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОВыдачаВКассуККМ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОВыдачаВКассуККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаККМ",
+ "type": "d3p1:КлючевыеСвойстваКассыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОВыплатаЗарплаты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:Документ.РКОВыплатаЗарплаты.РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОВыплатаЗарплаты.РасшифровкаПлатежа",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.РКОВыплатаЗарплаты.РасшифровкаПлатежа.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.РКОВыплатаЗарплаты.РасшифровкаПлатежа.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеРасчетов",
+ "type": "d3p1:ОбщиеСвойстваВыплаченнаяЗП",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОКонвертацияВалюты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаКонвертацииВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОНаБанковскийСчет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОНаБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчет",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийРКОНаБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОПрочаяВыдача",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОПрочаяВыдача",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОПрочийРасход",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОПрочийРасход",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочихРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОРасчетыСКонтрагентами",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РКОРасчетыССотрудниками",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРКОРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваРКО",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДепонированиеЗарплаты",
+ "type": "d3p1:РасчетыССотрудниками.ДепонированиеЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСКонвертацияВалюты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаКонвертацииВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСКонвертацияВалюты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСПереводНаДругойСчет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСПереводНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСНаДругойСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСПеречислениеЗаработнойПлаты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСПеречислениеЗаработнойПлаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаДохода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСПеречислениеЗаработнойПлатыНаЛицевыеСчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаВыплатаЗарплатыСотруднику",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСВыплатаЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаДохода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСПрочееСписание",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСПрочееСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийСБДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаДохода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСПлатежиВБюджет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежиВБюджет",
+ "type": "d3p1:ОбщиеСвойстваПлатежиВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаПереводДСВБюджет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСПрочиеРасходы",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСПрочиеРасходы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаПрочихРасходов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСПрочее",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаДохода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСРасчетыСКонтрагентами",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыСКонтрагентами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДСРасчетыССотрудниками",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сотрудник",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетСотрудника",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидРасчетов",
+ "type": "d3p1:ВидыРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасшифровкаПлатежа",
+ "type": "d3p1:РасшифровкаПлатежаРасчетовССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗаявкаНаРасходДенежныхСредств",
+ "type": "d3p1:КлючевыеСвойстваЗаявкаНаРасходДСРасчетыССотрудниками",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДепонированиеЗарплаты",
+ "type": "d3p1:РасчетыССотрудниками.ДепонированиеЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаДохода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СБДССнятиеНаличных",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСБДССнятиеНаличных",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСБДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КассаПолучатель",
+ "type": "d3p1:КлючевыеСвойстваКассы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатьяДДС",
+ "type": "d3p1:КлючевыеСвойстваСтатьяДДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СборкаТоваров",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСборкаТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийСборкаТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.СборкаТоваров.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетСписанияНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СборкаТоваров.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СборкаТоваров.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СборкаТоваров.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДоляСтоимости",
+ "type": "d3p1:ТипДоля",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Себестоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеДенежныхДокументов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОбщиеДанные",
+ "type": "d3p1:ОбщиеСвойстваСписаниеДенежныхДокументов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДенежныеДокументы",
+ "type": "d3p1:ДенежныеДокументыСписание",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаДенежныхДокументов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетРасходов",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеЗапасов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСписаниеЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Основание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.СписаниеЗапасов.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеЗапасов.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СписаниеЗапасов.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СписаниеЗапасов.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеМатериаловИзЭксплуатации",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСписаниеМатериаловИзЭксплуатации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.СписаниеМатериаловИзЭксплуатации.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеМатериаловИзЭксплуатации.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СписаниеМатериаловИзЭксплуатации.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СписаниеМатериаловИзЭксплуатации.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПередачи",
+ "type": "d3p1:КлючевыеСвойстваПередачаМатериаловВЭксплуатацию",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетПередачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеНедостач",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСписаниеНедостач",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Основание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Инвентаризация",
+ "type": "d3p1:КлючевыеСвойстваИнвентаризацияТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.СписаниеНедостач.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СписаниеНедостач.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СписаниеНедостач.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СписаниеНедостач.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЗапасов",
+ "type": "d3p1:ТипыЗапасов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеГТД",
+ "type": "d3p1:ОбщиеСвойстваДанныеНомераГТД",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетПокупателю",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСчетПокупателю",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресДоставки",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетОрганизации",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.СчетПокупателю.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.СчетПокупателю.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетПокупателю.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетПокупателю.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетПокупателю.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетПокупателю.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетПокупателю.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетПокупателю.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Характеристика",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетПоставщика",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСчетПоставщика",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БанковскийСчетКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваБанковскийСчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.СчетПоставщика.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.СчетПоставщика.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетПоставщика.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетПоставщика.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетПоставщика.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаЗаУпаковку",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетПоставщика.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетПоставщика.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетПоставщика.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Характеристика",
+ "type": "d3p1:КлючевыеСвойстваХарактеристикаНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Руководитель",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГлавныйБухгалтер",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидСчетаФактуры",
+ "type": "d3p1:ВидыСчетаФактуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаОперации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Выставлен",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыставления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособВыставления",
+ "type": "d3p1:СпособыВыставленияСчетаФактуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсправляемыйСчетФактура",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаИсправляемогоКорректировочногоДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерИсправляемогоКорректировочногоДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерПлатежноРасчетногоДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПлатежноРасчетногоДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерСчетаФактурыКомиссионера",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонечныйПокупатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторПлатежа",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СводныйКомиссионный",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументыОснования",
+ "type": "d3p1:Документ.СчетФактураВыданный.ДокументыОснования",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПлатежноРасчетныеДокументы",
+ "type": "d3p1:Документ.СчетФактураВыданный.ПлатежноРасчетныеДокументы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Авансы",
+ "type": "d3p1:Документ.СчетФактураВыданный.Авансы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИННКонтрагента",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КППКонтрагента",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный.Авансы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураВыданный.Авансы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный.Авансы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный.ДокументыОснования",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураВыданный.ДокументыОснования.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный.ДокументыОснования.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДокументОснование",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсходныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УчитыватьИсправлениеИсходногоДокумента",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный.ПлатежноРасчетныеДокументы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураВыданный.ПлатежноРасчетныеДокументы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураВыданный.ПлатежноРасчетныеДокументы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДатаДокумента",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерДокумента",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПолучения",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Договор",
+ "type": "d3p1:КлючевыеСвойстваДоговор",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидСчетаФактуры",
+ "type": "d3p1:ВидыСчетаФактуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодВидаОперации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособВыставления",
+ "type": "d3p1:СпособыВыставленияСчетаФактуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсправляемыйСчетФактура",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеРеализацииСчетФактураВыставленный",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеРеализацииКонечныйПокупатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеРеализацииСубкомиссионер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СводныйКомиссионный",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументыОснования",
+ "type": "d3p1:Документ.СчетФактураПолученный.ДокументыОснования",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Авансы",
+ "type": "d3p1:Документ.СчетФактураПолученный.Авансы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Продавцы",
+ "type": "d3p1:Документ.СчетФактураПолученный.Продавцы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетаФактурыВыданныеПокупателям",
+ "type": "d3p1:Документ.СчетФактураПолученный.СчетаФактурыВыданныеПокупателям",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИННКонтрагента",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КППКонтрагента",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.Авансы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураПолученный.Авансы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.Авансы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.ДокументыОснования",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураПолученный.ДокументыОснования.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.ДокументыОснования.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДокументОснование",
+ "type": "d3p1:СоставнойДокументРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсходныйДокумент",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураПолученный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "УчитыватьИсправлениеИсходногоДокумента",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.Продавцы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураПолученный.Продавцы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.Продавцы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Продавец",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИННПродавца",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПППродавца",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.СчетаФактурыВыданныеПокупателям",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.СчетФактураПолученный.СчетаФактурыВыданныеПокупателям.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.СчетФактураПолученный.СчетаФактурыВыданныеПокупателям.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "СчетФактураВыданный",
+ "type": "d3p1:КлючевыеСвойстваСчетФактураВыданный",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Субкомиссионер",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Покупатель",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ТаможеннаяДекларация",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваТаможеннаяДекларация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможенныйСбор",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможенныйШтраф",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КурсДокумента",
+ "type": "d3p1:ТипКурс",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КратностьДокумента",
+ "type": "d3p1:ТипКратность",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерДекларации",
+ "type": "d3p1:ТипНомерДекларации",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.ТаможеннаяДекларация.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Разделы",
+ "type": "d3p1:Документ.ТаможеннаяДекларация.Разделы",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ГруппаНастроекФинансовогоУчетаРасчетов",
+ "type": "d3p1:КлючевыеСвойстваГруппаНастроекФинансовогоУчетаРасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СпособПогашенияЗадолженности",
+ "type": "d3p1:СпособыПогашенияЗадолженности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПогашениеЗадолженности",
+ "type": "d3p1:РасчетыПоДокументам",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ТаможеннаяДекларация.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ТаможеннаяДекларация.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ТаможеннаяДекларация.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерРаздела",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:КлючевыеСвойстваПоступлениеТоваровУслуг",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможеннаяСтоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПошлины",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтранаПроисхождения",
+ "type": "d3p1:КлючевыеСвойстваСтранаМира",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчета",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СчетУчетаНДС",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ТаможеннаяДекларация.Разделы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ТаможеннаяДекларация.Разделы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ТаможеннаяДекларация.Разделы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерРаздела",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаПошлины",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаПошлины",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТаможеннаяСтоимость",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НДСВВалюте",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПошлинаВВалюте",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.УстановкаЦенНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваУстановкаЦенНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипЦен",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.УстановкаЦенНоменклатуры.Товары",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.УстановкаЦенНоменклатуры.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.УстановкаЦенНоменклатуры.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.УстановкаЦенНоменклатуры.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Поставщик",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Агент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДокументПоступления",
+ "type": "d3p1:СоставнойДокументПоступления",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЧекККМ",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваЧекККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеОперацииККМ",
+ "type": "d3p1:ОбщиеСвойстваОперацияККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Отменен",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыПродажа",
+ "type": "d3p1:ОперацияККМТовары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыВозвратПродажи",
+ "type": "d3p1:ОперацияККМВозвратТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыЗакупка",
+ "type": "d3p1:ОперацияККМТовары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТоварыВозвратЗакупки",
+ "type": "d3p1:ОперацияККМВозвратТоваров",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Услуги",
+ "type": "d3p1:Документ.ЧекККМ.Услуги",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкидкиНаценки",
+ "type": "d3p1:СкидкиНаценки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаПлатежнымиКартами",
+ "type": "d3p1:ОплатаПлатежнымиКартами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаСертификатами",
+ "type": "d3p1:ПодарочныеСертификаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПодарочныеСертификаты",
+ "type": "d3p1:ПодарочныеСертификаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатаПлатежнымиКартамиПодарочныхСертификатов",
+ "type": "d3p1:ОплатаПлатежнымиКартами",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОплатыККМ",
+ "type": "d3p1:ОплатыККМ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПризнакСпособаРасчета",
+ "type": "d3p1:ПризнакиСпособаРасчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Агент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Корректировочный",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "РасчетыЧерезАгента",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПризнакАгента",
+ "type": "d3p1:ПризнакиАгента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Налогообложение",
+ "type": "d3p1:НалогообложениеНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ЧекККМ.Услуги",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ЧекККМ.Услуги.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.ЧекККМ.Услуги.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Содержание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КонтактнаяИнформация",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:КонтактнаяИнформация.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "КонтактнаяИнформация.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ВидКонтактнойИнформации",
+ "type": "d3p1:ВидыКИ",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЗначенияПолей",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеКонтактнойИнформации",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваИнформативныеОстатки",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ИнформативныеОстатки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ИнформативныеОстатки",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваИнформативныеОстатки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Справочник.ИнформативныеОстатки.Товары",
+ "lowerBound": 0,
+ "upperBound": 1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ИнформативныеОстатки.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.ИнформативныеОстатки.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.ИнформативныеОстатки.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоВДняхТорговли",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоНаСкладе",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваДанныеКлассификатораБанков",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "БИК",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоррСчет",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СВИФТБИК",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваИсходныйДокумент",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ИсходныйДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ИсходныйДокумент",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваИсходныйДокумент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВзаиморасчетов",
+ "type": "d3p1:ОбщиеСвойстваДанныеВзаиморасчетов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДокумента",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.Работы.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеЗатрат",
+ "type": "d3p1:ОбщиеСвойстваДанныеЗатрат",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ВыпускПродукции.Работы",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ВыпускПродукции.Работы.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваВладелецХарактеристики",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:КлючевыеСвойстваНоменклатура",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидНоменклатуры",
+ "type": "d3p1:КлючевыеСвойстваВидыНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "АкцизныеМарки.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерАкцизнойМарки",
+ "type": "xs:string",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипАкцизнойМарки",
+ "type": "d3p1:ВидыПродукцииИС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "АкцизныеМарки",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:АкцизныеМарки.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваМаркировкаУпаковки",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.МаркировкаУпаковки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипУпаковки",
+ "type": "d3p1:ТипыУпаковокНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТипШтрихкода",
+ "type": "d3p1:ТипыШтрихкодов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.МаркировкаУпаковки",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваМаркировкаУпаковки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаУпаковки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Описание",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВложенныеТовары",
+ "type": "d3p1:Справочник.МаркировкаУпаковки.ВложенныеТовары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.МаркировкаУпаковки.ВложенныеТовары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.МаркировкаУпаковки.ВложенныеТовары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.МаркировкаУпаковки.ВложенныеТовары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "МаркировкиУпаковок",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:МаркировкиУпаковок.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "МаркировкиУпаковок.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "МаркировкаУпаковки",
+ "type": "d3p1:КлючевыеСвойстваМаркировкаУпаковки",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВышестоящееПодразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПодразделениеРегламентированногоУчета",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПодразделениеРегламентированногоУчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваДепонированиеЗарплаты",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.ДепонированиеЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ДепонированиеЗарплаты.ФизическиеЛица.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическоеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ДепонированиеЗарплаты",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваДепонированиеЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Валюта",
+ "type": "d3p1:КлючевыеСвойстваВалюта",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Подразделение",
+ "type": "d3p1:КлючевыеСвойстваПодразделение",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаДокумента",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФизическиеЛица",
+ "type": "d3p1:Документ.ДепонированиеЗарплаты.ФизическиеЛица",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВедомостьНаВыплату",
+ "type": "d3p1:КлючевыеСвойстваВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.ДепонированиеЗарплаты.ФизическиеЛица",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.ДепонированиеЗарплаты.ФизическиеЛица.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Справочник.НастройкиРасчетаРезервовОтпусков",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваНастройкиРасчетаРезервовОтпусков",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НастройкиРасчета",
+ "type": "d3p1:Справочник.НастройкиРасчетаРезервовОтпусков.НастройкиРасчета",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.НастройкиРасчетаРезервовОтпусков.НастройкиРасчета.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ФормироватьРезервОтпусковНУ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФормироватьРезервОтпусковБУ",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Период",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.НастройкиРасчетаРезервовОтпусков.НастройкиРасчета",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Справочник.НастройкиРасчетаРезервовОтпусков.НастройкиРасчета.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.РегламентированныйОтчет",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРегламентированныйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОтправки",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ответственный",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеОтчета",
+ "type": "xs:base64Binary",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДеревоНастройкиСтраниц",
+ "type": "xs:base64Binary",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВыбраннаяФорма",
+ "type": "xs:string",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОтчетности",
+ "type": "d3p1:ВидыРегламентированнойОтчетности",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаПодписи",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КПП",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Банк",
+ "type": "d3p1:КлючевыеСвойстваБанк",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПорядокОкругленияОтчета",
+ "type": "d3p1:ПорядокОкругленияОтчетности",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИсточникОтчета",
+ "type": "xs:string",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалоговыйОрган",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НалоговыйОрганПосредник",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПериодСтрокой",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ФорматВыгрузки",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатусОтчета",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторОтчета",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Период",
+ "type": "d3p1:ТипыПериодов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПредставлениеВида",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПредставлениеПериода",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ТочностьЕдиницыИзмерения",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРегламентированныйОтчет",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РегламентированныйОтчет",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаНачала",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаОкончания",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НомерПачки",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОтчета",
+ "type": "",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "НаименованиеОтчета",
+ "type": "xs:string",
+ "lowerBound": 1,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.СостояниеЗаказа",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваСостояниеЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаСостояния",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЗаказа",
+ "type": "d3p1:СостоянияЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СостояниеЗаказаСтрокой",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваСостояниеЗаказа",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Заказ",
+ "type": "d3p1:КлючевыеСвойстваЗаказКлиента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.СостояниеЗаказа",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПунктыВыдачиЗаказов",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПунктыВыдачиЗаказов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактноеЛицо",
+ "type": "d3p1:КлючевыеСвойстваФизическоеЛицо",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АдресСтрокой",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КонтактнаяИнформация",
+ "type": "d3p1:КонтактнаяИнформация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПунктыВыдачиЗаказов",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПунктыВыдачиЗаказов",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Наименование",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КодПунктаВыдачи",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РаспоряжениеНаОтгрузку.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатусУказанияСерий",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маркируемый",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Весовой",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВесЕдиницыТовара",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РаспоряжениеНаОтгрузку.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.РаспоряжениеНаОтгрузку.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.РаспоряжениеНаОтгрузку",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Представление",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийРаспоряженияНаОтгрузку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияПолучатель",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладПолучатель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаОтгрузки",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Менеджер",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыполнения",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.РаспоряжениеНаОтгрузку.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маркировка",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРаспоряжениеНаОтгрузку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РаспоряжениеНаПриемку.Товары.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЕдиницаИзмерения",
+ "type": "d3p1:КлючевыеСвойстваЕдиницаИзмерения",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Количество",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КоличествоУпаковок",
+ "type": "d3p1:ТипКоличество",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтатусУказанияСерий",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маркируемый",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Весовой",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВесЕдиницыТовара",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СтавкаНДС",
+ "type": "d3p1:СтавкиНДС",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СуммаНДС",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Документ.РаспоряжениеНаПриемку.Товары",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:Документ.РаспоряжениеНаПриемку.Товары.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "Документ.РаспоряжениеНаПриемку",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "Представление",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВидОперации",
+ "type": "d3p1:ВидыОперацийРаспоряженияНаПриемку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Склад",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОрганизацияОтправитель",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "СкладОтправитель",
+ "type": "d3p1:КлючевыеСвойстваСклад",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ОжидаемаяДатаПоступления",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ЦенаВключаетНДС",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Менеджер",
+ "type": "d3p1:КлючевыеСвойстваПользователь",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДанныеВходящегоДокумента",
+ "type": "d3p1:ОбщиеСвойстваДанныеВходящегоДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДатаВыполнения",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Комментарий",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Товары",
+ "type": "d3p1:Документ.РаспоряжениеНаПриемку.Товары",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Маркировка",
+ "type": "d3p1:МаркировкиУпаковок",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "АкцизныеМарки",
+ "type": "d3p1:АкцизныеМарки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваРаспоряжениеНаПриемку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРаспоряжениеНаОтгрузку",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РаспоряжениеНаОтгрузку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваРаспоряжениеНаПриемку",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Номер",
+ "type": "d3p1:ТипНомерДокумента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:ДокументСсылка.РаспоряжениеНаПриемку",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваНастройкиРасчетаРезервовОтпусков",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.НастройкиРасчетаРезервовОтпусков",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Период",
+ "type": "xs:date",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасчетыССотрудниками.ДепонированиеЗарплаты.Строка",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "НомерСтрокиДокумента",
+ "type": "d3p1:ТипНомерСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ИдентификаторСтроки",
+ "type": "d3p1:ТипИдентификаторСтроки",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ВедомостьНаВыплату",
+ "type": "d3p1:КлючевыеСвойстваВедомостьНаВыплатуЗарплаты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Сумма",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "РасчетыССотрудниками.ДепонированиеЗарплаты",
+ "base": "",
+ "properties": [
+ {
+ "name": "Строка",
+ "type": "d3p1:РасчетыССотрудниками.ДепонированиеЗарплаты.Строка",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ {
+ "name": "ОбщиеСвойстваОписываемаяНоменклатура",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Номенклатура",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "SKUКонтрагента",
+ "type": "d3p1:КлючевыеСвойстваSKUКонтрагента",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПрайсЛист",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПрайсЛист",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПрайсЛист",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ТипЦены",
+ "type": "d3p1:КлючевыеСвойстваТипЦен",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПрайсЛист",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Дата",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Организация",
+ "type": "d3p1:КлючевыеСвойстваОрганизация",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПринадлежностьПрайсЛистаКонтрагенту",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПринадлежностьПрайсЛистаКонтрагенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПринадлежностьПрайсЛистаКонтрагенту",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Контрагент",
+ "type": "d3p1:КлючевыеСвойстваКонтрагент",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПринадлежностьПрайсЛистаКонтрагенту",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрайсЛист",
+ "type": "d3p1:КлючевыеСвойстваПрайсЛист",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "status",
+ "type": "xs:int",
+ "lowerBound": 1,
+ "upperBound": -1,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.ПозицияПрайсЛиста",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваПозицияПрайсЛиста",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Цена",
+ "type": "d3p1:ТипСумма",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваПозицияПрайсЛиста",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "ДанныеНоменклатуры",
+ "type": "d3p1:ОбщиеСвойстваДанныеНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.ПозицияПрайсЛиста",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ПрайсЛист",
+ "type": "d3p1:КлючевыеСвойстваПрайсЛист",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Справочник.МаркиНоменклатуры",
+ "base": "d2p1:Object",
+ "properties": [
+ [
+ {
+ "name": "КлючевыеСвойства",
+ "type": "d3p1:КлючевыеСвойстваМаркиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "ДополнительныеРеквизиты",
+ "type": "d3p1:ДополнительныеРеквизиты",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "КлючевыеСвойстваМаркиНоменклатуры",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "Наименование",
+ "type": "",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "Ссылка",
+ "type": "d3p1:СправочникСсылка.МаркиНоменклатуры",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "properties": [
+ {
+ "name": "performance",
+ "type": "d2p1:Performance",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ]
+ },
+ "mdoReference": {
+ "type": "XDTO_PACKAGE",
+ "mdoRef": "XDTOPackage.ПакетXDTO1",
+ "mdoRefRu": "ПакетXDTO.ПакетXDTO1"
+ },
+ "name": "ПакетXDTO1",
+ "namespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "b8a93cce-56e4-4507-b281-5c525a466a0f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses_3_18/Bots.\320\221\320\276\321\2021.json" "b/src/test/resources/fixtures/mdclasses_3_18/Bots.\320\221\320\276\321\2021.json"
new file mode 100644
index 000000000..1fbe7ab9a
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses_3_18/Bots.\320\221\320\276\321\2021.json"
@@ -0,0 +1,27 @@
+{"com.github._1c_syntax.bsl.mdo.Bot": {
+ "comment": "",
+ "mdoReference": {
+ "type": "BOT",
+ "mdoRef": "Bot.Бот1",
+ "mdoRefRu": "Бот.Бот1"
+ },
+ "modules": [
+ {
+ "moduleType": "BotModule",
+ "uri": "src/test/resources/ext/designer/mdclasses_3_18/src/cf/Bots/Бот1/Ext/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Bot/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Бот1",
+ "objectBelonging": "OWN",
+ "predefined": true,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "89c58e6a-00ee-49b9-8717-d1dd272f9b96"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses_3_18/Bots.\320\221\320\276\321\2021_edt.json" "b/src/test/resources/fixtures/mdclasses_3_18/Bots.\320\221\320\276\321\2021_edt.json"
new file mode 100644
index 000000000..23f5651e6
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses_3_18/Bots.\320\221\320\276\321\2021_edt.json"
@@ -0,0 +1,27 @@
+{"com.github._1c_syntax.bsl.mdo.Bot": {
+ "comment": "",
+ "mdoReference": {
+ "type": "BOT",
+ "mdoRef": "Bot.Бот1",
+ "mdoRefRu": "Бот.Бот1"
+ },
+ "modules": [
+ {
+ "moduleType": "BotModule",
+ "uri": "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/Bots/Бот1/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Bot/mdoReference"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "Бот1",
+ "objectBelonging": "OWN",
+ "predefined": true,
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": []
+ },
+ "uuid": "89c58e6a-00ee-49b9-8717-d1dd272f9b96"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses_3_18/Configuration.json b/src/test/resources/fixtures/mdclasses_3_18/Configuration.json
new file mode 100644
index 000000000..ae5d27310
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses_3_18/Configuration.json
@@ -0,0 +1,378 @@
+{"com.github._1c_syntax.bsl.mdclasses.Configuration": {
+ "XDTOPackages": [],
+ "accountingRegisters": [],
+ "accumulationRegisters": [],
+ "bots": [
+ {
+ "uuid": "89c58e6a-00ee-49b9-8717-d1dd272f9b96",
+ "name": "Бот1",
+ "mdoReference": {
+ "type": "BOT",
+ "mdoRef": "Bot.Бот1",
+ "mdoRefRu": "Бот.Бот1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "predefined": true
+ }
+ ],
+ "briefInformation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "businessProcesses": [],
+ "calculationRegisters": [],
+ "catalogs": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfAccounts": [],
+ "chartsOfCalculationTypes": [],
+ "chartsOfCharacteristicTypes": [
+ {
+ "uuid": "39e5b3db-739a-4c86-a65c-5f92865cfbca",
+ "name": "ПланВидовХарактеристик1",
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "children": [
+ [
+ 24
+ ],
+ []
+ ],
+ "commandGroups": [],
+ "comment": "",
+ "commonAttributes": [],
+ "commonCommands": [],
+ "commonForms": [],
+ "commonModules": [
+ {
+ "uuid": "4359e4d1-f53f-4ca8-870b-7a53fb585a2d",
+ "name": "ОбщийМодуль1",
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодуль1",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодуль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "moduleType": "CommonModule",
+ "uri": "src/test/resources/ext/designer/mdclasses_3_18/src/cf/CommonModules/ОбщийМодуль1/Ext/Module.bsl",
+ "isProtected": false,
+ "server": true,
+ "global": false,
+ "clientManagedApplication": false,
+ "externalConnection": false,
+ "clientOrdinaryApplication": false,
+ "serverCall": false,
+ "privileged": false,
+ "returnValuesReuse": "DONT_USE"
+ }
+ ],
+ "commonPictures": [],
+ "commonTemplates": [
+ [
+ 10
+ ],
+ []
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 18
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 18
+ },
+ "configurationSource": "DESIGNER",
+ "constants": [],
+ "copyrights": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "dataLockControlMode": "AUTOMATIC_AND_MANAGED",
+ "dataProcessors": [],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [],
+ "detailedInformation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "documentJournals": [],
+ "documentNumerators": [],
+ "documents": [
+ [
+ 3
+ ],
+ []
+ ],
+ "enums": [],
+ "eventSubscriptions": [],
+ "exchangePlans": [
+ {
+ "uuid": "56e42a5a-8459-41b4-aca2-770530989cab",
+ "name": "ПланОбмена1",
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "distributedInfoBase": false,
+ "includeConfigurationExtensions": false,
+ "content": []
+ }
+ ],
+ "externalDataSources": [],
+ "filterCriteria": [],
+ "functionalOptions": [],
+ "functionalOptionsParameters": [],
+ "httpServices": [],
+ "informationRegisters": [
+ {
+ "uuid": "60c0f612-ad13-46f6-b1d2-8ed540ff8b29",
+ "name": "РегистрСведений1",
+ "mdoReference": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РегистрСведений1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "bdf4a4cb-24dc-4223-a79d-4702b1adaa5c",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.РегистрСведений1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/informationRegisters/com.github._1c_syntax.bsl.mdo.InformationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ [
+ 2
+ ],
+ []
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "integrationServices": [
+ {
+ "uuid": "94ed2401-fd3c-4e92-b34d-1cdad2d8ee42",
+ "name": "СервисИнтеграции1",
+ "mdoReference": {
+ "type": "INTEGRATION_SERVICE",
+ "mdoRef": "IntegrationService.СервисИнтеграции1",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "externalIntegrationServiceAddress": "",
+ "integrationServiceChannels": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "interfaces": [],
+ "languages": [
+ {
+ "uuid": "6aff9aa7-4406-45ee-bf4f-24960d0cfa22",
+ "name": "Русский",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/defaultLanguage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Русский"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "languageCode": "ru"
+ }
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Конфигурация",
+ "mdoRefRu": "Конфигурация.Конфигурация"
+ },
+ "modalityUseMode": "DONT_USE",
+ "modules": [
+ 1
+ ],
+ "name": "Конфигурация",
+ "objectAutonumerationMode": "NotAutoFree",
+ "objectBelonging": "OWN",
+ "reports": [],
+ "roles": [
+ {
+ "uuid": "91a98641-1aa3-4ace-815b-28e0f91909bc",
+ "name": "Роль1",
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "data": {
+ "setForNewObjects": true,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ }
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "f1ea0fc2-e3a7-4392-bd16-74d5343afeb1",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "methodPath": "CommonModule.ОбщийМодуль1.РегламентноеЗадание1",
+ "moduleName": "ОбщийМодуль1",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "description": "Задание",
+ "key": "Ключ",
+ "use": true,
+ "predefined": false,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [],
+ "sessionParameters": [],
+ "settingsStorages": [],
+ "styleItems": [],
+ "styles": [],
+ "subsystems": [],
+ "supportVariant": "NONE",
+ "synchronousExtensionAndAddInCallUseMode": "USE_WITH_WARNINGS",
+ "synchronousPlatformExtensionAndAddInCallUseMode": "DONT_USE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Конфигурация"
+ ]
+ ]
+ },
+ "tasks": [],
+ "useManagedFormInOrdinaryApplication": false,
+ "useOrdinaryFormInManagedApplication": false,
+ "usePurposes": [
+ "PLATFORM_APPLICATION"
+ ],
+ "uuid": "ade513fa-b8dc-4656-b1b6-68fde4fe18de",
+ "vendor": "",
+ "version": "",
+ "webServices": [],
+ "wsReferences": []
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json b/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json
new file mode 100644
index 000000000..0208bc163
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json
@@ -0,0 +1,378 @@
+{"com.github._1c_syntax.bsl.mdclasses.Configuration": {
+ "XDTOPackages": [],
+ "accountingRegisters": [],
+ "accumulationRegisters": [],
+ "bots": [
+ {
+ "uuid": "89c58e6a-00ee-49b9-8717-d1dd272f9b96",
+ "name": "Бот1",
+ "mdoReference": {
+ "type": "BOT",
+ "mdoRef": "Bot.Бот1",
+ "mdoRefRu": "Бот.Бот1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "predefined": true
+ }
+ ],
+ "briefInformation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "businessProcesses": [],
+ "calculationRegisters": [],
+ "catalogs": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfAccounts": [],
+ "chartsOfCalculationTypes": [],
+ "chartsOfCharacteristicTypes": [
+ {
+ "uuid": "39e5b3db-739a-4c86-a65c-5f92865cfbca",
+ "name": "ПланВидовХарактеристик1",
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "children": [
+ [
+ 24
+ ],
+ []
+ ],
+ "commandGroups": [],
+ "comment": "",
+ "commonAttributes": [],
+ "commonCommands": [],
+ "commonForms": [],
+ "commonModules": [
+ {
+ "uuid": "4359e4d1-f53f-4ca8-870b-7a53fb585a2d",
+ "name": "ОбщийМодуль1",
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.ОбщийМодуль1",
+ "mdoRefRu": "ОбщийМодуль.ОбщийМодуль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "moduleType": "CommonModule",
+ "uri": "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/CommonModules/ОбщийМодуль1/Module.bsl",
+ "isProtected": false,
+ "server": true,
+ "global": false,
+ "clientManagedApplication": false,
+ "externalConnection": false,
+ "clientOrdinaryApplication": false,
+ "serverCall": false,
+ "privileged": false,
+ "returnValuesReuse": "DONT_USE"
+ }
+ ],
+ "commonPictures": [],
+ "commonTemplates": [
+ [
+ 10
+ ],
+ []
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 18
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 18
+ },
+ "configurationSource": "EDT",
+ "constants": [],
+ "copyrights": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "dataLockControlMode": "AUTOMATIC_AND_MANAGED",
+ "dataProcessors": [],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [],
+ "detailedInformation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "documentJournals": [],
+ "documentNumerators": [],
+ "documents": [
+ [
+ 3
+ ],
+ []
+ ],
+ "enums": [],
+ "eventSubscriptions": [],
+ "exchangePlans": [
+ {
+ "uuid": "56e42a5a-8459-41b4-aca2-770530989cab",
+ "name": "ПланОбмена1",
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "distributedInfoBase": false,
+ "includeConfigurationExtensions": false,
+ "content": []
+ }
+ ],
+ "externalDataSources": [],
+ "filterCriteria": [],
+ "functionalOptions": [],
+ "functionalOptionsParameters": [],
+ "httpServices": [],
+ "informationRegisters": [
+ {
+ "uuid": "60c0f612-ad13-46f6-b1d2-8ed540ff8b29",
+ "name": "РегистрСведений1",
+ "mdoReference": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РегистрСведений1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "bdf4a4cb-24dc-4223-a79d-4702b1adaa5c",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.РегистрСведений1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/informationRegisters/com.github._1c_syntax.bsl.mdo.InformationRegister/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ [
+ 2
+ ],
+ []
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "integrationServices": [
+ {
+ "uuid": "94ed2401-fd3c-4e92-b34d-1cdad2d8ee42",
+ "name": "СервисИнтеграции1",
+ "mdoReference": {
+ "type": "INTEGRATION_SERVICE",
+ "mdoRef": "IntegrationService.СервисИнтеграции1",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "externalIntegrationServiceAddress": "",
+ "integrationServiceChannels": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "interfaces": [],
+ "languages": [
+ {
+ "uuid": "6aff9aa7-4406-45ee-bf4f-24960d0cfa22",
+ "name": "Русский",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/defaultLanguage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Русский"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "languageCode": "ru"
+ }
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Конфигурация",
+ "mdoRefRu": "Конфигурация.Конфигурация"
+ },
+ "modalityUseMode": "DONT_USE",
+ "modules": [
+ 1
+ ],
+ "name": "Конфигурация",
+ "objectAutonumerationMode": "NotAutoFree",
+ "objectBelonging": "OWN",
+ "reports": [],
+ "roles": [
+ {
+ "uuid": "91a98641-1aa3-4ace-815b-28e0f91909bc",
+ "name": "Роль1",
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "data": {
+ "setForNewObjects": true,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ }
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "f1ea0fc2-e3a7-4392-bd16-74d5343afeb1",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym"
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "methodPath": "CommonModule.ОбщийМодуль1.РегламентноеЗадание1",
+ "moduleName": "ОбщийМодуль1",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "description": "Задание",
+ "key": "Ключ",
+ "use": true,
+ "predefined": false,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [],
+ "sessionParameters": [],
+ "settingsStorages": [],
+ "styleItems": [],
+ "styles": [],
+ "subsystems": [],
+ "supportVariant": "NONE",
+ "synchronousExtensionAndAddInCallUseMode": "USE_WITH_WARNINGS",
+ "synchronousPlatformExtensionAndAddInCallUseMode": "DONT_USE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Конфигурация"
+ ]
+ ]
+ },
+ "tasks": [],
+ "useManagedFormInOrdinaryApplication": false,
+ "useOrdinaryFormInManagedApplication": false,
+ "usePurposes": [
+ "PLATFORM_APPLICATION"
+ ],
+ "uuid": "ade513fa-b8dc-4656-b1b6-68fde4fe18de",
+ "vendor": "",
+ "version": "",
+ "webServices": [],
+ "wsReferences": []
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses_3_18/IntegrationServices.\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.json" "b/src/test/resources/fixtures/mdclasses_3_18/IntegrationServices.\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.json"
new file mode 100644
index 000000000..f97f16372
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses_3_18/IntegrationServices.\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701.json"
@@ -0,0 +1,88 @@
+{"com.github._1c_syntax.bsl.mdo.IntegrationService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 2,
+ "com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel": {
+ "uuid": "fd0a0d02-c211-4985-ab9e-f0e7e63a6943",
+ "name": "КаналСервисаИнтеграции1",
+ "mdoReference": {
+ "type": "INTEGRATION_SERVICE_CHANNEL",
+ "mdoRef": "IntegrationService.СервисИнтеграции1.IntegrationServiceChannel.КаналСервисаИнтеграции1",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1.КаналСервисаИнтеграции.КаналСервисаИнтеграции1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "INTEGRATION_SERVICE",
+ "mdoRef": "IntegrationService.СервисИнтеграции1",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1"
+ },
+ "messageDirection": "RECEIVE",
+ "receiveMessageProcessing": "КаналСервисаИнтеграции1ОбработкаПолученияСообщения",
+ "externalIntegrationServiceChannelName": "Имя"
+ },
+ "com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel": {
+ "uuid": "69b7fd46-77b8-465a-abcc-a59c1e2ae126",
+ "name": "КаналСервисаИнтеграции2",
+ "mdoReference": {
+ "type": "INTEGRATION_SERVICE_CHANNEL",
+ "mdoRef": "IntegrationService.СервисИнтеграции1.IntegrationServiceChannel.КаналСервисаИнтеграции2",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1.КаналСервисаИнтеграции.КаналСервисаИнтеграции2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/owner"
+ },
+ "messageDirection": "SEND",
+ "receiveMessageProcessing": "",
+ "externalIntegrationServiceChannelName": "Имя"
+ }
+ }
+ ],
+ "comment": "",
+ "externalIntegrationServiceAddress": "",
+ "integrationServiceChannels": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel[2]"
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "IntegrationServiceModule",
+ "uri": "src/test/resources/ext/designer/mdclasses_3_18/src/cf/IntegrationServices/СервисИнтеграции1/Ext/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "СервисИнтеграции1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/synonym"
+ },
+ "uuid": "94ed2401-fd3c-4e92-b34d-1cdad2d8ee42"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/mdclasses_3_18/IntegrationServices.\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701_edt.json" "b/src/test/resources/fixtures/mdclasses_3_18/IntegrationServices.\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701_edt.json"
new file mode 100644
index 000000000..284a805d6
--- /dev/null
+++ "b/src/test/resources/fixtures/mdclasses_3_18/IntegrationServices.\320\241\320\265\321\200\320\262\320\270\321\201\320\230\320\275\321\202\320\265\320\263\321\200\320\260\321\206\320\270\320\2701_edt.json"
@@ -0,0 +1,88 @@
+{"com.github._1c_syntax.bsl.mdo.IntegrationService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 2,
+ "com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel": {
+ "uuid": "fd0a0d02-c211-4985-ab9e-f0e7e63a6943",
+ "name": "КаналСервисаИнтеграции1",
+ "mdoReference": {
+ "type": "INTEGRATION_SERVICE_CHANNEL",
+ "mdoRef": "IntegrationService.СервисИнтеграции1.IntegrationServiceChannel.КаналСервисаИнтеграции1",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1.КаналСервисаИнтеграции.КаналСервисаИнтеграции1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "INTEGRATION_SERVICE",
+ "mdoRef": "IntegrationService.СервисИнтеграции1",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1"
+ },
+ "messageDirection": "RECEIVE",
+ "receiveMessageProcessing": "КаналСервисаИнтеграции1ОбработкаПолученияСообщения",
+ "externalIntegrationServiceChannelName": "Имя"
+ },
+ "com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel": {
+ "uuid": "69b7fd46-77b8-465a-abcc-a59c1e2ae126",
+ "name": "КаналСервисаИнтеграции2",
+ "mdoReference": {
+ "type": "INTEGRATION_SERVICE_CHANNEL",
+ "mdoRef": "IntegrationService.СервисИнтеграции1.IntegrationServiceChannel.КаналСервисаИнтеграции2",
+ "mdoRefRu": "СервисИнтеграции.СервисИнтеграции1.КаналСервисаИнтеграции.КаналСервисаИнтеграции2"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/owner"
+ },
+ "messageDirection": "SEND",
+ "receiveMessageProcessing": "",
+ "externalIntegrationServiceChannelName": "Имя"
+ }
+ }
+ ],
+ "comment": "",
+ "externalIntegrationServiceAddress": "",
+ "integrationServiceChannels": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel[2]"
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "IntegrationServiceModule",
+ "uri": "src/test/resources/ext/edt/mdclasses_3_18/configuration/src/IntegrationServices/СервисИнтеграции1/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/owner"
+ },
+ "supportVariant": "NONE",
+ "isProtected": false
+ }
+ ],
+ "name": "СервисИнтеграции1",
+ "objectBelonging": "OWN",
+ "supportVariant": "NONE",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.IntegrationService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.IntegrationServiceChannel/synonym"
+ },
+ "uuid": "94ed2401-fd3c-4e92-b34d-1cdad2d8ee42"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses_ext/Configuration.json b/src/test/resources/fixtures/mdclasses_ext/Configuration.json
new file mode 100644
index 000000000..64d8ff706
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses_ext/Configuration.json
@@ -0,0 +1,526 @@
+{"com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension": {
+ "XDTOPackages": [
+ [
+ 2
+ ],
+ []
+ ],
+ "accountingRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "accumulationRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "bots": [],
+ "businessProcesses": [
+ {
+ "uuid": "bb0c9b9f-58d0-4180-b5c8-211ade79fe6a",
+ "name": "БизнесПроцесс1",
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "calculationRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "catalogs": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfAccounts": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfCalculationTypes": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfCharacteristicTypes": [
+ [
+ 2
+ ],
+ []
+ ],
+ "children": [
+ [
+ 84
+ ],
+ []
+ ],
+ "commandGroups": [
+ [
+ 2
+ ],
+ []
+ ],
+ "comment": "",
+ "commonAttributes": [
+ {
+ "uuid": "88200555-c4e7-4a2d-9e76-434838f0015f",
+ "name": "ОбщийРеквизит1",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "autoUse": "USE",
+ "passwordMode": false,
+ "indexing": "DONT_INDEX",
+ "dataSeparation": "SEPARATE",
+ "dataSeparationValue": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "dataSeparationUse": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "conditionalSeparation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "usersSeparation": "SEPARATE",
+ "authenticationSeparation": "SEPARATE",
+ "configurationExtensionsSeparation": "SEPARATE",
+ "content": []
+ }
+ ],
+ "commonCommands": [
+ [
+ 2
+ ],
+ []
+ ],
+ "commonForms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "commonModules": [
+ [
+ 9
+ ],
+ []
+ ],
+ "commonPictures": [
+ [
+ 2
+ ],
+ []
+ ],
+ "commonTemplates": [
+ [
+ 2
+ ],
+ []
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 16
+ },
+ "configurationExtensionCompatibilityMode": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/compatibilityMode"
+ },
+ "configurationExtensionPurpose": "CUSTOMIZATION",
+ "configurationSource": "DESIGNER",
+ "constants": [
+ [
+ 2
+ ],
+ []
+ ],
+ "dataProcessors": [
+ [
+ 2
+ ],
+ []
+ ],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [
+ {
+ "uuid": "b6f5ff2a-0e1f-4660-b3a3-6e982cfd1be5",
+ "name": "ОпределяемыйТип1",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documentJournals": [
+ {
+ "uuid": "40b7b7e1-6986-4602-82d4-753480f20e3b",
+ "name": "ЖурналДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "columns": [],
+ "forms": [],
+ "templates": [],
+ "registeredDocuments": []
+ }
+ ],
+ "documentNumerators": [
+ {
+ "uuid": "780a7504-61e5-4d50-8481-4031f01db4ca",
+ "name": "НумераторДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documents": [
+ [
+ 2
+ ],
+ []
+ ],
+ "enums": [
+ [
+ 2
+ ],
+ []
+ ],
+ "eventSubscriptions": [
+ {
+ "uuid": "99733189-8e92-4db0-ac1a-c989896543e5",
+ "name": "ПодпискаНаСобытие1",
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "handler": {
+ "methodPath": "",
+ "moduleName": "",
+ "methodName": ""
+ },
+ "event": ""
+ }
+ ],
+ "exchangePlans": [
+ [
+ 2
+ ],
+ []
+ ],
+ "externalDataSources": [],
+ "filterCriteria": [
+ [
+ 2
+ ],
+ []
+ ],
+ "functionalOptions": [
+ [
+ 2
+ ],
+ []
+ ],
+ "functionalOptionsParameters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "httpServices": [
+ [
+ 2
+ ],
+ []
+ ],
+ "informationRegisters": [
+ [
+ 4
+ ],
+ []
+ ],
+ "integrationServices": [],
+ "interfaces": [],
+ "languages": [
+ {
+ "uuid": "2739e06e-cb93-4617-bc73-ca2fa2db8d0e",
+ "name": "Русский",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/defaultLanguage"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "languageCode": "ru"
+ }
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Расширение",
+ "mdoRefRu": "Конфигурация.Расширение"
+ },
+ "modules": [
+ 0
+ ],
+ "name": "Расширение",
+ "namePrefix": "Расш_",
+ "objectBelonging": "ADOPTED",
+ "reports": [
+ [
+ 2
+ ],
+ []
+ ],
+ "roles": [
+ [
+ 2
+ ],
+ []
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "78e14b08-6c57-430f-978b-0af7468ecc49",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/eventSubscriptions/com.github._1c_syntax.bsl.mdo.EventSubscription/handler"
+ },
+ "description": "",
+ "key": "",
+ "use": false,
+ "predefined": false,
+ "restartCountOnFailure": 0,
+ "restartIntervalOnFailure": 0
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [
+ {
+ "uuid": "323e7c7d-14d7-4a93-8ae8-674278078a73",
+ "name": "Последовательность1",
+ "mdoReference": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "dimensions": [
+ {
+ "uuid": "6ac31292-b44c-42fd-a5e3-a73ddde64e27",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/sequences/com.github._1c_syntax.bsl.mdo.Sequence/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ]
+ }
+ ],
+ "sessionParameters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "settingsStorages": [
+ {
+ "uuid": "a8db75af-8205-4b92-bbbe-94a76b2b6317",
+ "name": "ХранилищеНастроек1",
+ "mdoReference": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеНастроек1",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеНастроек1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "styleItems": [
+ [
+ 2
+ ],
+ []
+ ],
+ "styles": [
+ [
+ 2
+ ],
+ []
+ ],
+ "subsystems": [
+ [
+ 2
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Расширение"
+ ]
+ ]
+ },
+ "tasks": [
+ {
+ "uuid": "c79b6c18-53d2-436b-94f9-fa032a7de44a",
+ "name": "Задача1",
+ "mdoReference": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "addressingAttributes": []
+ }
+ ],
+ "usePurposes": [
+ "PLATFORM_APPLICATION"
+ ],
+ "uuid": "6e50eb82-8de4-4aff-ba5b-6b441963a56a",
+ "vendor": "",
+ "version": "",
+ "webServices": [
+ [
+ 2
+ ],
+ []
+ ],
+ "wsReferences": [
+ [
+ 2
+ ],
+ []
+ ]
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json b/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json
new file mode 100644
index 000000000..500a38405
--- /dev/null
+++ b/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json
@@ -0,0 +1,557 @@
+{"com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension": {
+ "XDTOPackages": [
+ [
+ 2
+ ],
+ []
+ ],
+ "accountingRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "accumulationRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "bots": [],
+ "businessProcesses": [
+ {
+ "uuid": "bb0c9b9f-58d0-4180-b5c8-211ade79fe6a",
+ "name": "БизнесПроцесс1",
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "calculationRegisters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "catalogs": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfAccounts": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfCalculationTypes": [
+ [
+ 2
+ ],
+ []
+ ],
+ "chartsOfCharacteristicTypes": [
+ [
+ 2
+ ],
+ []
+ ],
+ "children": [
+ [
+ 82
+ ],
+ []
+ ],
+ "commandGroups": [
+ [
+ 2
+ ],
+ []
+ ],
+ "comment": "",
+ "commonAttributes": [
+ {
+ "uuid": "88200555-c4e7-4a2d-9e76-434838f0015f",
+ "name": "ОбщийРеквизит1",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "autoUse": "DONT_USE",
+ "passwordMode": false,
+ "indexing": "DONT_INDEX",
+ "dataSeparation": "DONT_USE",
+ "dataSeparationValue": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "dataSeparationUse": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "conditionalSeparation": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue"
+ },
+ "usersSeparation": "DONT_USE",
+ "authenticationSeparation": "DONT_USE",
+ "configurationExtensionsSeparation": "SEPARATE",
+ "content": []
+ }
+ ],
+ "commonCommands": [
+ [
+ 2
+ ],
+ []
+ ],
+ "commonForms": [
+ [
+ 2
+ ],
+ []
+ ],
+ "commonModules": [
+ [
+ 9
+ ],
+ []
+ ],
+ "commonPictures": [
+ [
+ 2
+ ],
+ []
+ ],
+ "commonTemplates": [
+ [
+ 2
+ ],
+ []
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 14
+ },
+ "configurationExtensionPurpose": "CUSTOMIZATION",
+ "configurationSource": "EDT",
+ "constants": [
+ [
+ 2
+ ],
+ []
+ ],
+ "dataProcessors": [
+ [
+ 2
+ ],
+ []
+ ],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [
+ {
+ "uuid": "b6f5ff2a-0e1f-4660-b3a3-6e982cfd1be5",
+ "name": "ОпределяемыйТип1",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documentJournals": [
+ {
+ "uuid": "40b7b7e1-6986-4602-82d4-753480f20e3b",
+ "name": "ЖурналДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "columns": [],
+ "forms": [
+ {
+ "uuid": "a7b9913b-f08f-471a-81e6-38af60895e4a",
+ "name": "Расш_ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Form.Расш_ФормаСписка",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Форма.Расш_ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyFormData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/documentJournals/com.github._1c_syntax.bsl.mdo.DocumentJournal/mdoReference"
+ },
+ "usePurposes": [
+ [
+ 2
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [],
+ "registeredDocuments": []
+ }
+ ],
+ "documentNumerators": [
+ {
+ "uuid": "780a7504-61e5-4d50-8481-4031f01db4ca",
+ "name": "НумераторДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documents": [
+ [
+ 2
+ ],
+ []
+ ],
+ "enums": [
+ [
+ 2
+ ],
+ []
+ ],
+ "eventSubscriptions": [
+ {
+ "uuid": "99733189-8e92-4db0-ac1a-c989896543e5",
+ "name": "ПодпискаНаСобытие1",
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "handler": {
+ "methodPath": "",
+ "moduleName": "",
+ "methodName": ""
+ },
+ "event": ""
+ }
+ ],
+ "exchangePlans": [
+ [
+ 2
+ ],
+ []
+ ],
+ "externalDataSources": [],
+ "filterCriteria": [
+ [
+ 2
+ ],
+ []
+ ],
+ "functionalOptions": [
+ [
+ 2
+ ],
+ []
+ ],
+ "functionalOptionsParameters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "httpServices": [
+ [
+ 2
+ ],
+ []
+ ],
+ "informationRegisters": [
+ [
+ 4
+ ],
+ []
+ ],
+ "integrationServices": [],
+ "interfaces": [],
+ "languages": [
+ {
+ "uuid": "2739e06e-cb93-4617-bc73-ca2fa2db8d0e",
+ "name": "Русский",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/defaultLanguage"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "languageCode": "ru"
+ }
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Расширение",
+ "mdoRefRu": "Конфигурация.Расширение"
+ },
+ "modules": [
+ 0
+ ],
+ "name": "Расширение",
+ "namePrefix": "Расш_",
+ "objectBelonging": "ADOPTED",
+ "reports": [
+ [
+ 2
+ ],
+ []
+ ],
+ "roles": [
+ [
+ 2
+ ],
+ []
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "78e14b08-6c57-430f-978b-0af7468ecc49",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/eventSubscriptions/com.github._1c_syntax.bsl.mdo.EventSubscription/handler"
+ },
+ "description": "",
+ "key": "",
+ "use": true,
+ "predefined": false,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 25
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [
+ {
+ "uuid": "323e7c7d-14d7-4a93-8ae8-674278078a73",
+ "name": "Последовательность1",
+ "mdoReference": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "dimensions": [
+ {
+ "uuid": "6ac31292-b44c-42fd-a5e3-a73ddde64e27",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/sequences/com.github._1c_syntax.bsl.mdo.Sequence/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ]
+ }
+ ],
+ "sessionParameters": [
+ [
+ 2
+ ],
+ []
+ ],
+ "settingsStorages": [
+ {
+ "uuid": "a8db75af-8205-4b92-bbbe-94a76b2b6317",
+ "name": "ХранилищеНастроек1",
+ "mdoReference": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеНастроек1",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеНастроек1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "styleItems": [
+ [
+ 2
+ ],
+ []
+ ],
+ "styles": [],
+ "subsystems": [
+ [
+ 2
+ ],
+ []
+ ],
+ "supportVariant": "NONE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Расширение"
+ ]
+ ]
+ },
+ "tasks": [
+ {
+ "uuid": "c79b6c18-53d2-436b-94f9-fa032a7de44a",
+ "name": "Задача1",
+ "mdoReference": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "objectBelonging": "ADOPTED",
+ "comment": "",
+ "synonym": {
+ "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym"
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "addressingAttributes": []
+ }
+ ],
+ "usePurposes": [
+ "PLATFORM_APPLICATION"
+ ],
+ "uuid": "6e50eb82-8de4-4aff-ba5b-6b441963a56a",
+ "vendor": "",
+ "version": "",
+ "webServices": [
+ [
+ 2
+ ],
+ []
+ ],
+ "wsReferences": [
+ [
+ 2
+ ],
+ []
+ ]
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json"
new file mode 100644
index 000000000..efb950e20
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265.json"
@@ -0,0 +1,3732 @@
+{"com.github._1c_syntax.bsl.mdo.BusinessProcess": {
+ "attributes": [
+ [
+ {
+ "uuid": "a76b1fd1-ba00-40e6-8756-f17fee449818",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Автор",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.Задание",
+ "mdoRefRu": "БизнесПроцесс.Задание"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5c913626-48d1-4e0a-a423-64078ce59c7b",
+ "name": "Важность",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Важность",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Важность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Важность задач точки действия Выполнить для исполнителя",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "0a4e6b7a-b380-4547-bc3c-5d6895a5d19a",
+ "name": "Выполнено",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Выполнено",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Выполнено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Результат выполнения задания после завершения бизнес-процесса.",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "7b0ec304-1904-413e-a9c6-ff62e87107dd",
+ "name": "ГлавнаяЗадача",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ГлавнаяЗадача",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ГлавнаяЗадача"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Главная задача"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "d4dd8c96-914d-496f-b735-ef85ec473605",
+ "name": "ДатаЗавершения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ДатаЗавершения",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ДатаЗавершения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Фактическая дата завершения бизнес-процесса",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата завершения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "62517db4-59e6-4945-bcd6-b3f1845572bf",
+ "name": "Исполнитель",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Исполнитель",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Исполнитель"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a6a9dd40-24cd-4d40-a12d-44f94f8c05a7",
+ "name": "Наименование",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Наименование",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Наименование"
+ },
+ "objectBelonging": "OWN",
+ "comment": "АПК:58 - Описание задания",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f0f72149-0e7f-441a-b70d-8f47d4977927",
+ "name": "НаПроверке",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.НаПроверке",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.НаПроверке"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Признак того, что указан проверяющий по задаче",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "На проверке"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "776efc3e-ac27-4550-bafd-6e91aa987af2",
+ "name": "НомерИтерации",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.НомерИтерации",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.НомерИтерации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Количество циклов бизнес-процесса между исполнителем и проверяющим",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Номер итерации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "9f478c85-b72c-40ae-aa08-7ddf73b5b15c",
+ "name": "Подтверждено",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Подтверждено",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Подтверждено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Внутреннее состояние бизнес-процесса",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подтверждено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "cc438366-85ea-48be-8b74-d05cddb1fc51",
+ "name": "Предмет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Предмет",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Предмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Объект системы, \"по поводу\" которого был создан бизнес-процесс.",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "4688fd3b-4a92-4ed8-b111-0cf22a729b1c",
+ "name": "Проверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Проверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Проверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "92029d1f-0472-4aaa-8fd6-9fb3c3cf414e",
+ "name": "РезультатВыполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.РезультатВыполнения",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.РезультатВыполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "История переписки исполнителя и проверяющего",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "3271b800-1825-422f-97bb-757baf403e90",
+ "name": "Содержание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Содержание",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Содержание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6fd6efc1-facc-4ece-a5b3-3dce6acca81d",
+ "name": "Состояние",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Состояние",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Состояние"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "4ee82868-7a20-4c3a-91f9-42a6bf53ac37",
+ "name": "СрокИсполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.СрокИсполнения",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.СрокИсполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a040c756-4687-4bfd-a690-b122d3c490e5",
+ "name": "СрокПроверки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.СрокПроверки",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.СрокПроверки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Срок проверки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "bd5940d5-13fd-4f59-bb6c-614f93f9c8e4",
+ "name": "АвторСтрокой",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.АвторСтрокой",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.АвторСтрокой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор строкой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "961a9801-3956-4ea0-b0d3-908f09bf4929",
+ "name": "ВнешнееЗадание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ВнешнееЗадание",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ВнешнееЗадание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Внешнее задание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6fac5c14-e126-4342-9078-edf1d0efcbf2",
+ "name": "ЗадачаИсточник",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ЗадачаИсточник",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ЗадачаИсточник"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задача источник"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "0a3325a1-21c4-4997-882f-4ac2edc175f0",
+ "name": "СодержаниеПредмета",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.СодержаниеПредмета",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.СодержаниеПредмета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание предмета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "71102d3f-f020-4d6f-9582-9a7eefb4e797",
+ "name": "ОсновнойОбъектАдресации",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ОсновнойОбъектАдресации",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ОсновнойОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "53ef6849-a3f3-4171-9167-f349f2d6a736",
+ "name": "ОсновнойОбъектАдресацииПроверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ОсновнойОбъектАдресацииПроверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ОсновнойОбъектАдресацииПроверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации (проверяющий)"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "3f588bd3-d461-42b7-8ab1-386af6399d56",
+ "name": "ДополнительныйОбъектАдресации",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ДополнительныйОбъектАдресации",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ДополнительныйОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c04ff85e-b4af-4a9f-b0e9-c5c65e3d10a1",
+ "name": "ДополнительныйОбъектАдресацииПроверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ДополнительныйОбъектАдресацииПроверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ДополнительныйОбъектАдресацииПроверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации (проверяющий)"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "8c576405-29c1-46b1-ab2e-40e52c21cab0",
+ "name": "ГруппаИсполнителейЗадач",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ГруппаИсполнителейЗадач",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ГруппаИсполнителейЗадач"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа исполнителей задач"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "b33a89da-8589-4902-83fa-6545e5fce23e",
+ "name": "ГруппаИсполнителейЗадачПроверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ГруппаИсполнителейЗадачПроверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ГруппаИсполнителейЗадачПроверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа исполнителей задач (проверяющий)"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "f0620d5a-e1fe-419f-af37-e0f462f97e8d",
+ "name": "ДействиеВыполнить",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ДействиеВыполнить",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ДействиеВыполнить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Действие выполнить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ДействиеВыполнить/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ДействиеВыполнить/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeWriteAtServer",
+ "name": "ПередЗаписьюНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 207,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 154,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 165,
+ "name": "ГруппыШапки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группы шапки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 160,
+ "name": "ГруппаАвторИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 161,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 163,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 109,
+ "name": "ГруппаДатаИСрок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата и срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 152,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 28,
+ "name": "ГруппаНомерИВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер и важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 149,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 155,
+ "name": "ГруппаПриоритет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приоритет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 119,
+ "name": "СрокНачалаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 135,
+ "name": "СрокНачалаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 201,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 203,
+ "name": "Главное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 156,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 129,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Содержание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗаданиеСодержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 205,
+ "name": "ИсторияВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 126,
+ "name": "РезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗаданиеРезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 131,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения задания:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 78,
+ "name": "ОписаниеРезультата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "ГруппаВыполненоДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполнено дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 123,
+ "name": "Выполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 137,
+ "name": "Отклонено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 55,
+ "name": "ДатаИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 146,
+ "name": "ДатаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Hyperlink",
+ "id": 199,
+ "name": "ИзменитьЗадание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакВыполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТекущийПользователь",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЗаданиеВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ЗаданиеСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ЗаданиеРезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "3e2f2ae1-c809-43fc-8276-b0a16a92858c",
+ "name": "ДействиеПроверить",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ДействиеПроверить",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ДействиеПроверить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Действие проверить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ДействиеПроверить/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ДействиеПроверить/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeWriteAtServer",
+ "name": "ПередЗаписьюНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 234,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 134,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 165,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 166,
+ "name": "ГруппыШапки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группы шапки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 167,
+ "name": "ГруппаАвторИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 168,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 170,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 172,
+ "name": "ГруппаДатаИСрок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата и срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 173,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 175,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 177,
+ "name": "ГруппаНомерИВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер и важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 178,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 180,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 182,
+ "name": "ГруппаПриоритет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приоритет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 183,
+ "name": "СрокНачалаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 185,
+ "name": "СрокНачалаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 222,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 224,
+ "name": "Главное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 159,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 132,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗаданиеСодержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 226,
+ "name": "ИсторияВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 126,
+ "name": "РезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗаданиеРезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат проверки задания:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 78,
+ "name": "ОписаниеРезультата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "ГруппаВыполненаДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполнена дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 123,
+ "name": "Выполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 147,
+ "name": "Отменено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 124,
+ "name": "Возвращено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 55,
+ "name": "ДатаИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата проверки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 161,
+ "name": "ДатаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Hyperlink",
+ "id": 130,
+ "name": "ИзменитьЗадание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакВыполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТекущийПользователь",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ЗаданиеСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЗаданиеВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ЗаданиеРезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ЗаданиеПодтверждено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ЗаданиеСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "b58942ca-1367-4e1d-b5b4-7d973d0fecd8",
+ "name": "ФормаБизнесПроцесса",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ФормаБизнесПроцесса",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ФормаБизнесПроцесса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма бизнес-процесса"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ФормаБизнесПроцесса/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ФормаБизнесПроцесса/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWrite",
+ "name": "ПослеЗаписи"
+ },
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeWriteAtServer",
+ "name": "ПередЗаписьюНаСервере"
+ },
+ {
+ "event": "OnWriteAtServer",
+ "name": "ПриЗаписиНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 151,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 99,
+ "name": "ГлавнаяЗадача",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ГлавнаяЗадачаСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 92,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 93,
+ "name": "ДекорацияЗначок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 155,
+ "name": "ИнфоНадписьЗаголовок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ИнфоНадписьЗаголовок",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 145,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаСрокВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 19,
+ "name": "ЗаголовокЗадания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 57,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 103,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 67,
+ "name": "ГруппаИсполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 69,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 147,
+ "name": "ГруппаСрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 21,
+ "name": "СрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 88,
+ "name": "СрокИсполненияВремя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 75,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 86,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Содержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 56,
+ "name": "ГруппаПроверка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 54,
+ "name": "НаПроверке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверить выполнение:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.НаПроверке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 28,
+ "name": "ГруппаПроверяющий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "Проверяющий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Проверяющий",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 149,
+ "name": "ГруппаСрокПроверки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок проверки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 23,
+ "name": "СрокПроверки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокПроверки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 90,
+ "name": "СрокПроверкиВремя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокПроверки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 81,
+ "name": "ГруппаОбщиеСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 79,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 97,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Начато"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакСтарта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ГлавнаяЗадачаСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главная задача"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИнфоНадписьЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Инфо надпись заголовок"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "Отложен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ДатаОтложенногоСтарта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ИспользоватьДатуИВремяВСрокахЗадач",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ИспользоватьПодчиненныеБизнесПроцессы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ИзменятьЗаданияЗаднимЧислом",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "1a7c7427-bead-4655-9dd6-df6e722663c5",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ФормаСписка",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 21,
+ "name": "ГруппаПоРеквизитам",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отборы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "ПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоАвтору",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ПоИсполнителю",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоИсполнителю",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 19,
+ "name": "ПоПроверяющему",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоПроверяющему",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 50,
+ "name": "Флажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 22,
+ "name": "ПоказыватьЗавершенныеЗадания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьЗавершенныеЗадания",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 48,
+ "name": "ПоказыватьОстановленные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьОстановленные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 92,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 53,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 94,
+ "name": "ФормаОбщаяКомандаКартаМаршрутаБизнесПроцесса",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 51,
+ "name": "ФормаОстановить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 52,
+ "name": "ФормаПродолжитьБизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 24,
+ "name": "ВажностьКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 6,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 54,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 26,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 32,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Предмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 28,
+ "name": "Содержание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Содержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 42,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 44,
+ "name": "СрокПроверки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокПроверки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 38,
+ "name": "ДатаЗавершения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Завершено"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ДатаЗавершения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 10,
+ "name": "ВедущаяЗадача",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.HeadTask",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 30,
+ "name": "НомерИтерации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.НомерИтерации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 36,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 57,
+ "name": "ГруппаПроверка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "На проверке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 55,
+ "name": "НаПроверке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.НаПроверке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 40,
+ "name": "Проверяющий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Проверяющий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 89,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоАвтору",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПоИсполнителю",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоПроверяющему",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ПоказыватьЗавершенныеЗадания",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать завершенные задания"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ПоказыватьОстановленные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать остановленные"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Задание",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задание"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "dad11c2e-08fc-4a6b-8829-8be6c64c15fc"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json" "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json"
new file mode 100644
index 000000000..f17a039e5
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/BusinessProcesses.\320\227\320\260\320\264\320\260\320\275\320\270\320\265_edt.json"
@@ -0,0 +1,3688 @@
+{"com.github._1c_syntax.bsl.mdo.BusinessProcess": {
+ "attributes": [
+ [
+ {
+ "uuid": "a76b1fd1-ba00-40e6-8756-f17fee449818",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Автор",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.Задание",
+ "mdoRefRu": "БизнесПроцесс.Задание"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5c913626-48d1-4e0a-a423-64078ce59c7b",
+ "name": "Важность",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Важность",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Важность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Важность задач точки действия Выполнить для исполнителя",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "0a4e6b7a-b380-4547-bc3c-5d6895a5d19a",
+ "name": "Выполнено",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Выполнено",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Выполнено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Результат выполнения задания после завершения бизнес-процесса.",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "7b0ec304-1904-413e-a9c6-ff62e87107dd",
+ "name": "ГлавнаяЗадача",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ГлавнаяЗадача",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ГлавнаяЗадача"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Главная задача"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "d4dd8c96-914d-496f-b735-ef85ec473605",
+ "name": "ДатаЗавершения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ДатаЗавершения",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ДатаЗавершения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Фактическая дата завершения бизнес-процесса",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата завершения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "62517db4-59e6-4945-bcd6-b3f1845572bf",
+ "name": "Исполнитель",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Исполнитель",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Исполнитель"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a6a9dd40-24cd-4d40-a12d-44f94f8c05a7",
+ "name": "Наименование",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Наименование",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Наименование"
+ },
+ "objectBelonging": "OWN",
+ "comment": "АПК:58 - Описание задания",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f0f72149-0e7f-441a-b70d-8f47d4977927",
+ "name": "НаПроверке",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.НаПроверке",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.НаПроверке"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Признак того, что указан проверяющий по задаче",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "На проверке"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "776efc3e-ac27-4550-bafd-6e91aa987af2",
+ "name": "НомерИтерации",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.НомерИтерации",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.НомерИтерации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Количество циклов бизнес-процесса между исполнителем и проверяющим",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Номер итерации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "9f478c85-b72c-40ae-aa08-7ddf73b5b15c",
+ "name": "Подтверждено",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Подтверждено",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Подтверждено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Внутреннее состояние бизнес-процесса",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подтверждено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "cc438366-85ea-48be-8b74-d05cddb1fc51",
+ "name": "Предмет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Предмет",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Предмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Объект системы, \"по поводу\" которого был создан бизнес-процесс.",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "4688fd3b-4a92-4ed8-b111-0cf22a729b1c",
+ "name": "Проверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Проверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Проверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "92029d1f-0472-4aaa-8fd6-9fb3c3cf414e",
+ "name": "РезультатВыполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.РезультатВыполнения",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.РезультатВыполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "История переписки исполнителя и проверяющего",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "3271b800-1825-422f-97bb-757baf403e90",
+ "name": "Содержание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Содержание",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Содержание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6fd6efc1-facc-4ece-a5b3-3dce6acca81d",
+ "name": "Состояние",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.Состояние",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.Состояние"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "4ee82868-7a20-4c3a-91f9-42a6bf53ac37",
+ "name": "СрокИсполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.СрокИсполнения",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.СрокИсполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a040c756-4687-4bfd-a690-b122d3c490e5",
+ "name": "СрокПроверки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.СрокПроверки",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.СрокПроверки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Срок проверки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "bd5940d5-13fd-4f59-bb6c-614f93f9c8e4",
+ "name": "АвторСтрокой",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.АвторСтрокой",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.АвторСтрокой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор строкой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "961a9801-3956-4ea0-b0d3-908f09bf4929",
+ "name": "ВнешнееЗадание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ВнешнееЗадание",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ВнешнееЗадание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Внешнее задание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6fac5c14-e126-4342-9078-edf1d0efcbf2",
+ "name": "ЗадачаИсточник",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ЗадачаИсточник",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ЗадачаИсточник"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задача источник"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "0a3325a1-21c4-4997-882f-4ac2edc175f0",
+ "name": "СодержаниеПредмета",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.СодержаниеПредмета",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.СодержаниеПредмета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание предмета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "71102d3f-f020-4d6f-9582-9a7eefb4e797",
+ "name": "ОсновнойОбъектАдресации",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ОсновнойОбъектАдресации",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ОсновнойОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "53ef6849-a3f3-4171-9167-f349f2d6a736",
+ "name": "ОсновнойОбъектАдресацииПроверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ОсновнойОбъектАдресацииПроверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ОсновнойОбъектАдресацииПроверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации (проверяющий)"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "3f588bd3-d461-42b7-8ab1-386af6399d56",
+ "name": "ДополнительныйОбъектАдресации",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ДополнительныйОбъектАдресации",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ДополнительныйОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c04ff85e-b4af-4a9f-b0e9-c5c65e3d10a1",
+ "name": "ДополнительныйОбъектАдресацииПроверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ДополнительныйОбъектАдресацииПроверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ДополнительныйОбъектАдресацииПроверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации (проверяющий)"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "8c576405-29c1-46b1-ab2e-40e52c21cab0",
+ "name": "ГруппаИсполнителейЗадач",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ГруппаИсполнителейЗадач",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ГруппаИсполнителейЗадач"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа исполнителей задач"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "b33a89da-8589-4902-83fa-6545e5fce23e",
+ "name": "ГруппаИсполнителейЗадачПроверяющий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "BusinessProcess.Задание.Attribute.ГруппаИсполнителейЗадачПроверяющий",
+ "mdoRefRu": "БизнесПроцесс.Задание.Реквизит.ГруппаИсполнителейЗадачПроверяющий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа исполнителей задач (проверяющий)"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "f0620d5a-e1fe-419f-af37-e0f462f97e8d",
+ "name": "ДействиеВыполнить",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ДействиеВыполнить",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ДействиеВыполнить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Действие выполнить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ДействиеВыполнить/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ДействиеВыполнить/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 207,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 154,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 165,
+ "name": "ГруппыШапки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группы шапки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 160,
+ "name": "ГруппаАвторИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 161,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 163,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 109,
+ "name": "ГруппаДатаИСрок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата и срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 152,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 28,
+ "name": "ГруппаНомерИВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер и важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 149,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 155,
+ "name": "ГруппаПриоритет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приоритет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 119,
+ "name": "СрокНачалаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 135,
+ "name": "СрокНачалаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 201,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 203,
+ "name": "Главное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 156,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 129,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Содержание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗаданиеСодержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 205,
+ "name": "ИсторияВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 126,
+ "name": "РезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗаданиеРезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 131,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения задания:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 78,
+ "name": "ОписаниеРезультата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "ГруппаВыполненоДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполнено дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 123,
+ "name": "Выполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 137,
+ "name": "Отклонено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 55,
+ "name": "ДатаИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 146,
+ "name": "ДатаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Hyperlink",
+ "id": 199,
+ "name": "ИзменитьЗадание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакВыполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТекущийПользователь",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЗаданиеВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ЗаданиеСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ЗаданиеРезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "3e2f2ae1-c809-43fc-8276-b0a16a92858c",
+ "name": "ДействиеПроверить",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ДействиеПроверить",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ДействиеПроверить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Действие проверить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ДействиеПроверить/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ДействиеПроверить/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 234,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 134,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 165,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 166,
+ "name": "ГруппыШапки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группы шапки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 167,
+ "name": "ГруппаАвторИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 168,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 170,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 172,
+ "name": "ГруппаДатаИСрок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата и срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 173,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 175,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 177,
+ "name": "ГруппаНомерИВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер и важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 178,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 180,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 182,
+ "name": "ГруппаПриоритет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приоритет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 183,
+ "name": "СрокНачалаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 185,
+ "name": "СрокНачалаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 222,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 224,
+ "name": "Главное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 159,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 132,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗаданиеСодержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 226,
+ "name": "ИсторияВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 126,
+ "name": "РезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗаданиеРезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат проверки задания:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 78,
+ "name": "ОписаниеРезультата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РезультатВыполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "ГруппаВыполненаДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполнена дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 123,
+ "name": "Выполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 147,
+ "name": "Отменено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 124,
+ "name": "Возвращено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 55,
+ "name": "ДатаИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата проверки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 161,
+ "name": "ДатаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Hyperlink",
+ "id": 130,
+ "name": "ИзменитьЗадание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакВыполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТекущийПользователь",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ЗаданиеСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЗаданиеВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ЗаданиеРезультатВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "История сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ЗаданиеПодтверждено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ЗаданиеСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "b58942ca-1367-4e1d-b5b4-7d973d0fecd8",
+ "name": "ФормаБизнесПроцесса",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ФормаБизнесПроцесса",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ФормаБизнесПроцесса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма бизнес-процесса"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ФормаБизнесПроцесса/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ФормаБизнесПроцесса/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 151,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 99,
+ "name": "ГлавнаяЗадача",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ГлавнаяЗадачаСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 92,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 93,
+ "name": "ДекорацияЗначок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 155,
+ "name": "ИнфоНадписьЗаголовок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ИнфоНадписьЗаголовок",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 145,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаСрокВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 19,
+ "name": "ЗаголовокЗадания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 57,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 103,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 67,
+ "name": "ГруппаИсполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 69,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 147,
+ "name": "ГруппаСрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 21,
+ "name": "СрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 88,
+ "name": "СрокИсполненияВремя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 75,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 86,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Содержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 56,
+ "name": "ГруппаПроверка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 54,
+ "name": "НаПроверке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверить выполнение:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.НаПроверке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 28,
+ "name": "ГруппаПроверяющий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "Проверяющий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Проверяющий",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 149,
+ "name": "ГруппаСрокПроверки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок проверки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 23,
+ "name": "СрокПроверки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокПроверки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 90,
+ "name": "СрокПроверкиВремя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СрокПроверки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 81,
+ "name": "ГруппаОбщиеСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 79,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 97,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Начато"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакСтарта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ГлавнаяЗадачаСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главная задача"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИнфоНадписьЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Инфо надпись заголовок"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "Отложен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ДатаОтложенногоСтарта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ИспользоватьДатуИВремяВСрокахЗадач",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ИспользоватьПодчиненныеБизнесПроцессы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ИзменятьЗаданияЗаднимЧислом",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "1a7c7427-bead-4655-9dd6-df6e722663c5",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "BusinessProcess.Задание.Form.ФормаСписка",
+ "mdoRefRu": "БизнесПроцесс.Задание.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/Forms/ФормаСписка/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 21,
+ "name": "ГруппаПоРеквизитам",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отборы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "ПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоАвтору",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ПоИсполнителю",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоИсполнителю",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 19,
+ "name": "ПоПроверяющему",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоПроверяющему",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 50,
+ "name": "Флажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 22,
+ "name": "ПоказыватьЗавершенныеЗадания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьЗавершенныеЗадания",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 48,
+ "name": "ПоказыватьОстановленные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьОстановленные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 92,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 53,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 94,
+ "name": "ФормаОбщаяКомандаКартаМаршрутаБизнесПроцесса",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 51,
+ "name": "ФормаОстановить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 52,
+ "name": "ФормаПродолжитьБизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 24,
+ "name": "ВажностьКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 6,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 54,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 26,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 32,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Предмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 28,
+ "name": "Содержание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Содержание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 42,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 44,
+ "name": "СрокПроверки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокПроверки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 38,
+ "name": "ДатаЗавершения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Завершено"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ДатаЗавершения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 10,
+ "name": "ВедущаяЗадача",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.HeadTask",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 30,
+ "name": "НомерИтерации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.НомерИтерации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 36,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 57,
+ "name": "ГруппаПроверка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "На проверке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 55,
+ "name": "НаПроверке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.НаПроверке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 40,
+ "name": "Проверяющий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Проверяющий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 89,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоАвтору",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПоИсполнителю",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоПроверяющему",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Проверяющий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ПоказыватьЗавершенныеЗадания",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать завершенные задания"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ПоказыватьОстановленные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать остановленные"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Задание",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задание"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "dad11c2e-08fc-4a6b-8829-8be6c64c15fc"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json" "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json"
new file mode 100644
index 000000000..e1bb1fbcf
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270.json"
@@ -0,0 +1,1569 @@
+{"com.github._1c_syntax.bsl.mdo.Catalog": {
+ "attributes": [
+ [
+ {
+ "uuid": "07ccfe87-e1ab-4da7-92cb-a612e0972b0b",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Автор",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Заметки",
+ "mdoRefRu": "Справочник.Заметки"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "08c2f92c-eb05-49e7-bfc9-4a89607b9864",
+ "name": "Предмет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Предмет",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Предмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "6d751379-89a7-49b5-93e5-578329c63d9c",
+ "name": "Содержание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Содержание",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Содержание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c3f156ef-947e-4ebb-883f-4f099a116063",
+ "name": "ТекстСодержания",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ТекстСодержания",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ТекстСодержания"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Реквизит для полнотекстового поиска",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5e3ab0a3-c0a6-4f41-85d3-2eede4abb555",
+ "name": "ДляРабочегоСтола",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ДляРабочегоСтола",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ДляРабочегоСтола"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Для рабочего стола"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a065ffc3-f50b-4a78-9b84-bfc4e5515a4b",
+ "name": "Пометка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Пометка",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Пометка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "4cba5a06-1484-4dd1-8e35-2d702c7d96d0",
+ "name": "ДатаИзменения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ДатаИзменения",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ДатаИзменения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата изменения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "e98e9e56-2995-430c-bd3b-f1070aec15a5",
+ "name": "ПредставлениеПредмета",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ПредставлениеПредмета",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ПредставлениеПредмета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [
+ {
+ "uuid": "fa0e0792-bffb-47ce-866f-9e8dbdab17a4",
+ "name": "ВсеЗаметки",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Заметки.Command.ВсеЗаметки",
+ "mdoRefRu": "Справочник.Заметки.Команда.ВсеЗаметки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Все заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Commands/ВсеЗаметки/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/commands/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "d35c51b0-4cb7-4f9c-8aac-6a25a1b49adf",
+ "name": "ФормаЭлемента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ФормаЭлемента",
+ "mdoRefRu": "Справочник.Заметки.Форма.ФормаЭлемента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма элемента"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ФормаЭлемента/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ФормаЭлемента/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWrite",
+ "name": "ПослеЗаписи"
+ },
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeWriteAtServer",
+ "name": "ПередЗаписьюНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 14,
+ "name": "СодержаниеЗаметки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание заметки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 102,
+ "name": "ГруппаПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 65,
+ "name": "НадписьПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 63,
+ "name": "Предмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "FormattedDocumentField",
+ "id": 9,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ФорматированныйТекст",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 90,
+ "name": "ПараметрыОтображения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Параметры отображения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 80,
+ "name": "ОтображатьНаРабочемСтоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отображать на рабочем столе"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДляРабочегоСтола",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 82,
+ "name": "Пометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цвет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Пометка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 105,
+ "name": "ГруппаЗаметок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Parent",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 91,
+ "name": "ИнформацияОбАвторе",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Информация об авторе"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 92,
+ "name": "НадписьАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 94,
+ "name": "Автор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 103,
+ "name": "ДатаЗаметки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана: 25 ноября 2011 г."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ФорматированныйТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Форматированный текст"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "8a7546f4-bfc9-4732-bf60-43a41e2c8753",
+ "name": "ВсеЗаметки",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ВсеЗаметки",
+ "mdoRefRu": "Справочник.Заметки.Форма.ВсеЗаметки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Все заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ВсеЗаметки/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ВсеЗаметки/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Все заметки"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 30,
+ "name": "Фильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 28,
+ "name": "ФильтрПоЦвету",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цвет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВыбранныйЦвет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 26,
+ "name": "ФильтрПоПредмету",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВыбранныйПредмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 31,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьУдаленные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 33,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 20,
+ "name": "Тема",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тема"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредставлениеПредмета",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 24,
+ "name": "ДатаИзменения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаИзменения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 54,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ВыбранныйПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбранный предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВыбранныйЦвет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбранный цвет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать удаленные"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "16244165-d5a4-4012-8bb5-7f5fee1111af",
+ "name": "ЗаметкиПоПредмету",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ЗаметкиПоПредмету",
+ "mdoRefRu": "Справочник.Заметки.Форма.ЗаметкиПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ЗаметкиПоПредмету/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ЗаметкиПоПредмету/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои заметки"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 41,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 45,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 25,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 30,
+ "name": "Фильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 23,
+ "name": "ПоказыватьЗаметкиДругихПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьЗаметкиДругихПользователей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьУдаленные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПоказыватьЗаметкиДругихПользователей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать заметки других пользователей"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать удаленные"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "290b72ad-004f-46ab-be5e-47557543b965",
+ "name": "МоиЗаметки",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.МоиЗаметки",
+ "mdoRefRu": "Справочник.Заметки.Форма.МоиЗаметки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Для рабочего стола",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/МоиЗаметки/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/МоиЗаметки/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои заметки"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 8,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 4,
+ "name": "ПредставлениеЗаметки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 9,
+ "name": "ПредставлениеПредмета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредставлениеПредмета",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 35,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "e1b2ccf9-5a8f-4008-86f3-d2c7cf5581d1",
+ "name": "ФормаГруппы",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ФормаГруппы",
+ "mdoRefRu": "Справочник.Заметки.Форма.ФормаГруппы"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма группы"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ФормаГруппы/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Forms/ФормаГруппы/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Код",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "Родитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Parent",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Catalogs/Заметки/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Заметки",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заметки"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "3805ee39-a48a-499a-9ef8-9c2a5985404f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json"
new file mode 100644
index 000000000..27e34021b
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Catalogs.\320\227\320\260\320\274\320\265\321\202\320\272\320\270_edt.json"
@@ -0,0 +1,1539 @@
+{"com.github._1c_syntax.bsl.mdo.Catalog": {
+ "attributes": [
+ [
+ {
+ "uuid": "07ccfe87-e1ab-4da7-92cb-a612e0972b0b",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Автор",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Заметки",
+ "mdoRefRu": "Справочник.Заметки"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "08c2f92c-eb05-49e7-bfc9-4a89607b9864",
+ "name": "Предмет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Предмет",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Предмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "6d751379-89a7-49b5-93e5-578329c63d9c",
+ "name": "Содержание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Содержание",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Содержание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c3f156ef-947e-4ebb-883f-4f099a116063",
+ "name": "ТекстСодержания",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ТекстСодержания",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ТекстСодержания"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Реквизит для полнотекстового поиска",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5e3ab0a3-c0a6-4f41-85d3-2eede4abb555",
+ "name": "ДляРабочегоСтола",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ДляРабочегоСтола",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ДляРабочегоСтола"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Для рабочего стола"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a065ffc3-f50b-4a78-9b84-bfc4e5515a4b",
+ "name": "Пометка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.Пометка",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.Пометка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "4cba5a06-1484-4dd1-8e35-2d702c7d96d0",
+ "name": "ДатаИзменения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ДатаИзменения",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ДатаИзменения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата изменения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "e98e9e56-2995-430c-bd3b-f1070aec15a5",
+ "name": "ПредставлениеПредмета",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Catalog.Заметки.Attribute.ПредставлениеПредмета",
+ "mdoRefRu": "Справочник.Заметки.Реквизит.ПредставлениеПредмета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [
+ {
+ "uuid": "fa0e0792-bffb-47ce-866f-9e8dbdab17a4",
+ "name": "ВсеЗаметки",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Заметки.Command.ВсеЗаметки",
+ "mdoRefRu": "Справочник.Заметки.Команда.ВсеЗаметки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Все заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Commands/ВсеЗаметки/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/commands/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "d35c51b0-4cb7-4f9c-8aac-6a25a1b49adf",
+ "name": "ФормаЭлемента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ФормаЭлемента",
+ "mdoRefRu": "Справочник.Заметки.Форма.ФормаЭлемента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма элемента"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ФормаЭлемента/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ФормаЭлемента/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 14,
+ "name": "СодержаниеЗаметки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание заметки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 102,
+ "name": "ГруппаПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 65,
+ "name": "НадписьПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 63,
+ "name": "Предмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "FormattedDocumentField",
+ "id": 9,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ФорматированныйТекст",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 90,
+ "name": "ПараметрыОтображения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Параметры отображения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 80,
+ "name": "ОтображатьНаРабочемСтоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отображать на рабочем столе"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДляРабочегоСтола",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 82,
+ "name": "Пометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цвет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Пометка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 105,
+ "name": "ГруппаЗаметок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Parent",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 91,
+ "name": "ИнформацияОбАвторе",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Информация об авторе"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 92,
+ "name": "НадписьАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 94,
+ "name": "Автор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Label",
+ "id": 103,
+ "name": "ДатаЗаметки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана: 25 ноября 2011 г."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ФорматированныйТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Форматированный текст"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "8a7546f4-bfc9-4732-bf60-43a41e2c8753",
+ "name": "ВсеЗаметки",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ВсеЗаметки",
+ "mdoRefRu": "Справочник.Заметки.Форма.ВсеЗаметки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Все заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ВсеЗаметки/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ВсеЗаметки/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Все заметки"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 30,
+ "name": "Фильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 28,
+ "name": "ФильтрПоЦвету",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цвет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВыбранныйЦвет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 26,
+ "name": "ФильтрПоПредмету",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВыбранныйПредмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 31,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьУдаленные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 33,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 20,
+ "name": "Тема",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тема"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 22,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредставлениеПредмета",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 24,
+ "name": "ДатаИзменения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаИзменения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 54,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ВыбранныйПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбранный предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВыбранныйЦвет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбранный цвет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать удаленные"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "16244165-d5a4-4012-8bb5-7f5fee1111af",
+ "name": "ЗаметкиПоПредмету",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ЗаметкиПоПредмету",
+ "mdoRefRu": "Справочник.Заметки.Форма.ЗаметкиПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ЗаметкиПоПредмету/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ЗаметкиПоПредмету/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои заметки"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 41,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 45,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 25,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 30,
+ "name": "Фильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 23,
+ "name": "ПоказыватьЗаметкиДругихПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьЗаметкиДругихПользователей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 28,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьУдаленные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПоказыватьЗаметкиДругихПользователей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать заметки других пользователей"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоказыватьУдаленные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать удаленные"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "290b72ad-004f-46ab-be5e-47557543b965",
+ "name": "МоиЗаметки",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.МоиЗаметки",
+ "mdoRefRu": "Справочник.Заметки.Форма.МоиЗаметки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Для рабочего стола",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои заметки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/МоиЗаметки/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/МоиЗаметки/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои заметки"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 8,
+ "name": "Содержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 4,
+ "name": "ПредставлениеЗаметки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 9,
+ "name": "ПредставлениеПредмета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредставлениеПредмета",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 35,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "e1b2ccf9-5a8f-4008-86f3-d2c7cf5581d1",
+ "name": "ФормаГруппы",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Catalog.Заметки.Form.ФормаГруппы",
+ "mdoRefRu": "Справочник.Заметки.Форма.ФормаГруппы"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма группы"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ФормаГруппы/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/Forms/ФормаГруппы/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Код",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "Родитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Parent",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Catalogs/Заметки/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Заметки",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заметки"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "3805ee39-a48a-499a-9ef8-9c2a5985404f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json"
new file mode 100644
index 000000000..f60cb42be
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217.json"
@@ -0,0 +1,4419 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes": {
+ "attributes": [
+ [
+ {
+ "uuid": "8064eb3a-d56c-4517-9db0-b7300149c7c4",
+ "name": "Виден",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Виден",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Виден"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Виден"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "fe926c88-d792-4db3-abcf-3c94dfdcc407",
+ "name": "ВладелецДополнительныхЗначений",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ВладелецДополнительныхЗначений",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ВладелецДополнительныхЗначений"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Владелец дополнительных значений"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "b1c3a6c1-5245-4a65-8a45-13948be6f6a1",
+ "name": "ВыводитьВВидеГиперссылки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ВыводитьВВидеГиперссылки",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ВыводитьВВидеГиперссылки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выводить в виде гиперссылки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "bcbdba9e-0b29-4ea7-a7d5-1de819bf86ec",
+ "name": "ДополнительныеЗначенияИспользуются",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ДополнительныеЗначенияИспользуются",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ДополнительныеЗначенияИспользуются"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные значения используются"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "e0c51555-1614-4aa7-a075-c5e1251579ba",
+ "name": "ДополнительныеЗначенияСВесом",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ДополнительныеЗначенияСВесом",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ДополнительныеЗначенияСВесом"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Значения дополнительно характеризуются весовым коэффициентом"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c75a1c6d-fa33-4b57-b359-6253aff5f3e7",
+ "name": "Доступен",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Доступен",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Доступен"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Доступен"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "af88ea84-5742-4c9f-9a02-6d0f25186f72",
+ "name": "Заголовок",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Заголовок",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Заголовок"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "51363236-c8eb-4eb7-9692-5c18edc9a5a8",
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЗаголовокФормыВыбораЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЗаголовокФормыВыбораЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы выбора значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "cb65fbad-69a0-47d8-b4a9-da49274c3eb7",
+ "name": "ЗаголовокФормыЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЗаголовокФормыЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЗаголовокФормыЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "872521e3-413c-45ac-a6ea-39fe1324bae8",
+ "name": "ЗаполнятьОбязательно",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЗаполнятьОбязательно",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЗаполнятьОбязательно"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заполнять обязательно"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "8adebe50-a946-40c2-9258-b17efe787e0e",
+ "name": "Имя",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Имя",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Имя"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Имя"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "8cad6cfd-91d0-4563-800a-d60c8a1b6a03",
+ "name": "Комментарий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Комментарий",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Комментарий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "81ef02df-498d-4af0-8254-dc6730cbf140",
+ "name": "МногострочноеПолеВвода",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.МногострочноеПолеВвода",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.МногострочноеПолеВвода"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Многострочное поле ввода"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2902460a-ed86-41cf-8e8f-895adab9a72f",
+ "name": "Подсказка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Подсказка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Подсказка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подсказка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "402f2fe0-4d08-4701-9c8f-0c2bb75815ef",
+ "name": "ФорматСвойства",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ФорматСвойства",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ФорматСвойства"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Формат свойства"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "1a4ed7cf-3294-4a5c-9650-75b61d6b2531",
+ "name": "ЭтоДополнительноеСведение",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЭтоДополнительноеСведение",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЭтоДополнительноеСведение"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Это дополнительное сведение"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "79ad09ba-875a-46bd-9cd9-9d084bf4f6ea",
+ "name": "НаборСвойств",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.НаборСвойств",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.НаборСвойств"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Набор свойств"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f237a21e-066a-48e6-a5c4-5dc2487c7a3b",
+ "name": "ИдентификаторДляФормул",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ИдентификаторДляФормул",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ИдентификаторДляФормул"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор для формул"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "f82d5bd6-4c74-4c23-978c-565aae3d752a",
+ "name": "ФормаЭлемента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ФормаЭлемента",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ФормаЭлемента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма элемента"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаЭлемента/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаЭлемента/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWrite",
+ "name": "ПослеЗаписи"
+ },
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "BeforeWrite",
+ "name": "ПередЗаписью"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeWriteAtServer",
+ "name": "ПередЗаписьюНаСервере"
+ },
+ {
+ "event": "OnWriteAtServer",
+ "name": "ПриЗаписиНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Pages",
+ "id": 200,
+ "name": "СтраницыПомощникКарточка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы помощник карточка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 202,
+ "name": "ВыборРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 336,
+ "name": "ГруппаЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 338,
+ "name": "ДекорацияЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выберите %1 для включения в набор \"%2\":"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 408,
+ "name": "ПанельЕще",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Панель еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Popup",
+ "id": 410,
+ "name": "ПодменюЕще",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBarButton",
+ "id": 412,
+ "name": "НеиспользуемыеРеквизиты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 341,
+ "name": "ГруппаСодержимое",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержимое"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 343,
+ "name": "ГруппаНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 414,
+ "name": "СтраницыНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 416,
+ "name": "СтраницаВсеНаборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница все наборы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 345,
+ "name": "НаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "НаборыСвойств",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 396,
+ "name": "Представление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление набора"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "НаборыСвойств.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 399,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "НаборыСвойств.Ссылка",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 418,
+ "name": "СтраницаОбщиеНаборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница общие наборы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 420,
+ "name": "ОбщиеНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общие наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОбщиеНаборыСвойств",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "LabelField",
+ "id": 436,
+ "name": "ОбщиеНаборыСвойствПредставление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОбщиеНаборыСвойств.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 364,
+ "name": "РасшифровкаРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные реквизиты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 366,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Свойства",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 379,
+ "name": "СвойстваЗаголовок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Свойства.Заголовок",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 469,
+ "name": "ГруппаДополнительнаяИнформация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительная информация"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 384,
+ "name": "СписокДополнительныхРеквизитовТипЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.ТипЗначения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 387,
+ "name": "СписокДополнительныхРеквизитовПодсказка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всплывающая подсказка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.Подсказка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 390,
+ "name": "СписокДополнительныхРеквизитовЗаголовокФормыЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.ЗаголовокФормыЗначения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 393,
+ "name": "СписокДополнительныхРеквизитовЗаголовокФормыВыбораЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.ЗаголовокФормыВыбораЗначения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 204,
+ "name": "ВыборДействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор действия"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "RadioButtonField",
+ "id": 237,
+ "name": "РежимДобавленияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выберите вариант добавления дополнительного %1 \"%2\" в набор \"%3\""
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "РежимДобавленияРеквизита",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 206,
+ "name": "КарточкаРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Карточка реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 79,
+ "name": "ГруппаНаименованиеРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Заголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Заголовок",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 20,
+ "name": "ЭтоДополнительноеСведение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЭтоДополнительноеСведение",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ТипЗначенияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 471,
+ "name": "ГруппаТипЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "ТипЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ValueType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Hyperlink",
+ "id": 37,
+ "name": "РедактироватьФорматЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 476,
+ "name": "ГруппаПояснениеТипаЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснение типа значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 478,
+ "name": "КартинкаПояснение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 473,
+ "name": "ПояснениеОДлинеСтроки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Максимальная длина строки составляет 1024 символа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 38,
+ "name": "ГруппаМногострочность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Многострочность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 448,
+ "name": "ГруппаОднострочноеПолеВводаНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Однострочное поле ввода настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 442,
+ "name": "ОднострочныйВид",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеРеквизита",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 445,
+ "name": "ВыводитьВВидеГиперссылки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ВыводитьВВидеГиперссылки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 46,
+ "name": "ГруппаМногострочноеПолеВводаНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Многострочное поле ввода настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 450,
+ "name": "МногострочныйВид",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеРеквизита",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "МногострочноеПолеВводаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ " строк"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "МногострочноеПолеВводаЧисло",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 167,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 169,
+ "name": "ГлавнаяСтраница",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 324,
+ "name": "ГруппаСвойстваИЗависимости",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства и зависимости"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 463,
+ "name": "ГруппаВиден",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виден"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 402,
+ "name": "Виден",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виден:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 333,
+ "name": "ЗадатьУсловиеВидимости",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "всегда"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 465,
+ "name": "ГруппаДоступен",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступен"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 405,
+ "name": "Доступен",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступен:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 194,
+ "name": "ЗадатьУсловиеДоступности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "всегда"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 467,
+ "name": "ГруппаЗаполнятьОбязательно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заполнять обязательно"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 184,
+ "name": "ЗаполнятьОбязательно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заполнять обязательно:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ЗаполнятьОбязательно",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 197,
+ "name": "ЗадатьУсловиеЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "всегда"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 107,
+ "name": "ОстальныеРеквизиты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Остальные реквизиты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 481,
+ "name": "ГруппаИдентификаторДляФормул",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор для формул"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 483,
+ "name": "ИдентификаторДляФормул",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ИдентификаторДляФормул",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 486,
+ "name": "ЗаполнитьИдентификаторДляФормул",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 30,
+ "name": "Подсказка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всплывающая подсказка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Подсказка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 32,
+ "name": "ГруппаЗаголовкиФормЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовки форм значений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 33,
+ "name": "ЗаголовокФормыЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ЗаголовокФормыЗначения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 35,
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ЗаголовокФормыВыбораЗначения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 28,
+ "name": "Комментарий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Комментарий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 96,
+ "name": "УточнениеНаборов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уточнение наборов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 99,
+ "name": "УточнениеНаборовКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общий реквизит входит в набор \"Расходный кассовый ордер\" "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 106,
+ "name": "УточнениеНаборовИзменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 182,
+ "name": "СтраницаЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Pages",
+ "id": 287,
+ "name": "СтраницыЗначенияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы значения реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 56,
+ "name": "ДополнительныеЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные значения:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 57,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 60,
+ "name": "ЗначенияНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 83,
+ "name": "ЗначенияВес",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Значения.Вес",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 460,
+ "name": "ЗначенияСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Значения.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 289,
+ "name": "СтраницаДеревоЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница дерево значений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 291,
+ "name": "ЗначенияДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения дополнительного реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗначенияДополнительныхРеквизитов",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 304,
+ "name": "ЗначенияДополнительногоРеквизитаНаименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗначенияДополнительныхРеквизитов.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 307,
+ "name": "ЗначенияДополнительногоРеквизитаВес",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Весовой коэффициент"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗначенияДополнительныхРеквизитов.Вес",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 69,
+ "name": "ДополнительныеЗначенияСВесом",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДополнительныеЗначенияСВесом",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 89,
+ "name": "УточнениеСпискаЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уточнение списка значений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 87,
+ "name": "УточнениеСпискаЗначенийКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список значений общий с реквизитом \"Цвет\" набора \"Номенклатура (сумки)\" "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 105,
+ "name": "УточнениеСпискаЗначенийИзменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 455,
+ "name": "ГруппаДляРазработчиков",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Для разработчиков"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 457,
+ "name": "Имя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Имя",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 227,
+ "name": "КоманднаяПанельПомощника",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель помощника"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 229,
+ "name": "КоманднаяПанельЛево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель лево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBarButton",
+ "id": 233,
+ "name": "КомандаНазад",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 231,
+ "name": "КоманднаяПанельПраво",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель право"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 235,
+ "name": "КомандаДалее",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 242,
+ "name": "Закрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ЭтоДополнительноеСведение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Это дополнительное сведение"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "СписокНаборов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "МногострочноеПолеВвода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "МногострочноеПолеВводаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Многострочное поле ввода число"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ПоказатьУточнениеНабора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ТекущийНаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ПереданныеПараметрыФормы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 14,
+ "name": "РежимДобавленияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Режим добавления реквизита"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 15,
+ "name": "РежимПомощника",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ЗначенияДополнительныхРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения дополнительных реквизитов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 17,
+ "name": "ПустаяСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 18,
+ "name": "УсловияЗависимостиРеквизитов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 19,
+ "name": "ИзмененыУсловияЗависимостиРеквизитов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 20,
+ "name": "ВыбранныйНаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 21,
+ "name": "НаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наборы свойств"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 22,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 23,
+ "name": "ОбщиеНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общие наборы свойств"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 24,
+ "name": "ПредставлениеРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление реквизита"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТекущийЗаголовок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "7fba41a5-4faa-412b-b367-b30ced0314c0",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ФормаСписка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 16,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 14,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Наименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "ТипЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ValueType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 11,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "37333d0b-3589-4b8b-bf6c-e605e0287b66",
+ "name": "РазблокированиеРеквизитов",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.РазблокированиеРеквизитов",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.РазблокированиеРеквизитов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Разблокирование реквизитов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/РазблокированиеРеквизитов/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/РазблокированиеРеквизитов/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "Pages",
+ "id": 1,
+ "name": "ДиалогиПользователя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Диалоги пользователя"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 2,
+ "name": "ОбъектНеИспользуется",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объект не используется"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 12,
+ "name": "Пояснения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 22,
+ "name": "ПояснениеДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснение дополнительного реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 23,
+ "name": "ТекстПоясненияДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный реквизит не используется в документах программы.\n\nТип значения и имя дополнительного реквизита можно изменять."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 25,
+ "name": "ПояснениеДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснение дополнительного сведения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 26,
+ "name": "ТекстПоясненияДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительное сведение не используется в информационной базе.\n\nТип значения и имя дополнительного сведения можно изменять."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 3,
+ "name": "ОбъектИспользуется",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объект используется"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 17,
+ "name": "Предупреждения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 18,
+ "name": "ПредупреждениеДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение дополнительного реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 6,
+ "name": "ТекстПредупрежденияДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Внимание! Дополнительный реквизит уже используется в информационной базе.\n\nИзменение типа значения дополнительного реквизита может привести к потере ранее установленных значений его текущего типа."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 19,
+ "name": "ПредупреждениеДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение дополнительного сведения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 20,
+ "name": "ТекстПредупрежденияДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Внимание! Дополнительное сведение уже используется в информационной базе.\n\nИзменение типа значения дополнительного сведения может привести к потере ранее установленных значений его текущего типа."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": []
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "1813c469-da20-46a6-8947-6815b66f64c1",
+ "name": "ИзменениеНастройкиСвойства",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ИзменениеНастройкиСвойства",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ИзменениеНастройкиСвойства"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Изменение настройки свойства"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ИзменениеНастройкиСвойства/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ИзменениеНастройкиСвойства/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить настройку дополнительного реквизита"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "Pages",
+ "id": 40,
+ "name": "ТипыСвойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Типы свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 17,
+ "name": "ДополнительныйРеквизит",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный реквизит"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 52,
+ "name": "РеквизитПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизит предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 48,
+ "name": "РеквизитПредупреждениеКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизит предупреждение картинка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 50,
+ "name": "РеквизитПредупреждениеКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перенастройка дополнительного реквизита необратима и может занять длительное время, в зависимости от числа документов, в которых заполнен этот реквизит. \nВместо этого можно добавить новый реквизит со своим списком значений, и выполнить вручную постепенный переход от использования этого реквизита к новому (очистить значения этого реквизита и заполнить значения нового)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 8,
+ "name": "ОтдельныеЗначенияРеквизита",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 14,
+ "name": "ОтдельныеЗначенияРеквизитаКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данный реквизит входит только в один набор %1, и у него свой собственный список значений."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 30,
+ "name": "ВидыРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виды реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 32,
+ "name": "ВидОбщиеЗначенияРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общие значения реквизитов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 6,
+ "name": "ОбщиеЗначенияРеквизитов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 12,
+ "name": "ОбщиеЗначенияРеквизитовКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "У данного реквизита общий список значений с другими реквизитами, добавленными по образцу. С помощью этого варианта удобно выполнять централизованную настройку списка значений сразу для нескольких однотипных реквизитов (например, \"Цвет одежды\", \"Цвет обуви\" и пр.)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 31,
+ "name": "ВидОбщийРеквизит",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общий реквизит"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 4,
+ "name": "ОбщийРеквизит",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОбщееСвойство",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 10,
+ "name": "ОбщийРеквизитКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данный реквизит входит сразу в несколько наборов. Этот вариант подходит для тех случаев, когда общим\nдолжен быть не только список значений, но и сам реквизит. В списках и отчетах по элементам различных\nсправочников и документов, общие реквизиты группируются и выводятся как один реквизит, в одной колонке или поле.\nНапример, с помощью общего реквизита \"Цвет\" можно быстро отобрать всю желтую одежду и обувь."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 16,
+ "name": "ДополнительноеСведение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительное сведение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "СведениеПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сведение предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 56,
+ "name": "СведениеПредупреждениеКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сведение предупреждение картинка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 58,
+ "name": "СведениеПредупреждениеКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перенастройка дополнительного сведения необратима и может занять длительное время, в зависимости от числа документов, в которых заполнено это сведение.\nВместо этого можно добавить новое сведение со своим списком значений, и выполнить вручную постепенный переход от использования этого сведения к новому (очистить значения этого сведения и заполнить значения нового)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 26,
+ "name": "ОтдельныеЗначенияСведения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 28,
+ "name": "ОтдельныеЗначенияСведенияКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данное сведение входит только в один набор %1, и у него свой собственный список значений."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 33,
+ "name": "ВидыСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виды сведения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 39,
+ "name": "ВидОбщиеЗначенияСведений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общие значения сведений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 22,
+ "name": "ОбщиеЗначенияСведений",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 24,
+ "name": "ОбщиеЗначенияСведенийКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "У этого сведения общий список значений с другими сведениями, добавленными по образцу. С помощью этого варианта удобно выполнять централизованную настройку списка значений сразу для нескольких однотипных сведений (например, \"Цвет одежды\", \"Цвет обуви\" и пр.)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 34,
+ "name": "ВидОбщееСведение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общее сведение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 18,
+ "name": "ОбщееСведение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОбщееСвойство",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 20,
+ "name": "ОбщееСведениеКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данное сведение входит сразу в несколько наборов. Этот вариант подходит для тех случаев, когда общим\nдолжен быть не только список значений, но и само сведение. В списках и отчетах по элементам различных\nсправочников и документов, общие сведения группируются и выводятся как одно сведение, в одной колонке или поле.\nНапример, с помощью общего сведения \"Цвет\" можно быстро отобрать всю желтую одежду и обувь."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ОбщееСвойство",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общее свойство"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ОтдельноеСвойствоСОбщимСпискомЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отдельное свойство с общим списком значений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ОтдельноеСвойствоСОтдельнымСпискомЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отдельное свойство с отдельным списком значений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Свойство",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ЭтоДополнительноеСведение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ТекущийНаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "64e702e9-8934-4356-a1b2-be0e8b390630",
+ "name": "ЗависимостьРеквизитов",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ЗависимостьРеквизитов",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ЗависимостьРеквизитов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Зависимость реквизитов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ЗависимостьРеквизитов/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ЗависимостьРеквизитов/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "Table",
+ "id": 5,
+ "name": "ЗависимостиРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Зависит от значения свойств и реквизитов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ЗависимостиРеквизитовРеквизит",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 21,
+ "name": "ЗависимостиРеквизитовВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов.Условие",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 24,
+ "name": "ЗависимостиРеквизитовПравоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов.Значение",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ЗависимостиРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Зависимости реквизитов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "РеквизитыОбъектаВХранилище",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастраиваемоеСвойство",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ДобавлениеСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "НажатаОтмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "НаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "74880ac4-bdd3-48e6-82a0-a2103da42723",
+ "name": "ВыборРеквизита",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ВыборРеквизита",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ВыборРеквизита"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор реквизита"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ВыборРеквизита/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ВыборРеквизита/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор реквизита"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "РеквизитыОбъекта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизиты объекта"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "РеквизитыОбъекта",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "РеквизитыОбъектаПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "РеквизитыОбъекта.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "РеквизитыОбъекта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизиты объекта"
+ ]
+ ]
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ДополнительныеРеквизитыИСведения",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные реквизиты и сведения"
+ ]
+ ]
+ },
+ "tabularSections": [
+ [
+ {
+ "uuid": "d6b72e00-018a-4fdc-b6a4-06dcecf89809",
+ "name": "ЗависимостиДополнительныхРеквизитов",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Зависимости дополнительных реквизитов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "9f816562-57f0-473f-8c85-14f7521ffd7f",
+ "name": "ЗависимоеСвойство",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.ЗависимоеСвойство",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.ЗависимоеСвойство"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Зависимое свойство"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "14077038-2e41-4a05-a476-99f6f88a5c29",
+ "name": "НаборСвойств",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.НаборСвойств",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.НаборСвойств"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Набор свойств"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "917b0acc-88fe-4afc-b19b-6da69e060393",
+ "name": "Реквизит",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.Реквизит",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.Реквизит"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a091b76e-8ba4-4534-bbb0-9990e69b8603",
+ "name": "Условие",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.Условие",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.Условие"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Условие"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "867ee5d2-7566-4052-a311-b56e7e46b90d",
+ "name": "Значение",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.Значение",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.Значение"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "8f51328b-73a8-46fb-b6db-7b7a84c05c2a",
+ "name": "Представления",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Представления"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "0f0f5b42-2407-44e6-85d7-26ace96b2cd9",
+ "name": "КодЯзыка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.КодЯзыка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.КодЯзыка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Код языка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ffec426d-2556-46d6-b313-aeca43581865",
+ "name": "Заголовок",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.Заголовок",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.Заголовок"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f32e0941-2061-4e12-bdae-fcb65f91ac28",
+ "name": "Подсказка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.Подсказка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.Подсказка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подсказка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6f0e0f44-db5a-4a13-9131-866b77b90f14",
+ "name": "ЗаголовокФормыЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.ЗаголовокФормыЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.ЗаголовокФормыЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "9415e0aa-391f-4798-ad7d-3b854a756de8",
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.ЗаголовокФормыВыбораЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.ЗаголовокФормыВыбораЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы выбора значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "templates": [],
+ "uuid": "1055d15b-8cb5-4ff0-a526-7fd20a08a96c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json"
new file mode 100644
index 000000000..788d5175a
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/ChartsOfCharacteristicTypes.\320\224\320\276\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\240\320\265\320\272\320\262\320\270\320\267\320\270\321\202\321\213\320\230\320\241\320\262\320\265\320\264\320\265\320\275\320\270\321\217_edt.json"
@@ -0,0 +1,4395 @@
+{"com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes": {
+ "attributes": [
+ [
+ {
+ "uuid": "8064eb3a-d56c-4517-9db0-b7300149c7c4",
+ "name": "Виден",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Виден",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Виден"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Виден"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "fe926c88-d792-4db3-abcf-3c94dfdcc407",
+ "name": "ВладелецДополнительныхЗначений",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ВладелецДополнительныхЗначений",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ВладелецДополнительныхЗначений"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Владелец дополнительных значений"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "b1c3a6c1-5245-4a65-8a45-13948be6f6a1",
+ "name": "ВыводитьВВидеГиперссылки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ВыводитьВВидеГиперссылки",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ВыводитьВВидеГиперссылки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выводить в виде гиперссылки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "bcbdba9e-0b29-4ea7-a7d5-1de819bf86ec",
+ "name": "ДополнительныеЗначенияИспользуются",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ДополнительныеЗначенияИспользуются",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ДополнительныеЗначенияИспользуются"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные значения используются"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "e0c51555-1614-4aa7-a075-c5e1251579ba",
+ "name": "ДополнительныеЗначенияСВесом",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ДополнительныеЗначенияСВесом",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ДополнительныеЗначенияСВесом"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Значения дополнительно характеризуются весовым коэффициентом"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c75a1c6d-fa33-4b57-b359-6253aff5f3e7",
+ "name": "Доступен",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Доступен",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Доступен"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Доступен"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "af88ea84-5742-4c9f-9a02-6d0f25186f72",
+ "name": "Заголовок",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Заголовок",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Заголовок"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "51363236-c8eb-4eb7-9692-5c18edc9a5a8",
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЗаголовокФормыВыбораЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЗаголовокФормыВыбораЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы выбора значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "cb65fbad-69a0-47d8-b4a9-da49274c3eb7",
+ "name": "ЗаголовокФормыЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЗаголовокФормыЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЗаголовокФормыЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "872521e3-413c-45ac-a6ea-39fe1324bae8",
+ "name": "ЗаполнятьОбязательно",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЗаполнятьОбязательно",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЗаполнятьОбязательно"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заполнять обязательно"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "8adebe50-a946-40c2-9258-b17efe787e0e",
+ "name": "Имя",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Имя",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Имя"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Имя"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "8cad6cfd-91d0-4563-800a-d60c8a1b6a03",
+ "name": "Комментарий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Комментарий",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Комментарий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "81ef02df-498d-4af0-8254-dc6730cbf140",
+ "name": "МногострочноеПолеВвода",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.МногострочноеПолеВвода",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.МногострочноеПолеВвода"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Многострочное поле ввода"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2902460a-ed86-41cf-8e8f-895adab9a72f",
+ "name": "Подсказка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.Подсказка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.Подсказка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подсказка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "402f2fe0-4d08-4701-9c8f-0c2bb75815ef",
+ "name": "ФорматСвойства",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ФорматСвойства",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ФорматСвойства"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Формат свойства"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "1a4ed7cf-3294-4a5c-9650-75b61d6b2531",
+ "name": "ЭтоДополнительноеСведение",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ЭтоДополнительноеСведение",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ЭтоДополнительноеСведение"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Это дополнительное сведение"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "79ad09ba-875a-46bd-9cd9-9d084bf4f6ea",
+ "name": "НаборСвойств",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.НаборСвойств",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.НаборСвойств"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Набор свойств"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f237a21e-066a-48e6-a5c4-5dc2487c7a3b",
+ "name": "ИдентификаторДляФормул",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Attribute.ИдентификаторДляФормул",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Реквизит.ИдентификаторДляФормул"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор для формул"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "f82d5bd6-4c74-4c23-978c-565aae3d752a",
+ "name": "ФормаЭлемента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ФормаЭлемента",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ФормаЭлемента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма элемента"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаЭлемента/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаЭлемента/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Pages",
+ "id": 200,
+ "name": "СтраницыПомощникКарточка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы помощник карточка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 202,
+ "name": "ВыборРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 336,
+ "name": "ГруппаЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 338,
+ "name": "ДекорацияЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выберите %1 для включения в набор \"%2\":"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 408,
+ "name": "ПанельЕще",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Панель еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Popup",
+ "id": 410,
+ "name": "ПодменюЕще",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 412,
+ "name": "НеиспользуемыеРеквизиты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 341,
+ "name": "ГруппаСодержимое",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержимое"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 343,
+ "name": "ГруппаНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 414,
+ "name": "СтраницыНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 416,
+ "name": "СтраницаВсеНаборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница все наборы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 345,
+ "name": "НаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "НаборыСвойств",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 396,
+ "name": "Представление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление набора"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "НаборыСвойств.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 399,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "НаборыСвойств.Ссылка",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 418,
+ "name": "СтраницаОбщиеНаборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница общие наборы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 420,
+ "name": "ОбщиеНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общие наборы свойств"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОбщиеНаборыСвойств",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "LabelField",
+ "id": 436,
+ "name": "ОбщиеНаборыСвойствПредставление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОбщиеНаборыСвойств.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 364,
+ "name": "РасшифровкаРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные реквизиты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 366,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Свойства",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 379,
+ "name": "СвойстваЗаголовок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Свойства.Заголовок",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 469,
+ "name": "ГруппаДополнительнаяИнформация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительная информация"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 384,
+ "name": "СписокДополнительныхРеквизитовТипЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.ТипЗначения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 387,
+ "name": "СписокДополнительныхРеквизитовПодсказка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всплывающая подсказка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.Подсказка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 390,
+ "name": "СписокДополнительныхРеквизитовЗаголовокФормыЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.ЗаголовокФормыЗначения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 393,
+ "name": "СписокДополнительныхРеквизитовЗаголовокФормыВыбораЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Свойства.CurrentData.ЗаголовокФормыВыбораЗначения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 204,
+ "name": "ВыборДействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор действия"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "RadioButtonField",
+ "id": 237,
+ "name": "РежимДобавленияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выберите вариант добавления дополнительного %1 \"%2\" в набор \"%3\""
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "РежимДобавленияРеквизита",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 206,
+ "name": "КарточкаРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Карточка реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 79,
+ "name": "ГруппаНаименованиеРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Заголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Заголовок",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 20,
+ "name": "ЭтоДополнительноеСведение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЭтоДополнительноеСведение",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ТипЗначенияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 471,
+ "name": "ГруппаТипЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "ТипЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ValueType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Hyperlink",
+ "id": 37,
+ "name": "РедактироватьФорматЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 476,
+ "name": "ГруппаПояснениеТипаЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснение типа значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 478,
+ "name": "КартинкаПояснение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 473,
+ "name": "ПояснениеОДлинеСтроки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Максимальная длина строки составляет 1024 символа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 38,
+ "name": "ГруппаМногострочность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Многострочность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 448,
+ "name": "ГруппаОднострочноеПолеВводаНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Однострочное поле ввода настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 442,
+ "name": "ОднострочныйВид",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеРеквизита",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 445,
+ "name": "ВыводитьВВидеГиперссылки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ВыводитьВВидеГиперссылки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 46,
+ "name": "ГруппаМногострочноеПолеВводаНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Многострочное поле ввода настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 450,
+ "name": "МногострочныйВид",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеРеквизита",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "МногострочноеПолеВводаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ " строк"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "МногострочноеПолеВводаЧисло",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 167,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 169,
+ "name": "ГлавнаяСтраница",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Главное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 324,
+ "name": "ГруппаСвойстваИЗависимости",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства и зависимости"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 463,
+ "name": "ГруппаВиден",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виден"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 402,
+ "name": "Виден",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виден:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 333,
+ "name": "ЗадатьУсловиеВидимости",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "всегда"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 465,
+ "name": "ГруппаДоступен",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступен"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 405,
+ "name": "Доступен",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступен:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 194,
+ "name": "ЗадатьУсловиеДоступности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "всегда"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 467,
+ "name": "ГруппаЗаполнятьОбязательно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заполнять обязательно"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 184,
+ "name": "ЗаполнятьОбязательно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заполнять обязательно:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ЗаполнятьОбязательно",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 197,
+ "name": "ЗадатьУсловиеЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "всегда"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 107,
+ "name": "ОстальныеРеквизиты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Остальные реквизиты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 481,
+ "name": "ГруппаИдентификаторДляФормул",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор для формул"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 483,
+ "name": "ИдентификаторДляФормул",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ИдентификаторДляФормул",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 486,
+ "name": "ЗаполнитьИдентификаторДляФормул",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 30,
+ "name": "Подсказка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всплывающая подсказка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Подсказка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 32,
+ "name": "ГруппаЗаголовкиФормЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовки форм значений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 33,
+ "name": "ЗаголовокФормыЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ЗаголовокФормыЗначения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 35,
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ЗаголовокФормыВыбораЗначения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 28,
+ "name": "Комментарий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Комментарий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 96,
+ "name": "УточнениеНаборов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уточнение наборов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 99,
+ "name": "УточнениеНаборовКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общий реквизит входит в набор \"Расходный кассовый ордер\" "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 106,
+ "name": "УточнениеНаборовИзменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 182,
+ "name": "СтраницаЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Pages",
+ "id": 287,
+ "name": "СтраницыЗначенияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы значения реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 56,
+ "name": "ДополнительныеЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные значения:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 57,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 60,
+ "name": "ЗначенияНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 83,
+ "name": "ЗначенияВес",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Значения.Вес",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 460,
+ "name": "ЗначенияСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Значения.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 289,
+ "name": "СтраницаДеревоЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница дерево значений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 291,
+ "name": "ЗначенияДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения дополнительного реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗначенияДополнительныхРеквизитов",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 304,
+ "name": "ЗначенияДополнительногоРеквизитаНаименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗначенияДополнительныхРеквизитов.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 307,
+ "name": "ЗначенияДополнительногоРеквизитаВес",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Весовой коэффициент"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗначенияДополнительныхРеквизитов.Вес",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 69,
+ "name": "ДополнительныеЗначенияСВесом",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДополнительныеЗначенияСВесом",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 89,
+ "name": "УточнениеСпискаЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уточнение списка значений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 87,
+ "name": "УточнениеСпискаЗначенийКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список значений общий с реквизитом \"Цвет\" набора \"Номенклатура (сумки)\" "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 105,
+ "name": "УточнениеСпискаЗначенийИзменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 455,
+ "name": "ГруппаДляРазработчиков",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Для разработчиков"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 457,
+ "name": "Имя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Имя",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 227,
+ "name": "КоманднаяПанельПомощника",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель помощника"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 229,
+ "name": "КоманднаяПанельЛево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель лево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 233,
+ "name": "КомандаНазад",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 231,
+ "name": "КоманднаяПанельПраво",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель право"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 235,
+ "name": "КомандаДалее",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 242,
+ "name": "Закрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ЭтоДополнительноеСведение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Это дополнительное сведение"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "СписокНаборов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "МногострочноеПолеВвода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "МногострочноеПолеВводаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Многострочное поле ввода число"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ПоказатьУточнениеНабора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ТекущийНаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ПереданныеПараметрыФормы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 14,
+ "name": "РежимДобавленияРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Режим добавления реквизита"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 15,
+ "name": "РежимПомощника",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ЗначенияДополнительныхРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения дополнительных реквизитов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 17,
+ "name": "ПустаяСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 18,
+ "name": "УсловияЗависимостиРеквизитов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 19,
+ "name": "ИзмененыУсловияЗависимостиРеквизитов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 20,
+ "name": "ВыбранныйНаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 21,
+ "name": "НаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наборы свойств"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 22,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 23,
+ "name": "ОбщиеНаборыСвойств",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общие наборы свойств"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 24,
+ "name": "ПредставлениеРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление реквизита"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТекущийЗаголовок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "7fba41a5-4faa-412b-b367-b30ced0314c0",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ФормаСписка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ФормаСписка/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 16,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 14,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Наименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "ТипЗначения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ValueType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 11,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "37333d0b-3589-4b8b-bf6c-e605e0287b66",
+ "name": "РазблокированиеРеквизитов",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.РазблокированиеРеквизитов",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.РазблокированиеРеквизитов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Разблокирование реквизитов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/РазблокированиеРеквизитов/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/РазблокированиеРеквизитов/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "Pages",
+ "id": 1,
+ "name": "ДиалогиПользователя",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Диалоги пользователя"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 2,
+ "name": "ОбъектНеИспользуется",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объект не используется"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 12,
+ "name": "Пояснения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 22,
+ "name": "ПояснениеДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснение дополнительного реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 23,
+ "name": "ТекстПоясненияДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный реквизит не используется в документах программы.\n\nТип значения и имя дополнительного реквизита можно изменять."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 25,
+ "name": "ПояснениеДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пояснение дополнительного сведения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 26,
+ "name": "ТекстПоясненияДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительное сведение не используется в информационной базе.\n\nТип значения и имя дополнительного сведения можно изменять."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 3,
+ "name": "ОбъектИспользуется",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объект используется"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 17,
+ "name": "Предупреждения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 18,
+ "name": "ПредупреждениеДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение дополнительного реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 6,
+ "name": "ТекстПредупрежденияДополнительногоРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Внимание! Дополнительный реквизит уже используется в информационной базе.\n\nИзменение типа значения дополнительного реквизита может привести к потере ранее установленных значений его текущего типа."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 19,
+ "name": "ПредупреждениеДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение дополнительного сведения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 20,
+ "name": "ТекстПредупрежденияДополнительногоСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Внимание! Дополнительное сведение уже используется в информационной базе.\n\nИзменение типа значения дополнительного сведения может привести к потере ранее установленных значений его текущего типа."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": []
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "1813c469-da20-46a6-8947-6815b66f64c1",
+ "name": "ИзменениеНастройкиСвойства",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ИзменениеНастройкиСвойства",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ИзменениеНастройкиСвойства"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Изменение настройки свойства"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ИзменениеНастройкиСвойства/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ИзменениеНастройкиСвойства/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить настройку дополнительного реквизита"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "Pages",
+ "id": 40,
+ "name": "ТипыСвойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Типы свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 17,
+ "name": "ДополнительныйРеквизит",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный реквизит"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 52,
+ "name": "РеквизитПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизит предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 48,
+ "name": "РеквизитПредупреждениеКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизит предупреждение картинка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 50,
+ "name": "РеквизитПредупреждениеКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перенастройка дополнительного реквизита необратима и может занять длительное время, в зависимости от числа документов, в которых заполнен этот реквизит. \nВместо этого можно добавить новый реквизит со своим списком значений, и выполнить вручную постепенный переход от использования этого реквизита к новому (очистить значения этого реквизита и заполнить значения нового)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 8,
+ "name": "ОтдельныеЗначенияРеквизита",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 14,
+ "name": "ОтдельныеЗначенияРеквизитаКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данный реквизит входит только в один набор %1, и у него свой собственный список значений."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 30,
+ "name": "ВидыРеквизита",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виды реквизита"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 32,
+ "name": "ВидОбщиеЗначенияРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общие значения реквизитов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 6,
+ "name": "ОбщиеЗначенияРеквизитов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 12,
+ "name": "ОбщиеЗначенияРеквизитовКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "У данного реквизита общий список значений с другими реквизитами, добавленными по образцу. С помощью этого варианта удобно выполнять централизованную настройку списка значений сразу для нескольких однотипных реквизитов (например, \"Цвет одежды\", \"Цвет обуви\" и пр.)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 31,
+ "name": "ВидОбщийРеквизит",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общий реквизит"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 4,
+ "name": "ОбщийРеквизит",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОбщееСвойство",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 10,
+ "name": "ОбщийРеквизитКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данный реквизит входит сразу в несколько наборов. Этот вариант подходит для тех случаев, когда общим\nдолжен быть не только список значений, но и сам реквизит. В списках и отчетах по элементам различных\nсправочников и документов, общие реквизиты группируются и выводятся как один реквизит, в одной колонке или поле.\nНапример, с помощью общего реквизита \"Цвет\" можно быстро отобрать всю желтую одежду и обувь."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 16,
+ "name": "ДополнительноеСведение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительное сведение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "СведениеПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сведение предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 56,
+ "name": "СведениеПредупреждениеКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сведение предупреждение картинка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 58,
+ "name": "СведениеПредупреждениеКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перенастройка дополнительного сведения необратима и может занять длительное время, в зависимости от числа документов, в которых заполнено это сведение.\nВместо этого можно добавить новое сведение со своим списком значений, и выполнить вручную постепенный переход от использования этого сведения к новому (очистить значения этого сведения и заполнить значения нового)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 26,
+ "name": "ОтдельныеЗначенияСведения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОтдельнымСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 28,
+ "name": "ОтдельныеЗначенияСведенияКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данное сведение входит только в один набор %1, и у него свой собственный список значений."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 33,
+ "name": "ВидыСведения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Виды сведения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 39,
+ "name": "ВидОбщиеЗначенияСведений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общие значения сведений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 22,
+ "name": "ОбщиеЗначенияСведений",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОтдельноеСвойствоСОбщимСпискомЗначений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 24,
+ "name": "ОбщиеЗначенияСведенийКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "У этого сведения общий список значений с другими сведениями, добавленными по образцу. С помощью этого варианта удобно выполнять централизованную настройку списка значений сразу для нескольких однотипных сведений (например, \"Цвет одежды\", \"Цвет обуви\" и пр.)."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 34,
+ "name": "ВидОбщееСведение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид общее сведение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 18,
+ "name": "ОбщееСведение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОбщееСвойство",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 20,
+ "name": "ОбщееСведениеКомментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Данное сведение входит сразу в несколько наборов. Этот вариант подходит для тех случаев, когда общим\nдолжен быть не только список значений, но и само сведение. В списках и отчетах по элементам различных\nсправочников и документов, общие сведения группируются и выводятся как одно сведение, в одной колонке или поле.\nНапример, с помощью общего сведения \"Цвет\" можно быстро отобрать всю желтую одежду и обувь."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ОбщееСвойство",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Общее свойство"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ОтдельноеСвойствоСОбщимСпискомЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отдельное свойство с общим списком значений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ОтдельноеСвойствоСОтдельнымСпискомЗначений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отдельное свойство с отдельным списком значений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Свойство",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ЭтоДополнительноеСведение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ТекущийНаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "64e702e9-8934-4356-a1b2-be0e8b390630",
+ "name": "ЗависимостьРеквизитов",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ЗависимостьРеквизитов",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ЗависимостьРеквизитов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Зависимость реквизитов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ЗависимостьРеквизитов/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ЗависимостьРеквизитов/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "",
+ "id": 5,
+ "name": "ЗависимостиРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Зависит от значения свойств и реквизитов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ЗависимостиРеквизитовРеквизит",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 21,
+ "name": "ЗависимостиРеквизитовВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов.Условие",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 24,
+ "name": "ЗависимостиРеквизитовПравоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ЗависимостиРеквизитов.Значение",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ЗависимостиРеквизитов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Зависимости реквизитов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "РеквизитыОбъектаВХранилище",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастраиваемоеСвойство",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ДобавлениеСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "НажатаОтмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "НаборСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "74880ac4-bdd3-48e6-82a0-a2103da42723",
+ "name": "ВыборРеквизита",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.Form.ВыборРеквизита",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.Форма.ВыборРеквизита"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор реквизита"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ВыборРеквизита/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/Forms/ВыборРеквизита/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор реквизита"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "",
+ "id": 1,
+ "name": "РеквизитыОбъекта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизиты объекта"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "РеквизитыОбъекта",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "РеквизитыОбъектаПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "РеквизитыОбъекта.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "РеквизитыОбъекта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Реквизиты объекта"
+ ]
+ ]
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ChartsOfCharacteristicTypes/ДополнительныеРеквизитыИСведения/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ДополнительныеРеквизитыИСведения",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительные реквизиты и сведения"
+ ]
+ ]
+ },
+ "tabularSections": [
+ [
+ {
+ "uuid": "d6b72e00-018a-4fdc-b6a4-06dcecf89809",
+ "name": "ЗависимостиДополнительныхРеквизитов",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Зависимости дополнительных реквизитов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "9f816562-57f0-473f-8c85-14f7521ffd7f",
+ "name": "ЗависимоеСвойство",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.ЗависимоеСвойство",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.ЗависимоеСвойство"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Зависимое свойство"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "14077038-2e41-4a05-a476-99f6f88a5c29",
+ "name": "НаборСвойств",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.НаборСвойств",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.НаборСвойств"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Набор свойств"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "917b0acc-88fe-4afc-b19b-6da69e060393",
+ "name": "Реквизит",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.Реквизит",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.Реквизит"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "a091b76e-8ba4-4534-bbb0-9990e69b8603",
+ "name": "Условие",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.Условие",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.Условие"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Условие"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "867ee5d2-7566-4052-a311-b56e7e46b90d",
+ "name": "Значение",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.ЗависимостиДополнительныхРеквизитов.Attribute.Значение",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.ЗависимостиДополнительныхРеквизитов.Реквизит.Значение"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "8f51328b-73a8-46fb-b6db-7b7a84c05c2a",
+ "name": "Представления",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Представления"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "0f0f5b42-2407-44e6-85d7-26ace96b2cd9",
+ "name": "КодЯзыка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.КодЯзыка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.КодЯзыка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Код языка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ffec426d-2556-46d6-b313-aeca43581865",
+ "name": "Заголовок",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.Заголовок",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.Заголовок"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f32e0941-2061-4e12-bdae-fcb65f91ac28",
+ "name": "Подсказка",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.Подсказка",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.Подсказка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подсказка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6f0e0f44-db5a-4a13-9131-866b77b90f14",
+ "name": "ЗаголовокФормыЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.ЗаголовокФормыЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.ЗаголовокФормыЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "9415e0aa-391f-4798-ad7d-3b854a756de8",
+ "name": "ЗаголовокФормыВыбораЗначения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения.TabularSection.Представления.Attribute.ЗаголовокФормыВыбораЗначения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения.ТабличнаяЧасть.Представления.Реквизит.ЗаголовокФормыВыбораЗначения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок формы выбора значения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/tabularSections/c/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection[2]/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "templates": [],
+ "uuid": "1055d15b-8cb5-4ff0-a526-7fd20a08a96c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommandGroups.\320\237\320\265\321\207\320\260\321\202\321\214.json" "b/src/test/resources/fixtures/ssl_3_1/CommandGroups.\320\237\320\265\321\207\320\260\321\202\321\214.json"
new file mode 100644
index 000000000..9dee22faa
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommandGroups.\320\237\320\265\321\207\320\260\321\202\321\214.json"
@@ -0,0 +1,20 @@
+{"com.github._1c_syntax.bsl.mdo.CommandGroup": {
+ "comment": "Печать",
+ "mdoReference": {
+ "type": "COMMAND_GROUP",
+ "mdoRef": "CommandGroup.Печать",
+ "mdoRefRu": "ГруппаКоманд.Печать"
+ },
+ "name": "Печать",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Печать"
+ ]
+ ]
+ },
+ "uuid": "ac39b903-0c60-417e-a50f-49ed375424f5"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonAttributes.\320\236\320\261\320\273\320\260\321\201\321\202\321\214\320\224\320\260\320\275\320\275\321\213\321\205\320\222\321\201\320\277\320\276\320\274\320\276\320\263\320\260\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/CommonAttributes.\320\236\320\261\320\273\320\260\321\201\321\202\321\214\320\224\320\260\320\275\320\275\321\213\321\205\320\222\321\201\320\277\320\276\320\274\320\276\320\263\320\260\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.json"
new file mode 100644
index 000000000..32fbe3046
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonAttributes.\320\236\320\261\320\273\320\260\321\201\321\202\321\214\320\224\320\260\320\275\320\275\321\213\321\205\320\222\321\201\320\277\320\276\320\274\320\276\320\263\320\260\321\202\320\265\320\273\321\214\320\275\321\213\320\265\320\224\320\260\320\275\320\275\321\213\320\265.json"
@@ -0,0 +1,159 @@
+{"com.github._1c_syntax.bsl.mdo.CommonAttribute": {
+ "authenticationSeparation": "DONT_USE",
+ "autoUse": "DONT_USE",
+ "comment": "",
+ "conditionalSeparation": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьРазделениеПоОбластямДанных",
+ "mdoRefRu": "Константа.ИспользоватьРазделениеПоОбластямДанных"
+ },
+ "configurationExtensionsSeparation": "DONT_USE",
+ "content": [
+ [
+ {
+ "metadata": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РассылкаОтчетов",
+ "mdoRefRu": "РегламентноеЗадание.РассылкаОтчетов"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных",
+ "mdoRefRu": "РегистрСведений.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиОбновления",
+ "mdoRefRu": "РегистрСведений.ОбработчикиОбновления"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтложенноеОбновлениеЗавершеноУспешно",
+ "mdoRefRu": "Константа.ОтложенноеОбновлениеЗавершеноУспешно"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОчередьИзвлеченияТекста",
+ "mdoRefRu": "РегистрСведений.ОчередьИзвлеченияТекста"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПотокиОбновления",
+ "mdoRefRu": "РегистрСведений.ПотокиОбновления"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СведенияОБлокируемыхОбъектах",
+ "mdoRefRu": "Константа.СведенияОБлокируемыхОбъектах"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОбменовДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СостоянияОбменовДаннымиОбластейДанных"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДаннымиОбластейДанных"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СообщенияОбменаДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СообщенияОбменаДаннымиОбластейДанных"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных",
+ "mdoRefRu": "РегистрСведений.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СведенияОбОбновленииИБ",
+ "mdoRefRu": "Константа.СведенияОбОбновленииИБ"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииПодсистемОбластейДанных",
+ "mdoRefRu": "РегистрСведений.ВерсииПодсистемОбластейДанных"
+ },
+ "use": "USE"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БлокировкиСеансовОбластейДанных",
+ "mdoRefRu": "РегистрСведений.БлокировкиСеансовОбластейДанных"
+ },
+ "use": "USE"
+ }
+ ],
+ []
+ ],
+ "dataSeparation": "SEPARATE",
+ "dataSeparationUse": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ОбластьДанныхИспользование",
+ "mdoRefRu": "ПараметрСеанса.ОбластьДанныхИспользование"
+ },
+ "dataSeparationValue": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ОбластьДанныхЗначение",
+ "mdoRefRu": "ПараметрСеанса.ОбластьДанныхЗначение"
+ },
+ "indexing": "DONT_INDEX",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбластьДанныхВспомогательныеДанные",
+ "mdoRefRu": "ОбщийРеквизит.ОбластьДанныхВспомогательныеДанные"
+ },
+ "name": "ОбластьДанныхВспомогательныеДанные",
+ "objectBelonging": "OWN",
+ "passwordMode": false,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Область данных вспомогательные данные"
+ ]
+ ]
+ },
+ "usersSeparation": "DONT_USE",
+ "uuid": "530a3164-4ef1-4b3b-8269-13764ef4bf15"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonCommands.\320\236\321\202\320\277\321\200\320\260\320\262\320\270\321\202\321\214\320\237\320\270\321\201\321\214\320\274\320\276.json" "b/src/test/resources/fixtures/ssl_3_1/CommonCommands.\320\236\321\202\320\277\321\200\320\260\320\262\320\270\321\202\321\214\320\237\320\270\321\201\321\214\320\274\320\276.json"
new file mode 100644
index 000000000..4ddc864ea
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonCommands.\320\236\321\202\320\277\321\200\320\260\320\262\320\270\321\202\321\214\320\237\320\270\321\201\321\214\320\274\320\276.json"
@@ -0,0 +1,31 @@
+{"com.github._1c_syntax.bsl.mdo.CommonCommand": {
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОтправитьПисьмо",
+ "mdoRefRu": "ОбщаяКоманда.ОтправитьПисьмо"
+ },
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/CommonCommands/ОтправитьПисьмо/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ОтправитьПисьмо",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Отправить письмо..."
+ ]
+ ]
+ },
+ "uuid": "477ab478-b336-4bac-898f-e20e3a4039b5"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonCommands.\320\236\321\202\320\277\321\200\320\260\320\262\320\270\321\202\321\214\320\237\320\270\321\201\321\214\320\274\320\276_edt.json" "b/src/test/resources/fixtures/ssl_3_1/CommonCommands.\320\236\321\202\320\277\321\200\320\260\320\262\320\270\321\202\321\214\320\237\320\270\321\201\321\214\320\274\320\276_edt.json"
new file mode 100644
index 000000000..5f567f6ad
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonCommands.\320\236\321\202\320\277\321\200\320\260\320\262\320\270\321\202\321\214\320\237\320\270\321\201\321\214\320\274\320\276_edt.json"
@@ -0,0 +1,31 @@
+{"com.github._1c_syntax.bsl.mdo.CommonCommand": {
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОтправитьПисьмо",
+ "mdoRefRu": "ОбщаяКоманда.ОтправитьПисьмо"
+ },
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/CommonCommands/ОтправитьПисьмо/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ОтправитьПисьмо",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Отправить письмо..."
+ ]
+ ]
+ },
+ "uuid": "477ab478-b336-4bac-898f-e20e3a4039b5"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json" "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json"
new file mode 100644
index 000000000..23b49809c
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201.json"
@@ -0,0 +1,192 @@
+{"com.github._1c_syntax.bsl.mdo.CommonForm": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/CommonForms/Вопрос/Ext/Form.xml",
+ "title": {
+ "content": []
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 15,
+ "name": "Колонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Колонки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 5,
+ "name": "Предупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 16,
+ "name": "Строки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "МногострочныйТекстСообщения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ТекстСообщения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 3,
+ "name": "БольшеНеЗадаватьЭтотВопрос",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БольшеНеЗадаватьЭтотВопрос",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "СоответствиеКнопокИВозвращаемыхЗначений",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "БольшеНеЗадаватьЭтотВопрос",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Больше не задавать этот вопрос"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ОжиданиеСчетчик",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ОжиданиеИмяКнопки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ОжиданиеЗаголовокКнопки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ТекстСообщения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "formType": "MANAGED",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Вопрос",
+ "mdoRefRu": "ОбщаяФорма.Вопрос"
+ },
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/CommonForms/Вопрос/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Вопрос",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Вопрос"
+ ]
+ ]
+ },
+ "uuid": "573f1753-9194-4aaf-9217-5cac70ff108f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json" "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json"
new file mode 100644
index 000000000..372b11cf8
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonForms.\320\222\320\276\320\277\321\200\320\276\321\201_edt.json"
@@ -0,0 +1,192 @@
+{"com.github._1c_syntax.bsl.mdo.CommonForm": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/CommonForms/Вопрос/Form.form",
+ "title": {
+ "content": []
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 15,
+ "name": "Колонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Колонки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 5,
+ "name": "Предупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 16,
+ "name": "Строки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/items/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "МногострочныйТекстСообщения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ТекстСообщения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 3,
+ "name": "БольшеНеЗадаватьЭтотВопрос",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БольшеНеЗадаватьЭтотВопрос",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "СоответствиеКнопокИВозвращаемыхЗначений",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "БольшеНеЗадаватьЭтотВопрос",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Больше не задавать этот вопрос"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ОжиданиеСчетчик",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ОжиданиеИмяКнопки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ОжиданиеЗаголовокКнопки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ТекстСообщения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "formType": "MANAGED",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Вопрос",
+ "mdoRefRu": "ОбщаяФорма.Вопрос"
+ },
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/CommonForms/Вопрос/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Вопрос",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Вопрос"
+ ]
+ ]
+ },
+ "uuid": "573f1753-9194-4aaf-9217-5cac70ff108f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonModules.\320\220\320\262\321\202\320\276\320\275\320\276\320\274\320\275\320\260\321\217\320\240\320\260\320\261\320\276\321\202\320\260.json" "b/src/test/resources/fixtures/ssl_3_1/CommonModules.\320\220\320\262\321\202\320\276\320\275\320\276\320\274\320\275\320\260\321\217\320\240\320\260\320\261\320\276\321\202\320\260.json"
new file mode 100644
index 000000000..f16fb3a68
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonModules.\320\220\320\262\321\202\320\276\320\275\320\276\320\274\320\275\320\260\321\217\320\240\320\260\320\261\320\276\321\202\320\260.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": true,
+ "comment": "",
+ "externalConnection": true,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.АвтономнаяРабота",
+ "mdoRefRu": "ОбщийМодуль.АвтономнаяРабота"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "АвтономнаяРабота",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автономная работа"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/CommonModules/АвтономнаяРабота/Ext/Module.bsl",
+ "uuid": "a5cc5ae2-be80-4957-8aca-9e477433dfcc"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonModules.\320\220\320\262\321\202\320\276\320\275\320\276\320\274\320\275\320\260\321\217\320\240\320\260\320\261\320\276\321\202\320\260_edt.json" "b/src/test/resources/fixtures/ssl_3_1/CommonModules.\320\220\320\262\321\202\320\276\320\275\320\276\320\274\320\275\320\260\321\217\320\240\320\260\320\261\320\276\321\202\320\260_edt.json"
new file mode 100644
index 000000000..f5914650d
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonModules.\320\220\320\262\321\202\320\276\320\275\320\276\320\274\320\275\320\260\321\217\320\240\320\260\320\261\320\276\321\202\320\260_edt.json"
@@ -0,0 +1,42 @@
+{"com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "clientManagedApplication": false,
+ "clientOrdinaryApplication": true,
+ "comment": "",
+ "externalConnection": true,
+ "global": false,
+ "mdoReference": {
+ "type": "COMMON_MODULE",
+ "mdoRef": "CommonModule.АвтономнаяРабота",
+ "mdoRefRu": "ОбщийМодуль.АвтономнаяРабота"
+ },
+ "moduleType": "CommonModule",
+ "modules": [
+ {
+ "default": {
+ "tag": 1
+ },
+ "int": 1,
+ "com.github._1c_syntax.bsl.mdo.CommonModule": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.CommonModule"
+ }
+ }
+ ],
+ "name": "АвтономнаяРабота",
+ "objectBelonging": "OWN",
+ "privileged": false,
+ "protected": false,
+ "returnValuesReuse": "DONT_USE",
+ "server": true,
+ "serverCall": false,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автономная работа"
+ ]
+ ]
+ },
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/CommonModules/АвтономнаяРабота/Module.bsl",
+ "uuid": "a5cc5ae2-be80-4957-8aca-9e477433dfcc"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/ssl_3_1/CommonPictures.GoogleMaps.json b/src/test/resources/fixtures/ssl_3_1/CommonPictures.GoogleMaps.json
new file mode 100644
index 000000000..1775e4594
--- /dev/null
+++ b/src/test/resources/fixtures/ssl_3_1/CommonPictures.GoogleMaps.json
@@ -0,0 +1,22 @@
+{"com.github._1c_syntax.bsl.mdo.CommonPicture": {
+ "availabilityForAppearance": false,
+ "availabilityForChoice": false,
+ "comment": "",
+ "mdoReference": {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.GoogleMaps",
+ "mdoRefRu": "ОбщаяКартинка.GoogleMaps"
+ },
+ "name": "GoogleMaps",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Google maps"
+ ]
+ ]
+ },
+ "uuid": "5a88f624-7b7e-43fe-8bc4-ae85d832a855"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/CommonTemplates.\320\241\321\202\321\200\321\203\320\272\321\202\321\203\321\200\320\260\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\276\321\201\321\202\320\270.json" "b/src/test/resources/fixtures/ssl_3_1/CommonTemplates.\320\241\321\202\321\200\321\203\320\272\321\202\321\203\321\200\320\260\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\276\321\201\321\202\320\270.json"
new file mode 100644
index 000000000..3e4aa0cfd
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/CommonTemplates.\320\241\321\202\321\200\321\203\320\272\321\202\321\203\321\200\320\260\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\276\321\201\321\202\320\270.json"
@@ -0,0 +1,24 @@
+{"com.github._1c_syntax.bsl.mdo.CommonTemplate": {
+ "comment": "",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "mdoReference": {
+ "type": "COMMON_TEMPLATE",
+ "mdoRef": "CommonTemplate.СтруктураПодчиненности",
+ "mdoRefRu": "ОбщийМакет.СтруктураПодчиненности"
+ },
+ "name": "СтруктураПодчиненности",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Структура подчиненности"
+ ]
+ ]
+ },
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "uuid": "7a62d031-c340-4b1e-90af-fff697a2e979"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/ssl_3_1/Configuration.json b/src/test/resources/fixtures/ssl_3_1/Configuration.json
new file mode 100644
index 000000000..280da2c92
--- /dev/null
+++ b/src/test/resources/fixtures/ssl_3_1/Configuration.json
@@ -0,0 +1,1811 @@
+{"com.github._1c_syntax.bsl.mdclasses.Configuration": {
+ "XDTOPackages": [
+ {
+ "uuid": "b8a93cce-56e4-4507-b281-5c525a466a0f",
+ "name": "ПакетXDTO1",
+ "mdoReference": {
+ "type": "XDTO_PACKAGE",
+ "mdoRef": "XDTOPackage.ПакетXDTO1",
+ "mdoRefRu": "ПакетXDTO.ПакетXDTO1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "namespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "data": {
+ "targetNamespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "imports": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "valueTypes": [
+ [
+ 278
+ ],
+ [
+ 278
+ ]
+ ],
+ "objectTypes": [
+ [
+ 737
+ ],
+ [
+ 737
+ ]
+ ],
+ "properties": [
+ {
+ "name": "performance",
+ "type": "d2p1:Performance",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ]
+ }
+ }
+ ],
+ "accountingRegisters": [
+ {
+ "uuid": "e5930f2f-15d9-48a1-ac69-379ad990b02a",
+ "name": "РегистрБухгалтерии1",
+ "mdoReference": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр бухгалтерии"
+ ],
+ [
+ "en",
+ "Accounting register"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "e88df8bd-bf97-41a4-88fc-09c84a51824b",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "902c08a9-e457-436a-b0fb-b996f0d9bb00",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "accumulationRegisters": [
+ {
+ "uuid": "8ea07f36-d671-4649-bc7a-94daa939e77f",
+ "name": "РегистрНакопления1",
+ "mdoReference": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр накопления"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "a187a281-f5cd-4e1c-8f3f-37212a840339",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "461cae93-fe90-4bbb-8f79-0963e2d39ec5",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "bots": [],
+ "briefInformation": {
+ "content": [
+ [
+ "ru",
+ "Краткая информация"
+ ],
+ [
+ "en",
+ "Short info"
+ ]
+ ]
+ },
+ "businessProcesses": [
+ {
+ "uuid": "560a32ca-028d-4b88-b6f2-6b7212bf31f8",
+ "name": "БизнесПроцесс1",
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "calculationRegisters": [
+ {
+ "uuid": "90587c7d-b950-4476-ac14-426e4a83d9c4",
+ "name": "РегистрРасчета1",
+ "mdoReference": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "86f41061-e298-4da5-8d28-489a349d55fc",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "f3e7cca5-4902-4ad5-96c7-db8336f52c6e",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": true,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "recalculations": [
+ {
+ "uuid": "16b54095-8711-4ef1-a38b-93d12f6f6e93",
+ "name": "Перерасчет",
+ "mdoReference": {
+ "type": "RECALCULATION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Recalculation.Перерасчет",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Перерасчет.Перерасчет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перерасчет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "modules": [
+ 1
+ ]
+ }
+ ]
+ }
+ ],
+ "catalogs": [
+ {
+ "uuid": "eeef463d-d5e7-42f2-ae53-10279661f59d",
+ "name": "Справочник1",
+ "mdoReference": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "342ec3c7-82d4-42bb-a5ff-8a756f110744",
+ "name": "Команда1",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Справочник1.Command.Команда1",
+ "mdoRefRu": "Справочник.Справочник1.Команда.Команда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ }
+ }
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "tabularSections": [
+ {
+ "uuid": "451202c5-b1af-4bce-a705-0b5570071588",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "templates": [
+ {
+ "uuid": "42def71b-52cc-4e34-8a08-82f0dfcd47bf",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Catalog.Справочник1.Template.Макет",
+ "mdoRefRu": "Справочник.Справочник1.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ }
+ }
+ ]
+ }
+ ],
+ "chartsOfAccounts": [
+ {
+ "uuid": "2766f353-abd2-4e7f-9a95-53f05c83f5d4",
+ "name": "ПланСчетов1",
+ "mdoReference": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "accountingFlags": [
+ {
+ "uuid": "957a5154-1e63-49e1-8e99-3893490da6f6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.AccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчета.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "extDimensionAccountingFlags": [
+ {
+ "uuid": "4f04d72a-e3e9-4e9b-96da-7d0e1ad989e6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "EXT_DIMENSION_ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.ExtDimensionAccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчетаСубконто.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ]
+ }
+ ],
+ "chartsOfCalculationTypes": [
+ {
+ "uuid": "1755c534-9ccd-49c4-9f8b-2aa066424aaa",
+ "name": "ПланВидовРасчета1",
+ "mdoReference": {
+ "type": "CHART_OF_CALCULATION_TYPES",
+ "mdoRef": "ChartOfCalculationTypes.ПланВидовРасчета1",
+ "mdoRefRu": "ПланВидовРасчета.ПланВидовРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "chartsOfCharacteristicTypes": [
+ {
+ "uuid": "f53a24c3-f1dc-43b7-8dcf-eeb8c0b7f452",
+ "name": "ПланВидовХарактеристик1",
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "children": [
+ [
+ 64
+ ],
+ [
+ 64
+ ]
+ ],
+ "commandGroups": [
+ {
+ "uuid": "9bd3b0b1-b276-4b0e-9811-44a41ebb0c7c",
+ "name": "ГруппаКоманд1",
+ "mdoReference": {
+ "type": "COMMAND_GROUP",
+ "mdoRef": "CommandGroup.ГруппаКоманд1",
+ "mdoRefRu": "ГруппаКоманд.ГруппаКоманд1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "comment": "",
+ "commonAttributes": [
+ {
+ "uuid": "d4f0c0ac-ed26-4085-a1b4-e52314b973ad",
+ "name": "ОбщийРеквизит1",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "autoUse": "USE",
+ "passwordMode": false,
+ "indexing": "DONT_INDEX",
+ "dataSeparation": "DONT_USE",
+ "dataSeparationValue": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "dataSeparationUse": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "conditionalSeparation": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "usersSeparation": "DONT_USE",
+ "authenticationSeparation": "DONT_USE",
+ "configurationExtensionsSeparation": "DONT_USE",
+ "content": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "commonCommands": [
+ {
+ "uuid": "a608f796-f58e-4f8a-b63f-272342b32f35",
+ "name": "ОбщаяКоманда1",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОбщаяКоманда1",
+ "mdoRefRu": "ОбщаяКоманда.ОбщаяКоманда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ]
+ }
+ ],
+ "commonForms": [
+ {
+ "uuid": "5ac59104-28a5-40b1-ab5b-2857fb41991a",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Форма",
+ "mdoRefRu": "ОбщаяФорма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyFormData"
+ }
+ }
+ ],
+ "commonModules": [
+ [
+ 6
+ ],
+ [
+ 6
+ ]
+ ],
+ "commonPictures": [
+ {
+ "uuid": "db84513d-2535-494b-843e-6d8931cb2f82",
+ "name": "ОбщаяКартинка1",
+ "mdoReference": {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.ОбщаяКартинка1",
+ "mdoRefRu": "ОбщаяКартинка.ОбщаяКартинка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "availabilityForChoice": false,
+ "availabilityForAppearance": false
+ }
+ ],
+ "commonTemplates": [
+ [
+ 10
+ ],
+ [
+ 10
+ ]
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationSource": "DESIGNER",
+ "constants": [
+ {
+ "uuid": "61e6a6f2-7057-4e93-96c3-7bd2559217f4",
+ "name": "Константа1",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "passwordMode": false
+ }
+ ],
+ "copyrights": {
+ "content": []
+ },
+ "dataLockControlMode": "AUTOMATIC",
+ "dataProcessors": [
+ {
+ "uuid": "a7c57ba0-75d8-487d-b8ea-ae5083d8a503",
+ "name": "Обработка1",
+ "mdoReference": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "templates": []
+ }
+ ],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [
+ {
+ "uuid": "e8c616d9-4957-48ab-a917-afb6847f6840",
+ "name": "ОпределяемыйТип1",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "detailedInformation": {
+ "content": [
+ [
+ "ru",
+ "Подробная информация"
+ ],
+ [
+ "en",
+ "Detailed info"
+ ]
+ ]
+ },
+ "documentJournals": [
+ {
+ "uuid": "c6743657-4787-40de-9a45-2493c630f626",
+ "name": "ЖурналДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "columns": [
+ {
+ "uuid": "b52d063e-5d2c-498b-a333-4957277f47e3",
+ "name": "Графа",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Column.Графа",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Колонка.Графа"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "registeredDocuments": [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ }
+ ]
+ }
+ ],
+ "documentNumerators": [
+ {
+ "uuid": "e401f835-6bfc-4cd4-8d87-5e6b6332a3f6",
+ "name": "НумераторДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documents": [
+ {
+ "uuid": "ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd",
+ "name": "Документ1",
+ "mdoReference": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "tabularSections": [
+ {
+ "uuid": "508fe2d9-44b0-4b34-a349-2b0bcae6adc4",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "templates": [],
+ "registerRecords": [
+ [
+ 4
+ ],
+ [
+ 4
+ ]
+ ]
+ }
+ ],
+ "enums": [
+ {
+ "uuid": "f11f3441-4b64-4344-b1a0-0e4b3e466e03",
+ "name": "Перечисление1",
+ "mdoReference": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": [],
+ "templates": [],
+ "enumValues": [
+ {
+ "uuid": "47a90ebe-6127-4041-bdd4-def343363004",
+ "name": "ЗначениеПеречисления1",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.Перечисление1.EnumValue.ЗначениеПеречисления1",
+ "mdoRefRu": "Перечисление.Перечисление1.ЗначениеПеречисления.ЗначениеПеречисления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ }
+ }
+ ]
+ }
+ ],
+ "eventSubscriptions": [
+ {
+ "uuid": "4da21a7b-3d07-4e6d-b91f-7e1c8ddcffcd",
+ "name": "ПодпискаНаСобытие1",
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "handler": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "ПодпискаНаСобытие1ПередЗаписью"
+ },
+ "event": "BeforeWrite"
+ }
+ ],
+ "exchangePlans": [
+ {
+ "uuid": "242cb07d-3d2b-4689-b590-d3ed23ac9d10",
+ "name": "ПланОбмена1",
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "distributedInfoBase": false,
+ "includeConfigurationExtensions": false,
+ "content": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "externalDataSources": [
+ {
+ "uuid": "2ceefe90-5a06-41ce-aac5-a3293a85946f",
+ "name": "ТекущаяСУБД",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущая СУБД"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "tables": [
+ {
+ "uuid": "318e517a-2dd6-4cdf-a502-c8cd6e429ff6",
+ "name": "ИнформацияОбОшибках",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Информация об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "ff4437b1-325e-47d7-87f7-9cf5e51460c5",
+ "name": "Command",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Command.Command",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Команда.Command"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Command"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ }
+ }
+ ],
+ "fields": [
+ [
+ 8
+ ],
+ [
+ 8
+ ]
+ ],
+ "forms": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "templates": [
+ {
+ "uuid": "28805bba-20fd-40dd-b442-1f7ca7dcf665",
+ "name": "Template",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Template.Template",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Макет.Template"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Template"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ }
+ }
+ ],
+ "dataLockControlMode": "MANAGED"
+ }
+ ]
+ }
+ ],
+ "filterCriteria": [
+ {
+ "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294",
+ "name": "КритерийОтбора1",
+ "mdoReference": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.КритерийОтбора1",
+ "mdoRefRu": "КритерийОтбора.КритерийОтбора1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": []
+ }
+ ],
+ "functionalOptions": [
+ {
+ "uuid": "d3b7fd71-6570-4047-91e0-b3df75dba08d",
+ "name": "ФункциональнаяОпция1",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTION",
+ "mdoRef": "FunctionalOption.ФункциональнаяОпция1",
+ "mdoRefRu": "ФункциональнаяОпция.ФункциональнаяОпция1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "location": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "privilegedGetMode": true,
+ "content": []
+ }
+ ],
+ "functionalOptionsParameters": [
+ {
+ "uuid": "9fae7345-6220-4e5b-b4c1-84bb921a58b7",
+ "name": "ПараметрФункциональныхОпций",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTIONS_PARAMETER",
+ "mdoRef": "FunctionalOptionsParameter.ПараметрФункциональныхОпций",
+ "mdoRefRu": "ПараметрФункциональныхОпций.ПараметрФункциональныхОпций"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметр функциональных опций"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "use": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ }
+ }
+ ],
+ "httpServices": [
+ {
+ "uuid": "3f029e1e-5a9e-4446-b74f-cbcb79b1e2fe",
+ "name": "HTTPСервис1",
+ "mdoReference": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "urlTemplates": [
+ {
+ "uuid": "4d97db36-cfbf-4f11-9647-d95677380b8f",
+ "name": "ШаблонURL",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_URL_TEMPLATE",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон URL"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "methods": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ]
+ }
+ ],
+ "informationRegisters": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "integrationServices": [],
+ "interfaces": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "languages": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Конфигурация",
+ "mdoRefRu": "Конфигурация.Конфигурация"
+ },
+ "modalityUseMode": "USE",
+ "modules": [
+ 3
+ ],
+ "name": "Конфигурация",
+ "objectAutonumerationMode": "NotAutoFree",
+ "objectBelonging": "OWN",
+ "reports": [
+ {
+ "uuid": "34d3754d-298c-4786-92f6-a487db249fc7",
+ "name": "Отчет1",
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.Отчет1",
+ "mdoRefRu": "Отчет.Отчет1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ }
+ ],
+ "roles": [
+ {
+ "uuid": "ecad0539-4f9f-491b-b0f2-f8f42d9a7c41",
+ "name": "Роль1",
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "data": {
+ "setForNewObjects": false,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ }
+ }
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "0de0c839-4427-46d9-be68-302f88ac162c",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "description": "Описание Регламентное задание 1",
+ "key": "ПроверкаАктивностиСеансаУдаленияОбъектов",
+ "use": true,
+ "predefined": true,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [
+ {
+ "uuid": "514bbcf4-7fc4-4a3e-9245-598fad397eec",
+ "name": "Последовательность1",
+ "mdoReference": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "dimensions": [
+ {
+ "uuid": "763b82dd-2fdb-4a02-a50b-3eb916c02d3d",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ]
+ }
+ ],
+ "sessionParameters": [
+ {
+ "uuid": "66844df5-823b-40f1-ab8a-b07c1cb7462f",
+ "name": "ПараметрСеанса1",
+ "mdoReference": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ПараметрСеанса1",
+ "mdoRefRu": "ПараметрСеанса.ПараметрСеанса1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "settingsStorages": [
+ {
+ "uuid": "e7a9947d-7565-4681-b75c-c9a229b45042",
+ "name": "ХранилищеНастроек1",
+ "mdoReference": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеНастроек1",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеНастроек1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "styleItems": [
+ {
+ "uuid": "68047ae8-62aa-4696-9780-d364feb3cc10",
+ "name": "ЭлементСтиля1",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ЭлементСтиля1",
+ "mdoRefRu": "ЭлементСтиля.ЭлементСтиля1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "styles": [
+ {
+ "uuid": "d6aaa851-cba7-486d-92f4-ab31b1628c6b",
+ "name": "Стиль",
+ "mdoReference": {
+ "type": "STYLE",
+ "mdoRef": "Style.Стиль",
+ "mdoRefRu": "Стиль.Стиль"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Стиль"
+ ]
+ ]
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "subsystems": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "supportVariant": "NONE",
+ "synchronousExtensionAndAddInCallUseMode": "USE_WITH_WARNINGS",
+ "synchronousPlatformExtensionAndAddInCallUseMode": "DONT_USE",
+ "synonym": {
+ "content": []
+ },
+ "tasks": [
+ {
+ "uuid": "c251fcec-ec02-4ef4-8f70-4d70db6631ea",
+ "name": "Задача1",
+ "mdoReference": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "addressingAttributes": [
+ {
+ "uuid": "bf531047-7ec7-4c74-bfdb-917138b2127c",
+ "name": "РеквизитАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.Задача1.AddressingAttribute.РеквизитАдресации",
+ "mdoRefRu": "Задача.Задача1.РеквизитАдресации.РеквизитАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "content": []
+ },
+ "toolTip": {
+ "content": []
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ }
+ }
+ ]
+ }
+ ],
+ "useManagedFormInOrdinaryApplication": true,
+ "useOrdinaryFormInManagedApplication": true,
+ "uuid": "46c7c1d0-b04d-4295-9b04-ae3207c18d29",
+ "vendor": "",
+ "version": "",
+ "webServices": [
+ {
+ "uuid": "d7f9b06b-0799-486e-adff-c45a2d5b8101",
+ "name": "WebСервис1",
+ "mdoReference": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.WebСервис1",
+ "mdoRefRu": "WebСервис.WebСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "namespace": "http://test.test",
+ "descriptorFileName": "ws1.1cws",
+ "reuseSessions": "AUTO_USE",
+ "sessionMaxAge": 20,
+ "operations": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "wsReferences": [
+ {
+ "uuid": "95b745f2-e1fa-4f94-b7f9-f3f0224fc8c7",
+ "name": "WSСсылка",
+ "mdoReference": {
+ "type": "WS_REFERENCE",
+ "mdoRef": "WSReference.WSСсылка",
+ "mdoRefRu": "WSСсылка.WSСсылка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "WSСсылка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "locationURL": "http://ya.ru"
+ }
+ ]
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/ssl_3_1/Configuration_edt.json b/src/test/resources/fixtures/ssl_3_1/Configuration_edt.json
new file mode 100644
index 000000000..611ad0035
--- /dev/null
+++ b/src/test/resources/fixtures/ssl_3_1/Configuration_edt.json
@@ -0,0 +1,1783 @@
+{"com.github._1c_syntax.bsl.mdclasses.Configuration": {
+ "XDTOPackages": [
+ {
+ "uuid": "b8a93cce-56e4-4507-b281-5c525a466a0f",
+ "name": "ПакетXDTO1",
+ "mdoReference": {
+ "type": "XDTO_PACKAGE",
+ "mdoRef": "XDTOPackage.ПакетXDTO1",
+ "mdoRefRu": "ПакетXDTO.ПакетXDTO1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "namespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "data": {
+ "targetNamespace": "http://v8.1c.ru/edi/edi_stnd/EnterpriseData/1.8",
+ "imports": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "valueTypes": [
+ [
+ 278
+ ],
+ [
+ 278
+ ]
+ ],
+ "objectTypes": [
+ [
+ 737
+ ],
+ [
+ 737
+ ]
+ ],
+ "properties": [
+ {
+ "name": "performance",
+ "type": "d2p1:Performance",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ]
+ }
+ }
+ ],
+ "accountingRegisters": [
+ {
+ "uuid": "e5930f2f-15d9-48a1-ac69-379ad990b02a",
+ "name": "РегистрБухгалтерии1",
+ "mdoReference": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "en",
+ "Accounting register"
+ ],
+ [
+ "ru",
+ "Регистр бухгалтерии"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "e88df8bd-bf97-41a4-88fc-09c84a51824b",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "902c08a9-e457-436a-b0fb-b996f0d9bb00",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCOUNTING_REGISTER",
+ "mdoRef": "AccountingRegister.РегистрБухгалтерии1",
+ "mdoRefRu": "РегистрБухгалтерии.РегистрБухгалтерии1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "accumulationRegisters": [
+ {
+ "uuid": "8ea07f36-d671-4649-bc7a-94daa939e77f",
+ "name": "РегистрНакопления1",
+ "mdoReference": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Регистр накопления"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "a187a281-f5cd-4e1c-8f3f-37212a840339",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "461cae93-fe90-4bbb-8f79-0963e2d39ec5",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ACCUMULATION_REGISTER",
+ "mdoRef": "AccumulationRegister.РегистрНакопления1",
+ "mdoRefRu": "РегистрНакопления.РегистрНакопления1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "bots": [],
+ "briefInformation": {
+ "content": [
+ [
+ "en",
+ "Short info"
+ ],
+ [
+ "ru",
+ "Краткая информация"
+ ]
+ ]
+ },
+ "businessProcesses": [
+ {
+ "uuid": "560a32ca-028d-4b88-b6f2-6b7212bf31f8",
+ "name": "БизнесПроцесс1",
+ "mdoReference": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.БизнесПроцесс1",
+ "mdoRefRu": "БизнесПроцесс.БизнесПроцесс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "calculationRegisters": [
+ {
+ "uuid": "90587c7d-b950-4476-ac14-426e4a83d9c4",
+ "name": "РегистрРасчета1",
+ "mdoReference": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "resources": [
+ {
+ "uuid": "86f41061-e298-4da5-8d28-489a349d55fc",
+ "name": "Ресурс1",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Resource.Ресурс1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Ресурс.Ресурс1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "dimensions": [
+ {
+ "uuid": "f3e7cca5-4902-4ad5-96c7-db8336f52c6e",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": true,
+ "useInTotals": true
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "recalculations": [
+ {
+ "uuid": "16b54095-8711-4ef1-a38b-93d12f6f6e93",
+ "name": "Перерасчет",
+ "mdoReference": {
+ "type": "RECALCULATION",
+ "mdoRef": "CalculationRegister.РегистрРасчета1.Recalculation.Перерасчет",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1.Перерасчет.Перерасчет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перерасчет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CALCULATION_REGISTER",
+ "mdoRef": "CalculationRegister.РегистрРасчета1",
+ "mdoRefRu": "РегистрРасчета.РегистрРасчета1"
+ },
+ "modules": [
+ 1
+ ]
+ }
+ ]
+ }
+ ],
+ "catalogs": [
+ {
+ "uuid": "eeef463d-d5e7-42f2-ae53-10279661f59d",
+ "name": "Справочник1",
+ "mdoReference": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "342ec3c7-82d4-42bb-a5ff-8a756f110744",
+ "name": "Команда1",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Catalog.Справочник1.Command.Команда1",
+ "mdoRefRu": "Справочник.Справочник1.Команда.Команда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ }
+ }
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "tabularSections": [
+ {
+ "uuid": "451202c5-b1af-4bce-a705-0b5570071588",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Catalog.Справочник1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Справочник.Справочник1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "templates": [
+ {
+ "uuid": "42def71b-52cc-4e34-8a08-82f0dfcd47bf",
+ "name": "Макет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Catalog.Справочник1.Template.Макет",
+ "mdoRefRu": "Справочник.Справочник1.Макет.Макет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Макет"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Справочник1",
+ "mdoRefRu": "Справочник.Справочник1"
+ }
+ }
+ ]
+ }
+ ],
+ "chartsOfAccounts": [
+ {
+ "uuid": "2766f353-abd2-4e7f-9a95-53f05c83f5d4",
+ "name": "ПланСчетов1",
+ "mdoReference": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "accountingFlags": [
+ {
+ "uuid": "957a5154-1e63-49e1-8e99-3893490da6f6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.AccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчета.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "extDimensionAccountingFlags": [
+ {
+ "uuid": "4f04d72a-e3e9-4e9b-96da-7d0e1ad989e6",
+ "name": "ПризнакУчета",
+ "mdoReference": {
+ "type": "EXT_DIMENSION_ACCOUNTING_FLAG",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1.ExtDimensionAccountingFlag.ПризнакУчета",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1.ПризнакУчетаСубконто.ПризнакУчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Признак учета"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "CHART_OF_ACCOUNTS",
+ "mdoRef": "ChartOfAccounts.ПланСчетов1",
+ "mdoRefRu": "ПланСчетов.ПланСчетов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ]
+ }
+ ],
+ "chartsOfCalculationTypes": [
+ {
+ "uuid": "1755c534-9ccd-49c4-9f8b-2aa066424aaa",
+ "name": "ПланВидовРасчета1",
+ "mdoReference": {
+ "type": "CHART_OF_CALCULATION_TYPES",
+ "mdoRef": "ChartOfCalculationTypes.ПланВидовРасчета1",
+ "mdoRefRu": "ПланВидовРасчета.ПланВидовРасчета1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "chartsOfCharacteristicTypes": [
+ {
+ "uuid": "f53a24c3-f1dc-43b7-8dcf-eeb8c0b7f452",
+ "name": "ПланВидовХарактеристик1",
+ "mdoReference": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ПланВидовХарактеристик1",
+ "mdoRefRu": "ПланВидовХарактеристик.ПланВидовХарактеристик1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "children": [
+ [
+ 61
+ ],
+ [
+ 61
+ ]
+ ],
+ "commandGroups": [
+ {
+ "uuid": "9bd3b0b1-b276-4b0e-9811-44a41ebb0c7c",
+ "name": "ГруппаКоманд1",
+ "mdoReference": {
+ "type": "COMMAND_GROUP",
+ "mdoRef": "CommandGroup.ГруппаКоманд1",
+ "mdoRefRu": "ГруппаКоманд.ГруппаКоманд1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "comment": "",
+ "commonAttributes": [
+ {
+ "uuid": "d4f0c0ac-ed26-4085-a1b4-e52314b973ad",
+ "name": "ОбщийРеквизит1",
+ "mdoReference": {
+ "type": "COMMON_ATTRIBUTE",
+ "mdoRef": "CommonAttribute.ОбщийРеквизит1",
+ "mdoRefRu": "ОбщийРеквизит.ОбщийРеквизит1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "autoUse": "USE",
+ "passwordMode": false,
+ "indexing": "DONT_INDEX",
+ "dataSeparation": "DONT_USE",
+ "dataSeparationValue": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "dataSeparationUse": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "conditionalSeparation": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "usersSeparation": "DONT_USE",
+ "authenticationSeparation": "DONT_USE",
+ "configurationExtensionsSeparation": "DONT_USE",
+ "content": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "commonCommands": [
+ {
+ "uuid": "a608f796-f58e-4f8a-b63f-272342b32f35",
+ "name": "ОбщаяКоманда1",
+ "mdoReference": {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ОбщаяКоманда1",
+ "mdoRefRu": "ОбщаяКоманда.ОбщаяКоманда1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ]
+ }
+ ],
+ "commonForms": [
+ {
+ "uuid": "5ac59104-28a5-40b1-ab5b-2857fb41991a",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Форма",
+ "mdoRefRu": "ОбщаяФорма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyFormData"
+ }
+ }
+ ],
+ "commonModules": [
+ [
+ 6
+ ],
+ [
+ 6
+ ]
+ ],
+ "commonPictures": [
+ {
+ "uuid": "db84513d-2535-494b-843e-6d8931cb2f82",
+ "name": "ОбщаяКартинка1",
+ "mdoReference": {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.ОбщаяКартинка1",
+ "mdoRefRu": "ОбщаяКартинка.ОбщаяКартинка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "availabilityForChoice": false,
+ "availabilityForAppearance": false
+ }
+ ],
+ "commonTemplates": [
+ [
+ 10
+ ],
+ [
+ 10
+ ]
+ ],
+ "compatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationExtensionCompatibilityMode": {
+ "minor": 3,
+ "version": 10
+ },
+ "configurationSource": "EDT",
+ "constants": [
+ {
+ "uuid": "61e6a6f2-7057-4e93-96c3-7bd2559217f4",
+ "name": "Константа1",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "passwordMode": false
+ }
+ ],
+ "copyrights": {
+ "content": []
+ },
+ "dataLockControlMode": "AUTOMATIC",
+ "dataProcessors": [
+ {
+ "uuid": "a7c57ba0-75d8-487d-b8ea-ae5083d8a503",
+ "name": "Обработка1",
+ "mdoReference": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.Обработка1",
+ "mdoRefRu": "Обработка.Обработка1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "templates": []
+ }
+ ],
+ "defaultLanguage": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "defaultRunMode": "MANAGED_APPLICATION",
+ "definedTypes": [
+ {
+ "uuid": "e8c616d9-4957-48ab-a917-afb6847f6840",
+ "name": "ОпределяемыйТип1",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ОпределяемыйТип1",
+ "mdoRefRu": "ОпределяемыйТип.ОпределяемыйТип1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "detailedInformation": {
+ "content": [
+ [
+ "en",
+ "Detailed info"
+ ],
+ [
+ "ru",
+ "Подробная информация"
+ ]
+ ]
+ },
+ "documentJournals": [
+ {
+ "uuid": "c6743657-4787-40de-9a45-2493c630f626",
+ "name": "ЖурналДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "columns": [
+ {
+ "uuid": "b52d063e-5d2c-498b-a333-4957277f47e3",
+ "name": "Графа",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1.Column.Графа",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1.Колонка.Графа"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Графа"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.ЖурналДокументов1",
+ "mdoRefRu": "ЖурналДокументов.ЖурналДокументов1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ "forms": [],
+ "templates": [],
+ "registeredDocuments": [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ }
+ ]
+ }
+ ],
+ "documentNumerators": [
+ {
+ "uuid": "e401f835-6bfc-4cd4-8d87-5e6b6332a3f6",
+ "name": "НумераторДокументов1",
+ "mdoReference": {
+ "type": "DOCUMENT_NUMERATOR",
+ "mdoRef": "DocumentNumerator.НумераторДокументов1",
+ "mdoRefRu": "Нумератор.НумераторДокументов1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "documents": [
+ {
+ "uuid": "ce4fb46b-4af7-493e-9fcb-76ad8c4f8acd",
+ "name": "Документ1",
+ "mdoReference": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "attributes": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "tabularSections": [
+ {
+ "uuid": "508fe2d9-44b0-4b34-a349-2b0bcae6adc4",
+ "name": "ТабличнаяЧасть1",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Документ1.TabularSection.ТабличнаяЧасть1",
+ "mdoRefRu": "Документ.Документ1.ТабличнаяЧасть.ТабличнаяЧасть1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Документ1",
+ "mdoRefRu": "Документ.Документ1"
+ },
+ "attributes": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "forms": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "templates": [],
+ "registerRecords": [
+ [
+ 4
+ ],
+ [
+ 4
+ ]
+ ]
+ }
+ ],
+ "enums": [
+ {
+ "uuid": "f11f3441-4b64-4344-b1a0-0e4b3e466e03",
+ "name": "Перечисление1",
+ "mdoReference": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": [],
+ "templates": [],
+ "enumValues": [
+ {
+ "uuid": "47a90ebe-6127-4041-bdd4-def343363004",
+ "name": "ЗначениеПеречисления1",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.Перечисление1.EnumValue.ЗначениеПеречисления1",
+ "mdoRefRu": "Перечисление.Перечисление1.ЗначениеПеречисления.ЗначениеПеречисления1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "ENUM",
+ "mdoRef": "Enum.Перечисление1",
+ "mdoRefRu": "Перечисление.Перечисление1"
+ }
+ }
+ ]
+ }
+ ],
+ "eventSubscriptions": [
+ {
+ "uuid": "4da21a7b-3d07-4e6d-b91f-7e1c8ddcffcd",
+ "name": "ПодпискаНаСобытие1",
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ПодпискаНаСобытие1",
+ "mdoRefRu": "ПодпискаНаСобытие.ПодпискаНаСобытие1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "handler": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.ПодпискаНаСобытие1ПередЗаписью",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "ПодпискаНаСобытие1ПередЗаписью"
+ },
+ "event": "BeforeWrite"
+ }
+ ],
+ "exchangePlans": [
+ {
+ "uuid": "242cb07d-3d2b-4689-b590-d3ed23ac9d10",
+ "name": "ПланОбмена1",
+ "mdoReference": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ПланОбмена1",
+ "mdoRefRu": "ПланОбмена.ПланОбмена1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "distributedInfoBase": false,
+ "includeConfigurationExtensions": false,
+ "content": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "externalDataSources": [
+ {
+ "uuid": "2ceefe90-5a06-41ce-aac5-a3293a85946f",
+ "name": "ТекущаяСУБД",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущая СУБД"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "tables": [
+ {
+ "uuid": "318e517a-2dd6-4cdf-a502-c8cd6e429ff6",
+ "name": "ИнформацияОбОшибках",
+ "mdoReference": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Информация об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД"
+ },
+ "modules": [
+ 2
+ ],
+ "commands": [
+ {
+ "uuid": "ff4437b1-325e-47d7-87f7-9cf5e51460c5",
+ "name": "Command",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Command.Command",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Команда.Command"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Command"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ }
+ }
+ ],
+ "fields": [
+ [
+ 8
+ ],
+ [
+ 8
+ ]
+ ],
+ "forms": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "templates": [
+ {
+ "uuid": "28805bba-20fd-40dd-b442-1f7ca7dcf665",
+ "name": "Template",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках.Template.Template",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках.Макет.Template"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Template"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "modules": [],
+ "templateType": "SPREADSHEET_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "type": "EXTERNAL_DATA_SOURCE_TABLE",
+ "mdoRef": "ExternalDataSource.ТекущаяСУБД.Table.ИнформацияОбОшибках",
+ "mdoRefRu": "ВнешнийИсточникДанных.ТекущаяСУБД.Таблица.ИнформацияОбОшибках"
+ }
+ }
+ ],
+ "dataLockControlMode": "MANAGED"
+ }
+ ]
+ }
+ ],
+ "filterCriteria": [
+ {
+ "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294",
+ "name": "КритерийОтбора1",
+ "mdoReference": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.КритерийОтбора1",
+ "mdoRefRu": "КритерийОтбора.КритерийОтбора1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "commands": [],
+ "forms": []
+ }
+ ],
+ "functionalOptions": [
+ {
+ "uuid": "d3b7fd71-6570-4047-91e0-b3df75dba08d",
+ "name": "ФункциональнаяОпция1",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTION",
+ "mdoRef": "FunctionalOption.ФункциональнаяОпция1",
+ "mdoRefRu": "ФункциональнаяОпция.ФункциональнаяОпция1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "location": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.Константа1",
+ "mdoRefRu": "Константа.Константа1"
+ },
+ "privilegedGetMode": true,
+ "content": []
+ }
+ ],
+ "functionalOptionsParameters": [
+ {
+ "uuid": "9fae7345-6220-4e5b-b4c1-84bb921a58b7",
+ "name": "ПараметрФункциональныхОпций",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTIONS_PARAMETER",
+ "mdoRef": "FunctionalOptionsParameter.ПараметрФункциональныхОпций",
+ "mdoRefRu": "ПараметрФункциональныхОпций.ПараметрФункциональныхОпций"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметр функциональных опций"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "use": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.РегистрСведений1.Dimension.Измерение1",
+ "mdoRefRu": "РегистрСведений.РегистрСведений1.Измерение.Измерение1"
+ }
+ }
+ ],
+ "httpServices": [
+ {
+ "uuid": "3f029e1e-5a9e-4446-b74f-cbcb79b1e2fe",
+ "name": "HTTPСервис1",
+ "mdoReference": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "urlTemplates": [
+ {
+ "uuid": "4d97db36-cfbf-4f11-9647-d95677380b8f",
+ "name": "ШаблонURL",
+ "mdoReference": {
+ "type": "HTTP_SERVICE_URL_TEMPLATE",
+ "mdoRef": "HTTPService.HTTPСервис1.URLTemplate.ШаблонURL",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1.ШаблонURL.ШаблонURL"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон URL"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "HTTP_SERVICE",
+ "mdoRef": "HTTPService.HTTPСервис1",
+ "mdoRefRu": "HTTPСервис.HTTPСервис1"
+ },
+ "methods": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ]
+ }
+ ],
+ "informationRegisters": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "integrationServices": [],
+ "interfaces": [],
+ "languages": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ],
+ "mdoReference": {
+ "type": "CONFIGURATION",
+ "mdoRef": "Configuration.Конфигурация",
+ "mdoRefRu": "Конфигурация.Конфигурация"
+ },
+ "modalityUseMode": "USE",
+ "modules": [
+ 3
+ ],
+ "name": "Конфигурация",
+ "objectAutonumerationMode": "NotAutoFree",
+ "objectBelonging": "OWN",
+ "reports": [
+ {
+ "uuid": "34d3754d-298c-4786-92f6-a487db249fc7",
+ "name": "Отчет1",
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.Отчет1",
+ "mdoRefRu": "Отчет.Отчет1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 2
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ }
+ ],
+ "roles": [
+ {
+ "uuid": "ecad0539-4f9f-491b-b0f2-f8f42d9a7c41",
+ "name": "Роль1",
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.Роль1",
+ "mdoRefRu": "Роль.Роль1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "data": {
+ "setForNewObjects": false,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ 3
+ ],
+ [
+ 3
+ ]
+ ]
+ }
+ }
+ ],
+ "scheduledJobs": [
+ {
+ "uuid": "0de0c839-4427-46d9-be68-302f88ac162c",
+ "name": "РегламентноеЗадание1",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.РегламентноеЗадание1",
+ "mdoRefRu": "РегламентноеЗадание.РегламентноеЗадание1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "methodName": {
+ "methodPath": "CommonModule.ПростойОбщийМодуль.РегламентноеЗадание1",
+ "moduleName": "ПростойОбщийМодуль",
+ "methodName": "РегламентноеЗадание1"
+ },
+ "description": "Описание Регламентное задание 1",
+ "key": "ПроверкаАктивностиСеансаУдаленияОбъектов",
+ "use": true,
+ "predefined": true,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10
+ }
+ ],
+ "scriptVariant": "RUSSIAN",
+ "sequences": [
+ {
+ "uuid": "514bbcf4-7fc4-4a3e-9245-598fad397eec",
+ "name": "Последовательность1",
+ "mdoReference": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "dimensions": [
+ {
+ "uuid": "763b82dd-2fdb-4a02-a50b-3eb916c02d3d",
+ "name": "Измерение1",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "Sequence.Последовательность1.Dimension.Измерение1",
+ "mdoRefRu": "Последовательность.Последовательность1.Измерение.Измерение1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "SEQUENCE",
+ "mdoRef": "Sequence.Последовательность1",
+ "mdoRefRu": "Последовательность.Последовательность1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ]
+ }
+ ],
+ "sessionParameters": [
+ {
+ "uuid": "66844df5-823b-40f1-ab8a-b07c1cb7462f",
+ "name": "ПараметрСеанса1",
+ "mdoReference": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ПараметрСеанса1",
+ "mdoRefRu": "ПараметрСеанса.ПараметрСеанса1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "settingsStorages": [
+ {
+ "uuid": "e7a9947d-7565-4681-b75c-c9a229b45042",
+ "name": "ХранилищеНастроек1",
+ "mdoReference": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеНастроек1",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеНастроек1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "forms": [],
+ "templates": []
+ }
+ ],
+ "styleItems": [
+ {
+ "uuid": "68047ae8-62aa-4696-9780-d364feb3cc10",
+ "name": "ЭлементСтиля1",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ЭлементСтиля1",
+ "mdoRefRu": "ЭлементСтиля.ЭлементСтиля1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE"
+ }
+ ],
+ "styles": [],
+ "subsystems": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ],
+ "supportVariant": "NONE",
+ "synchronousExtensionAndAddInCallUseMode": "USE_WITH_WARNINGS",
+ "synchronousPlatformExtensionAndAddInCallUseMode": "DONT_USE",
+ "synonym": {
+ "content": []
+ },
+ "tasks": [
+ {
+ "uuid": "c251fcec-ec02-4ef4-8f70-4d70db6631ea",
+ "name": "Задача1",
+ "mdoReference": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 0
+ ],
+ "commands": [],
+ "attributes": [],
+ "tabularSections": [],
+ "forms": [],
+ "templates": [],
+ "addressingAttributes": [
+ {
+ "uuid": "bf531047-7ec7-4c74-bfdb-917138b2127c",
+ "name": "РеквизитАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.Задача1.AddressingAttribute.РеквизитАдресации",
+ "mdoRefRu": "Задача.Задача1.РеквизитАдресации.РеквизитАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Реквизит адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "owner": {
+ "type": "TASK",
+ "mdoRef": "Task.Задача1",
+ "mdoRefRu": "Задача.Задача1"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "content": []
+ },
+ "toolTip": {
+ "content": []
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ }
+ }
+ ]
+ }
+ ],
+ "useManagedFormInOrdinaryApplication": true,
+ "useOrdinaryFormInManagedApplication": true,
+ "uuid": "46c7c1d0-b04d-4295-9b04-ae3207c18d29",
+ "vendor": "",
+ "version": "",
+ "webServices": [
+ {
+ "uuid": "d7f9b06b-0799-486e-adff-c45a2d5b8101",
+ "name": "WebСервис1",
+ "mdoReference": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.WebСервис1",
+ "mdoRefRu": "WebСервис.WebСервис1"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": []
+ },
+ "supportVariant": "NONE",
+ "modules": [
+ 1
+ ],
+ "namespace": "http://test.test",
+ "descriptorFileName": "ws1.1cws",
+ "reuseSessions": "AUTO_USE",
+ "sessionMaxAge": 20,
+ "operations": [
+ [
+ 2
+ ],
+ [
+ 2
+ ]
+ ]
+ }
+ ],
+ "wsReferences": [
+ {
+ "uuid": "95b745f2-e1fa-4f94-b7f9-f3f0224fc8c7",
+ "name": "WSСсылка",
+ "mdoReference": {
+ "type": "WS_REFERENCE",
+ "mdoRef": "WSReference.WSСсылка",
+ "mdoRefRu": "WSСсылка.WSСсылка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "WSСсылка"
+ ]
+ ]
+ },
+ "supportVariant": "NONE",
+ "locationURL": "http://ya.ru"
+ }
+ ]
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Constants.\320\227\320\260\320\263\320\276\320\273\320\276\320\262\320\276\320\272\320\241\320\270\321\201\321\202\320\265\320\274\321\213.json" "b/src/test/resources/fixtures/ssl_3_1/Constants.\320\227\320\260\320\263\320\276\320\273\320\276\320\262\320\276\320\272\320\241\320\270\321\201\321\202\320\265\320\274\321\213.json"
new file mode 100644
index 000000000..47eb0d001
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Constants.\320\227\320\260\320\263\320\276\320\273\320\276\320\262\320\276\320\272\320\241\320\270\321\201\321\202\320\265\320\274\321\213.json"
@@ -0,0 +1,22 @@
+{"com.github._1c_syntax.bsl.mdo.Constant": {
+ "comment": "",
+ "mdoReference": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗаголовокСистемы",
+ "mdoRefRu": "Константа.ЗаголовокСистемы"
+ },
+ "modules": [],
+ "name": "ЗаголовокСистемы",
+ "objectBelonging": "OWN",
+ "passwordMode": false,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Заголовок программы"
+ ]
+ ]
+ },
+ "uuid": "a1875d63-4303-46f1-bdea-fc529b5891f3"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json" "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json"
new file mode 100644
index 000000000..02af332e3
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202.json"
@@ -0,0 +1,1703 @@
+{"com.github._1c_syntax.bsl.mdo.DataProcessor": {
+ "allAttributes": [
+ [
+ {
+ "uuid": "62f97480-7d4a-48f3-9d1d-612909b242c9",
+ "name": "НачалоПериодаЗагрузки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Attribute.НачалоПериодаЗагрузки",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Реквизит.НачалоПериодаЗагрузки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Начало периода загрузки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2b4f6e2f-6cc4-4c7c-98a6-786f3793366b",
+ "name": "ОкончаниеПериодаЗагрузки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Attribute.ОкончаниеПериодаЗагрузки",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Реквизит.ОкончаниеПериодаЗагрузки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Окончание периода загрузки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "6fcd2a3a-4d66-40e3-bde0-5c274b43783f",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.Форма",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/Форма/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/Форма/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 32,
+ "name": "ФормаЗагрузитьКурсыВалют",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 42,
+ "name": "КоманднаяПанельЛевая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель левая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 2,
+ "name": "НачалоПериода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "С"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.НачалоПериодаЗагрузки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "ОкончаниеПериода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "По"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ОкончаниеПериодаЗагрузки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 44,
+ "name": "КоманднаяПанельПравая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель правая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 35,
+ "name": "ФормаВыбратьВсеВалюты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 36,
+ "name": "ФормаСнятьВыбор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 63,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 65,
+ "name": "СтраницаСписокВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница список валют"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 7,
+ "name": "СписокВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валют"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 33,
+ "name": "Загружать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Загружать",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 9,
+ "name": "КодВалюты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цифр. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.КодВалюты",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 40,
+ "name": "СписокВалютСимвольныйКод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Симв. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.СимвольныйКод",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 38,
+ "name": "СписокВалютПредставление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валюта"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 11,
+ "name": "ДатаКурса",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.ДатаКурса",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "Курс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Курс",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 13,
+ "name": "Кратность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Кратность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 84,
+ "name": "СписокВалютОтступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Отступ",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 67,
+ "name": "СтраницаВыполняетсяЗагрузкаКурсов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница выполняется загрузка курсов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 69,
+ "name": "КартинкаДлительнаяОперация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка длительная операция"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 72,
+ "name": "НадписьВыполняетсяЗагрузкаКурсовВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполняется загрузка курсов валют..."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "СообщитьЧтоКурсыАктуальны",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "569047c2-0879-4fba-a814-44812d21043b",
+ "name": "СообщенияОбОшибках",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.СообщенияОбОшибках",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.СообщенияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сообщения об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/СообщенияОбОшибках/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/СообщенияОбОшибках/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подробнее"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Текст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Текст",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Текст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Текст"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "0c3c4494-c037-431e-9eeb-9b6cfd7372c3",
+ "name": "ПараметрыПрописиВалюты_ru",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.ПараметрыПрописиВалюты_ru",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.ПараметрыПрописиВалюты_ru"
+ },
+ "objectBelonging": "OWN",
+ "comment": "АПК:58",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметры прописи валюты на русском языке"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПараметрыПрописиВалюты_ru/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПараметрыПрописиВалюты_ru/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 9,
+ "name": "СклонениеЦелойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "ЦелаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Род"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧастьРод",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "ЦелаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧастьОдин",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ЦелаяЧатьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Два"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧатьДва",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "ПолеПрописи3наРусском",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пять"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧастьПять",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 55,
+ "name": "ГруппаПараметрыДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 14,
+ "name": "СклонениеДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Склонение дробной части"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ДробнаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Род"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьРод",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ДробнаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьОдин",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "ДробнаяЧастьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Два"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьДва",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 15,
+ "name": "ДробнаяЧастьПять",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пять"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьПять",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 56,
+ "name": "ГруппаЧислоРазрядовДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Число разрядов дробной части"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "ДлинаДробнойЧасти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДлинаДробнойЧасти",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 61,
+ "name": "ГруппаПримерПрописи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пример прописи суммы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 59,
+ "name": "СуммаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сумма"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СуммаЧисло",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 62,
+ "name": "СуммаПрописью",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "СуммаПрописью",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "ЦелаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть один"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ЦелаяЧатьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая чать два"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ЦелаяЧастьПять",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть пять"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ЦелаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть род"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ДробнаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть один"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ДробнаяЧастьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть два"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ДробнаяЧастьПять",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть пять"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ДробнаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть род"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ДлинаДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Число разрядов дробной части"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ЗависимыйКурсВалют",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 12,
+ "name": "СуммаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сумма число"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "СуммаПрописью",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сумма прописью"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "80512d95-5458-4934-98ae-a7b58099196b",
+ "name": "ПодборВалютИзКлассификатора",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.ПодборВалютИзКлассификатора",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.ПодборВалютИзКлассификатора"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подбор валют из классификатора"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПодборВалютИзКлассификатора/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПодборВалютИзКлассификатора/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "СписокВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валют"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Валюты",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "КодВалюты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цифр. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Валюты.КодВалютыЦифровой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "КраткоеНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Симв. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Валюты.КодВалютыБуквенный",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Валюты.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "СтраныИТерритории",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Валюты.СтраныИТерритории",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 15,
+ "name": "Загружается",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Валюты.Загружается",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Валюты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валюты"
+ ]
+ ]
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DataProcessors/ЗагрузкаКурсовВалют/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЗагрузкаКурсовВалют",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Загрузка курсов валют"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "3068be84-a401-4701-8ac9-411fae130f84",
+ "name": "СписокВалют",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Список валют"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "957394a7-e5b8-47fc-8680-1e71efe2be7d",
+ "name": "КодВалюты",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.КодВалюты",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.КодВалюты"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Код валюты"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ba49a9e4-6ec1-43ff-92cd-9dbf221bbf09",
+ "name": "Валюта",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Валюта",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Валюта"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Валюта"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "4f25ef45-c8d9-401d-b0e8-2217ac310f04",
+ "name": "ДатаКурса",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.ДатаКурса",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.ДатаКурса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата курса"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "504ca240-b5ae-433e-ae5f-d818263eea23",
+ "name": "Курс",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Курс",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Курс"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Курс"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "32461819-9437-417d-8d1e-851c9a2dcee2",
+ "name": "Кратность",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Кратность",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Кратность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Кратность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "74228950-8a4b-4dd6-a053-8650de202521",
+ "name": "Загружать",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Загружать",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Загружать"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Загружать"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6b9ce91e-08b9-4972-9878-1724c67b68ec",
+ "name": "Представление",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Представление",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Представление"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Представление"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "640814f2-6082-475e-8006-25fd5b24afdb",
+ "name": "СимвольныйКод",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.СимвольныйКод",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.СимвольныйКод"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Символьный код"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "6f2354cd-4a34-4921-96bb-b786486f85cf",
+ "name": "ОбщероссийскийКлассификаторВалют",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Template.ОбщероссийскийКлассификаторВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Макет.ОбщероссийскийКлассификаторВалют"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общероссийский классификатор валют"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "TEXT_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "f36150de-33af-4410-8a4c-8c9f4b545793"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json" "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json"
new file mode 100644
index 000000000..5b12abc9d
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/DataProcessors.\320\227\320\260\320\263\321\200\321\203\320\267\320\272\320\260\320\232\321\203\321\200\321\201\320\276\320\262\320\222\320\260\320\273\321\216\321\202_edt.json"
@@ -0,0 +1,1703 @@
+{"com.github._1c_syntax.bsl.mdo.DataProcessor": {
+ "allAttributes": [
+ [
+ {
+ "uuid": "62f97480-7d4a-48f3-9d1d-612909b242c9",
+ "name": "НачалоПериодаЗагрузки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Attribute.НачалоПериодаЗагрузки",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Реквизит.НачалоПериодаЗагрузки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Начало периода загрузки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2b4f6e2f-6cc4-4c7c-98a6-786f3793366b",
+ "name": "ОкончаниеПериодаЗагрузки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Attribute.ОкончаниеПериодаЗагрузки",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Реквизит.ОкончаниеПериодаЗагрузки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Окончание периода загрузки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "6fcd2a3a-4d66-40e3-bde0-5c274b43783f",
+ "name": "Форма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.Форма",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.Форма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/Форма/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/Форма/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 32,
+ "name": "ФормаЗагрузитьКурсыВалют",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 42,
+ "name": "КоманднаяПанельЛевая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель левая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 2,
+ "name": "НачалоПериода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "С"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.НачалоПериодаЗагрузки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "ОкончаниеПериода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "По"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ОкончаниеПериодаЗагрузки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 44,
+ "name": "КоманднаяПанельПравая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель правая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 35,
+ "name": "ФормаВыбратьВсеВалюты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 36,
+ "name": "ФормаСнятьВыбор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 63,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 65,
+ "name": "СтраницаСписокВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница список валют"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 7,
+ "name": "СписокВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валют"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 33,
+ "name": "Загружать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Загружать",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 9,
+ "name": "КодВалюты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цифр. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.КодВалюты",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 40,
+ "name": "СписокВалютСимвольныйКод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Симв. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.СимвольныйКод",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 38,
+ "name": "СписокВалютПредставление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валюта"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 11,
+ "name": "ДатаКурса",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.ДатаКурса",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "Курс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Курс",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 13,
+ "name": "Кратность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Кратность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 84,
+ "name": "СписокВалютОтступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СписокВалют.Отступ",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 67,
+ "name": "СтраницаВыполняетсяЗагрузкаКурсов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница выполняется загрузка курсов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 69,
+ "name": "КартинкаДлительнаяОперация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка длительная операция"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 72,
+ "name": "НадписьВыполняетсяЗагрузкаКурсовВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполняется загрузка курсов валют..."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "СообщитьЧтоКурсыАктуальны",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "569047c2-0879-4fba-a814-44812d21043b",
+ "name": "СообщенияОбОшибках",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.СообщенияОбОшибках",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.СообщенияОбОшибках"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сообщения об ошибках"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/СообщенияОбОшибках/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/СообщенияОбОшибках/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подробнее"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Текст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Текст",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Текст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Текст"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "0c3c4494-c037-431e-9eeb-9b6cfd7372c3",
+ "name": "ПараметрыПрописиВалюты_ru",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.ПараметрыПрописиВалюты_ru",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.ПараметрыПрописиВалюты_ru"
+ },
+ "objectBelonging": "OWN",
+ "comment": "АПК:58",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметры прописи валюты на русском языке"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПараметрыПрописиВалюты_ru/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПараметрыПрописиВалюты_ru/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 9,
+ "name": "СклонениеЦелойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "ЦелаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Род"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧастьРод",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "ЦелаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧастьОдин",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ЦелаяЧатьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Два"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧатьДва",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "ПолеПрописи3наРусском",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пять"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ЦелаяЧастьПять",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 55,
+ "name": "ГруппаПараметрыДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 14,
+ "name": "СклонениеДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Склонение дробной части"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ДробнаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Род"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьРод",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ДробнаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьОдин",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "ДробнаяЧастьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Два"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьДва",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 15,
+ "name": "ДробнаяЧастьПять",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пять"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДробнаяЧастьПять",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 56,
+ "name": "ГруппаЧислоРазрядовДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Число разрядов дробной части"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "ДлинаДробнойЧасти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДлинаДробнойЧасти",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 61,
+ "name": "ГруппаПримерПрописи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пример прописи суммы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 59,
+ "name": "СуммаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сумма"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СуммаЧисло",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 62,
+ "name": "СуммаПрописью",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "СуммаПрописью",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "ЦелаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть один"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ЦелаяЧатьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая чать два"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ЦелаяЧастьПять",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть пять"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ЦелаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Целая часть род"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ДробнаяЧастьОдин",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть один"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ДробнаяЧастьДва",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть два"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ДробнаяЧастьПять",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть пять"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ДробнаяЧастьРод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дробная часть род"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ДлинаДробнойЧасти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Число разрядов дробной части"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ЗависимыйКурсВалют",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 12,
+ "name": "СуммаЧисло",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сумма число"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "СуммаПрописью",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сумма прописью"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "80512d95-5458-4934-98ae-a7b58099196b",
+ "name": "ПодборВалютИзКлассификатора",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Form.ПодборВалютИзКлассификатора",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Форма.ПодборВалютИзКлассификатора"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подбор валют из классификатора"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПодборВалютИзКлассификатора/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/Forms/ПодборВалютИзКлассификатора/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "",
+ "id": 1,
+ "name": "СписокВалют",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валют"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Валюты",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "КодВалюты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Цифр. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Валюты.КодВалютыЦифровой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "КраткоеНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Симв. код"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Валюты.КодВалютыБуквенный",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Валюты.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "СтраныИТерритории",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Валюты.СтраныИТерритории",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 15,
+ "name": "Загружается",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Валюты.Загружается",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Валюты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Валюты"
+ ]
+ ]
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DataProcessors/ЗагрузкаКурсовВалют/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЗагрузкаКурсовВалют",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Загрузка курсов валют"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "3068be84-a401-4701-8ac9-411fae130f84",
+ "name": "СписокВалют",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Список валют"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "957394a7-e5b8-47fc-8680-1e71efe2be7d",
+ "name": "КодВалюты",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.КодВалюты",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.КодВалюты"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Код валюты"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ba49a9e4-6ec1-43ff-92cd-9dbf221bbf09",
+ "name": "Валюта",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Валюта",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Валюта"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Валюта"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "4f25ef45-c8d9-401d-b0e8-2217ac310f04",
+ "name": "ДатаКурса",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.ДатаКурса",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.ДатаКурса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата курса"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "504ca240-b5ae-433e-ae5f-d818263eea23",
+ "name": "Курс",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Курс",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Курс"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Курс"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "32461819-9437-417d-8d1e-851c9a2dcee2",
+ "name": "Кратность",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Кратность",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Кратность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Кратность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "74228950-8a4b-4dd6-a053-8650de202521",
+ "name": "Загружать",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Загружать",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Загружать"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Загружать"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "6b9ce91e-08b9-4972-9878-1724c67b68ec",
+ "name": "Представление",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.Представление",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.Представление"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Представление"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "640814f2-6082-475e-8006-25fd5b24afdb",
+ "name": "СимвольныйКод",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.TabularSection.СписокВалют.Attribute.СимвольныйКод",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.ТабличнаяЧасть.СписокВалют.Реквизит.СимвольныйКод"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Символьный код"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [
+ {
+ "uuid": "6f2354cd-4a34-4921-96bb-b786486f85cf",
+ "name": "ОбщероссийскийКлассификаторВалют",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют.Template.ОбщероссийскийКлассификаторВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют.Макет.ОбщероссийскийКлассификаторВалют"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Общероссийский классификатор валют"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "TEXT_DOCUMENT",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.EmptyTemplateData"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ }
+ }
+ ],
+ "uuid": "f36150de-33af-4410-8a4c-8c9f4b545793"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/DefinedTypes.\320\222\320\273\320\260\320\264\320\265\320\273\320\265\321\206\320\244\320\260\320\271\320\273\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/DefinedTypes.\320\222\320\273\320\260\320\264\320\265\320\273\320\265\321\206\320\244\320\260\320\271\320\273\320\276\320\262.json"
new file mode 100644
index 000000000..b774465e0
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/DefinedTypes.\320\222\320\273\320\260\320\264\320\265\320\273\320\265\321\206\320\244\320\260\320\271\320\273\320\276\320\262.json"
@@ -0,0 +1,20 @@
+{"com.github._1c_syntax.bsl.mdo.DefinedType": {
+ "comment": "",
+ "mdoReference": {
+ "type": "DEFINED_TYPE",
+ "mdoRef": "DefinedType.ВладелецФайлов",
+ "mdoRefRu": "ОпределяемыйТип.ВладелецФайлов"
+ },
+ "name": "ВладелецФайлов",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Владелец файлов"
+ ]
+ ]
+ },
+ "uuid": "ae698468-f42a-4400-aee6-fd849740e634"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json"
new file mode 100644
index 000000000..c2f66bc38
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217.json"
@@ -0,0 +1,6309 @@
+{"com.github._1c_syntax.bsl.mdo.DocumentJournal": {
+ "allAttributes": [
+ {
+ "uuid": "b5b94d94-25f7-4cfa-b1e9-6009fb848763",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Автор",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.Взаимодействия",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "a2accf54-5966-42e8-ab2e-e56e415963ee",
+ "name": "Входящий",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Входящий",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Входящий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Входящий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "d8eb5329-5900-4b5d-b45e-458513dddfef",
+ "name": "Ответственный",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Ответственный",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Ответственный"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "6d521e58-24a3-4f19-b4b0-dff84f7ca86b",
+ "name": "Тема",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Тема",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Тема"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тема"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "8c413fa5-9e24-4b81-aa55-0e78c5e3e20f",
+ "name": "Участники",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Участники",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Участники"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Участники"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "a4322f22-7de0-4018-8e06-9f1aa7cf0c07",
+ "name": "СтатусИсходящегоПисьма",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.СтатусИсходящегоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.СтатусИсходящегоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Статус исходящего письма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "eaaed107-69d4-4963-be83-74519e331715",
+ "name": "УчетнаяЗапись",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.УчетнаяЗапись",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.УчетнаяЗапись"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Учетная запись"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "38cddf96-8703-4396-8c73-47fb22828a48",
+ "name": "ЕстьВложения",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ЕстьВложения",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ЕстьВложения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Есть вложения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "2c2cb793-0177-4983-91ca-9c292c5b10f1",
+ "name": "ВзаимодействиеОснование",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ВзаимодействиеОснование",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ВзаимодействиеОснование"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействие основание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "2a2e7f51-a4e5-48ec-b969-b1fca18ba9b5",
+ "name": "ПолученоОтправлено",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ПолученоОтправлено",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ПолученоОтправлено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Получено отправлено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "221fa473-3327-44e6-a033-6fdfd2be713c",
+ "name": "Размер",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Размер",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Размер"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Размер"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "7a5973f0-7e29-44af-8e7b-70af71f704a4",
+ "name": "Важность",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Важность",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Важность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX"
+ },
+ {
+ "uuid": "2b2bf0f7-0946-4492-bba0-27f007a70e64",
+ "name": "ДатаКогдаОтправить",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ДатаКогдаОтправить",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ДатаКогдаОтправить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата когда отправить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "22c9a703-5ed3-4156-8fa6-476b1c1452f1",
+ "name": "ДатаАктуальностиОтправки",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ДатаАктуальностиОтправки",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ДатаАктуальностиОтправки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата актуальности отправки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "8be10d88-8c37-4444-9c89-6cbbe9913bda",
+ "name": "ИдентификаторСообщения",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ИдентификаторСообщения",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ИдентификаторСообщения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор сообщения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX"
+ }
+ ],
+ "columns": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[8]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[9]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[10]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[11]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[12]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[13]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[14]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[15]"
+ }
+ ],
+ []
+ ],
+ "commands": [
+ [
+ {
+ "uuid": "314b0da2-24d3-48cc-8532-d36c45eb3bf8",
+ "name": "ВзаимодействияПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ВзаимодействияПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ВзаимодействияПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ВзаимодействияПоКонтакту/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "2e3ac3fb-9f0e-463f-95c2-9f661ce2e015",
+ "name": "ВзаимодействияПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ВзаимодействияПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ВзаимодействияПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ВзаимодействияПоПредмету/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "4077e700-ec20-4afa-8155-bf7e516a70cb",
+ "name": "ЗапланироватьВзаимодействиеПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВзаимодействиеПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВзаимодействиеПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать взаимодействие"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВзаимодействиеПоКонтакту/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "5198c6db-2100-4902-82c8-85c8ea555e78",
+ "name": "ЗапланироватьВзаимодействиеПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВзаимодействиеПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВзаимодействиеПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать взаимодействие"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВзаимодействиеПоПредмету/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "b99f2a63-54e8-490b-a0a4-1941fbc38b3f",
+ "name": "ЗапланироватьВстречуПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВстречуПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВстречуПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать встречу"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВстречуПоКонтакту/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "f0b1e9f4-2e07-44e6-88d2-c11457135781",
+ "name": "ЗапланироватьВстречуПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВстречуПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВстречуПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать встречу"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВстречуПоПредмету/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "e010c0f9-f770-4fdc-8607-50838c0262ef",
+ "name": "НаписатьSMSПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьSMSПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьSMSПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать SMS"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/НаписатьSMSПоКонтакту/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[7]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "f935399f-3554-4c08-b0a6-eba13074e1b7",
+ "name": "НаписатьSMSПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьSMSПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьSMSПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать SMS"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/НаписатьSMSПоПредмету/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[8]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "10008125-3aeb-4912-8ad6-d92d283ea09a",
+ "name": "НаписатьЭлектронноеПисьмоПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьЭлектронноеПисьмоПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьЭлектронноеПисьмоПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать электронное письмо"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/НаписатьЭлектронноеПисьмоПоКонтакту/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[9]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "765f9584-fefa-4695-b130-dd54c3b0d79d",
+ "name": "НаписатьЭлектронноеПисьмоПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьЭлектронноеПисьмоПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьЭлектронноеПисьмоПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать электронное письмо"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/НаписатьЭлектронноеПисьмоПоПредмету/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[10]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "dd050ca0-8335-4654-ab5c-7babcb4824ef",
+ "name": "НастройкиРаботыСПочтой",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НастройкиРаботыСПочтой",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НастройкиРаботыСПочтой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Настройки работы с почтой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/НастройкиРаботыСПочтой/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[11]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "706cbf55-626d-4cab-b589-a2464368f6c1",
+ "name": "ПечатьЭлектронногоПисьма",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ПечатьЭлектронногоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ПечатьЭлектронногоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Печать"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ПечатьЭлектронногоПисьма/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[12]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "d22a0a50-220d-459e-a23a-39730a1e67c4",
+ "name": "ПозвонитьПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ПозвонитьПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ПозвонитьПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Позвонить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ПозвонитьПоКонтакту/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[13]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "2c1c9284-ba8b-4282-a89c-429f02ea41f6",
+ "name": "ПозвонитьПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ПозвонитьПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ПозвонитьПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Позвонить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/ПозвонитьПоПредмету/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[14]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "8c241467-76f7-4161-a8a1-5da4a6576b75",
+ "name": "СохранитьПисьмоНаДиск",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.СохранитьПисьмоНаДиск",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.СохранитьПисьмоНаДиск"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сохранить письмо на диск"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Commands/СохранитьПисьмоНаДиск/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[15]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ }
+ ],
+ []
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "27089e8e-2c75-431c-b808-5d4dcba3cdca",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ФормаСписка",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "NavigationProcessing",
+ "name": "ОбработкаПерехода"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 926,
+ "name": "ПредупреждениеОНеотправленныхПисьмах",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 928,
+ "name": "ПредупреждениеОНеотправленныхПисьмахКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 931,
+ "name": "ПредупреждениеОНеотправленныхПисьмахНадпись",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Регламентное задание Получение> >и> >отправка> >писем> отключено, доставка писем не выполняется. Включить>"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 832,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 66,
+ "name": "ГруппаФильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 89,
+ "name": "СтрокаПоиска",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Найти"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СтрокаПоиска",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 71,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ТипВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 67,
+ "name": "Статус",
+ "title": {
+ "content": []
+ },
+ "dataPath": {
+ "segments": "Статус",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 69,
+ "name": "Пользователь",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Ответственный",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 826,
+ "name": "ГруппаПанельНавигацииСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Панель навигации список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 24,
+ "name": "КоманднаяПанельВариантаНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель варианта навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 830,
+ "name": "ИзменитьОтображениеПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 26,
+ "name": "ВыборВариантаНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вариант навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 27,
+ "name": "УстановитьВариантНавигацииПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 28,
+ "name": "УстановитьВариантНавигацииПоКонтакту",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 124,
+ "name": "УстановитьВариантНавигацииПоЗакладкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 176,
+ "name": "УстановитьВариантНавигацииПоПапкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 828,
+ "name": "ГруппаКоманднаяПанельСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Popup",
+ "id": 43,
+ "name": "ГруппаСоздать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Создать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 44,
+ "name": "СписокСоздатьВстречу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 45,
+ "name": "СписокСоздатьЗапланированноеВзаимодействие",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 46,
+ "name": "СписокСоздатьТелефонныйЗвонок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 415,
+ "name": "СписокСоздатьСообщениеSMS",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 47,
+ "name": "СписокСоздатьЭлектронноеПисьмо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 322,
+ "name": "СписокСоздатьЭлектронноеПисьмоОтдельнаяКнопка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Написать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 919,
+ "name": "ГруппаОтветитьПереслать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответить переслать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 342,
+ "name": "СписокОтветить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 343,
+ "name": "СписокОтветитьВсем",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 344,
+ "name": "СписокПереслать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 59,
+ "name": "СписокОтправитьПолучитьПочту",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 917,
+ "name": "ПодменюСоздатьНаОсновании",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Создать на основании"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 410,
+ "name": "ГруппаРассмотрено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Рассмотрено"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 40,
+ "name": "СписокРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 42,
+ "name": "СписокОтложитьРассмотрение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 191,
+ "name": "СписокНеРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 39,
+ "name": "СписокОтветственный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 41,
+ "name": "СписокПредмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Popup",
+ "id": 824,
+ "name": "СписокТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 822,
+ "name": "СписокСтатус",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус: "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 48,
+ "name": "ГруппаКомандыСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 49,
+ "name": "Изменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 50,
+ "name": "Скопировать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 51,
+ "name": "ГруппаСписокУстановитьПометкуУдаления",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список установить пометку удаления"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBarButton",
+ "id": 52,
+ "name": "УстановитьПометкуУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 55,
+ "name": "ГруппаНайти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Найти"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 56,
+ "name": "Найти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 58,
+ "name": "ОтменитьПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 54,
+ "name": "УстановитьИнтервалДат",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 60,
+ "name": "СписокОбновить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 61,
+ "name": "СписокНастройкаСписка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 62,
+ "name": "СписокВывестиСписок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 64,
+ "name": "СписокИзменитьФорму",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 792,
+ "name": "СписокОтображатьОбластьЧтения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 146,
+ "name": "ФормаПерсональныеНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 897,
+ "name": "ГруппаГлобальныеКоманды",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Глобальные команды"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 63,
+ "name": "СписокСправка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 5,
+ "name": "ГруппаОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 6,
+ "name": "ГруппаПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Панель навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 25,
+ "name": "СтраницыПанелиНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы панели навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 30,
+ "name": "СтраницаКонтакт",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница контакт"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 31,
+ "name": "КонтактыПанелиНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панели навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 810,
+ "name": "КонтактыПанелиНавигацииГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панели навигации группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 731,
+ "name": "КонтактыКонтакт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации.Контакт",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 784,
+ "name": "КонтактыПанелиНавигацииРассмотреноДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панели навигации рассмотрено дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 728,
+ "name": "НеРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации.КоличествоНеРассмотрено",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 725,
+ "name": "КонтактыДатаПоследнегоВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Последнее взаимодействие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации.ДатаПоследнегоВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 937,
+ "name": "ДекорацияТолькоЗначимыеКонтакты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 73,
+ "name": "СтраницаПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 690,
+ "name": "ПредметыПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 808,
+ "name": "ПредметыПанельНавигацииГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 697,
+ "name": "Предмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации.Предмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 786,
+ "name": "ПредметыПанельНавигацииГруппаРассмотреноДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации группа рассмотрено дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 694,
+ "name": "НеРассмотреноПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации.КоличествоНеРассмотрено",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 700,
+ "name": "ДатаПоследнегоВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Последнее взаимодействие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации.ДатаПоследнегоВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 934,
+ "name": "ДекорацияТолькоЗначимыеПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 118,
+ "name": "СтраницаЗакладки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница закладки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 119,
+ "name": "Закладки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закладки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Закладки",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "LabelField",
+ "id": 122,
+ "name": "ЗакладкиНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закладки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Закладки.Description",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 129,
+ "name": "СтраницаСвойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 130,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Свойства",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 135,
+ "name": "СвойстваГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства группа колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 133,
+ "name": "СвойстваПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Свойства.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 136,
+ "name": "СвойстваНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Свойства.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 177,
+ "name": "СтраницаПапки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница папки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 178,
+ "name": "Папки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Папки",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 181,
+ "name": "ПапкиГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папки группа колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 182,
+ "name": "ПапкиНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Папки.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 184,
+ "name": "ПапкиПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Папки.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 305,
+ "name": "СтраницаКатегории",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница категории"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 306,
+ "name": "Категории",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Категории"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Категории",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 311,
+ "name": "КатегорииГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Категории группа колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 312,
+ "name": "КатегорииНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Категории.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 309,
+ "name": "КатегорииПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Категории.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 7,
+ "name": "ГруппаСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 2,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 772,
+ "name": "ГруппаФлаги",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Флаги"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 330,
+ "name": "НомерКартинки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Иконка взаимодействия"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 340,
+ "name": "ВажностьНомерКартинки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Иконка важности"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьНомерКартинки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 812,
+ "name": "ГруппаСписокОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 770,
+ "name": "ГруппаУчастникиДатаЕстьВложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Участники дата есть вложения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Участники",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Участники",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 776,
+ "name": "ПолученоОтправлено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ПолученоОтправлено",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 108,
+ "name": "ЕстьВложения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.ЕстьВложения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "Тема",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Тема",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 779,
+ "name": "Размер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Размер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Размер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 744,
+ "name": "УчетнаяЗапись",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.УчетнаяЗапись",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 761,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 147,
+ "name": "СтраницыПредпросмотр",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы предпросмотр"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 148,
+ "name": "СтраницаПредпросмотрОбычныйТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница предпросмотр обычный текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "TextDocumentField",
+ "id": 150,
+ "name": "ПредпросмотрОбычныйТекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Предпросмотр",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 149,
+ "name": "СтраницаПредпросмотрHTML",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница предпросмотр HTML"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 912,
+ "name": "ПредупреждениеБезопасности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение безопасности"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 914,
+ "name": "КартинкаПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 909,
+ "name": "ПредупреждениеОНебезопасномСодержимом",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В целях безопасности некоторые элементы письма отключены, письмо может отображаться некорректно. Отобразить небезопасное содержимое>"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "HTMLDocumentField",
+ "id": 91,
+ "name": "ПредпросмотрHTML",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПредпросмотрHTML",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 323,
+ "name": "ОписаниеНайденоПолнотекстовымПоиском",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ОписаниеНайденоПолнотекстовымПоиском",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "Статус",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "Ответственный",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип взаимодействия"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "СтрокаПоиска",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строка поиска"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "Предпросмотр",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предпросмотр"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "Закладки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закладки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ТаблицаДопРеквизитовСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ТекущееСвойствоПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ТекущееСвойствоПанелиНавигацииЯвляетсяРеквизитом",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "СписокВыбораТипаПредмета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ИмяТекущейПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ПредставлениеТекущегоСвойства",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ПоказыватьВсеАктивныеПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 20,
+ "name": "Папки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 21,
+ "name": "НастройкиДеревьевПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 22,
+ "name": "НеОтрабатыватьАктивизациюПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 23,
+ "name": "ОтправлятьСообщениеСразу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 24,
+ "name": "ТаблицаДопРеквизитовСвойствТипаБулево",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 25,
+ "name": "Категории",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Категории"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 26,
+ "name": "ТолькоПочта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 28,
+ "name": "ОписанияНайденоПолнотекстовымПоиском",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 30,
+ "name": "ОписаниеНайденоПолнотекстовымПоиском",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание найденного полнотекстовым поиском"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 31,
+ "name": "РасширенныйПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 29,
+ "name": "ИнформационнаяБазаФайловая",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 32,
+ "name": "ДокументыДоступныеДляСоздания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 33,
+ "name": "ИспользоватьПризнакРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 34,
+ "name": "ВзаимодействиеДляКоторогоСформированПредпросмотр",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 35,
+ "name": "ПредпросмотрHTML",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предпросмотр HTML"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 36,
+ "name": "ПредметыПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 1,
+ "name": "КонтактыПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панель навигации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ТолькоЗначимыеПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ТолькоЗначимыеКонтакты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 19,
+ "name": "ОтображатьОбластьЧтения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 38,
+ "name": "ПанельНавигацииСкрыта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 39,
+ "name": "ЗаголовокПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 40,
+ "name": "ЗаголовокПанелиНавигацииПодсказка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 41,
+ "name": "ЗначениеУстановленноеПослеЗаполненияПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 42,
+ "name": "ВключитьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 43,
+ "name": "ЕстьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 44,
+ "name": "ЗапрещеноОтображениеНебезопасногоСодержимогоВПисьмах",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 27,
+ "name": "ПравоПометкиУдаленияПапок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 37,
+ "name": "ГиперссылкаЦвет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 45,
+ "name": "ДатаПредыдущегоВыполненияКомандыОтправкиПолученияПочты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 46,
+ "name": "ДатаПредыдущегоПолученияОтправкиПочты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 47,
+ "name": "ОтправкаПолучениеПисемВыполняется",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 48,
+ "name": "РазделениеВключено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9ab3980e-a480-4f90-a8cc-bde99d5ace35",
+ "name": "ФормаСпискаПараметрическая",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ФормаСпискаПараметрическая",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ФормаСпискаПараметрическая"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка параметрическая"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ФормаСпискаПараметрическая/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ФормаСпискаПараметрическая/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 234,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 34,
+ "name": "ГруппаФильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 102,
+ "name": "ПереключитьРежимПросмотра",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 136,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ТипВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 50,
+ "name": "Статус",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Статус",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 46,
+ "name": "Ответственный",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Ответственный",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 103,
+ "name": "СтраницыСписокДерево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы список дерево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 104,
+ "name": "СтраницаСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 221,
+ "name": "ГруппаОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 223,
+ "name": "ГруппаСостояниеУчастникиДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние участники дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 225,
+ "name": "НомерКартинки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Иконка взаимодействия"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "Участники",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Участники",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 68,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 254,
+ "name": "ЕстьВложения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.ЕстьВложения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "Тема",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тема"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Тема",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 216,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 105,
+ "name": "СтраницаДерево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница дерево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 106,
+ "name": "ДеревоВзаимодействий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево взаимодействий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 228,
+ "name": "ДеревоВзаимодействийГруппаОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево взаимодействий группа основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 115,
+ "name": "УчастникиСостояниеДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Участники состояние дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 113,
+ "name": "ДеревоВзаимодействийНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 118,
+ "name": "ДеревоВзаимодействийУчастники",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.Участники",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 111,
+ "name": "ДеревоВзаимодействийДата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.Дата",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 116,
+ "name": "ДеревоВзаимодействийТема",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.Тема",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Ответственный",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "Статус",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ОтборПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "Контакт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ПредметДляОтбора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВВидеДерева",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ДеревоВзаимодействий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево взаимодействий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "Интервал",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип взаимодействия"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ТолькоПочта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ДокументыДоступныеДляСоздания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "ИспользоватьПризнакРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "ec928563-6e35-4b84-b477-90d2481cec1c",
+ "name": "ПечатьЭлектронногоПисьма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ПечатьЭлектронногоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ПечатьЭлектронногоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Печать электронного письма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ПечатьЭлектронногоПисьма/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ПечатьЭлектронногоПисьма/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Печать электронного письма"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 35,
+ "name": "ГруппаПисьмоОснованиеПечать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Письмо основание печать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 32,
+ "name": "ДекорацияПисьмоОснование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 37,
+ "name": "Печать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 39,
+ "name": "ПредупреждениеБезопасности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение безопасности"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 41,
+ "name": "КартинкаПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 44,
+ "name": "ПредупреждениеОНебезопасномСодержимом",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В целях безопасности некоторые элементы письма отключены, письмо может отображаться некорректно. Отобразить небезопасное содержимое>"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "HTMLDocumentField",
+ "id": 1,
+ "name": "ТекстHTML",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ТекстHTML",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 4,
+ "name": "Вложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вложения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Вложения",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 17,
+ "name": "Группа",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 19,
+ "name": "ИндексКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Вложения.ИндексКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "ИмяФайла",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Вложения.ИмяФайла",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 25,
+ "name": "ВложенияРазмерПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Вложения.РазмерПредставление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ТекстHTML",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Текст HTML"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ФормаДиалогаПечатиПриОткрытииОткрывалась",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "НеВызыватьКомандуПечати",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "Вложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вложения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ИмяПользователяУчетнойЗаписи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ВложенияСИдентификаторами",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ОтображатьВложенияПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "Письмо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ТемаПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ДатаПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ПисьмоОснование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "ТемаПисьмаОснования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ДатаПисьмаОснования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ЗапрещенныеРасширения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ВключитьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ЕстьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 19,
+ "name": "ИсходныйТекстHTML",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "5d3e9678-20fe-4128-867a-3f7addaa7831",
+ "name": "ПараметрыЭлектронногоПисьма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ПараметрыЭлектронногоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ПараметрыЭлектронногоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметры электронного письма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ПараметрыЭлектронногоПисьма/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ПараметрыЭлектронногоПисьма/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Параметры письма"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 22,
+ "name": "ГруппаДатыНомер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Даты номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 8,
+ "name": "ГруппаДаты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Даты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 9,
+ "name": "Создано",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Создано",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ОтправленоПолучено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлено"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОтправленоПолучено",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 25,
+ "name": "ГруппаВключатьВнутреннийНомер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать внутренний номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "ВнутреннийНомер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ВнутреннийНомер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 23,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ВключатьТелоИсходногоПисьма",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 26,
+ "name": "Папка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Папка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 5,
+ "name": "ГруппаПараметрыОтслеживания",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Параметры отслеживания"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 1,
+ "name": "УведомитьОДоставке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "УведомитьОДоставке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 3,
+ "name": "УведомитьОПрочтении",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "УведомитьОПрочтении",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "TextDocumentField",
+ "id": 17,
+ "name": "Заголовки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ЗаголовкиИнтернета",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "УведомитьОДоставке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомить о доставке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "УведомитьОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомить о прочтении"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВнутреннийНомер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Внутренний номер"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Создано",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Создано"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ОтправленоПолучено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлено получено"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЗаголовкиИнтернета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовки Интернета"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "Письмо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ТипПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать тело исходного письма"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "Папка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папка"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "УчетнаяЗапись",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 12,
+ "name": "ТекущаяПапка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ВыполненаКомандаЗакрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "bb878f73-8a0f-459a-9076-ce57fe7957dc",
+ "name": "НастройкиРаботыСПочтой",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.НастройкиРаботыСПочтой",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.НастройкиРаботыСПочтой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Настройки работы с почтой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/НастройкиРаботыСПочтой/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/НастройкиРаботыСПочтой/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройки работы с почтой"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "УчетнаяЗаписьЭлектроннойПочты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 16,
+ "name": "СтраницыНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 42,
+ "name": "ПодписьДляНового",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись для нового"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 17,
+ "name": "ГруппаДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 1,
+ "name": "ВключатьПодписьДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВключатьПодписьДляНовыхСообщений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "ФорматПодписиДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ФорматПодписиДляНовыхСообщений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 7,
+ "name": "ГруппаВключатьФорматНовые",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 8,
+ "name": "СтраницыПодписьДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы подпись для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 9,
+ "name": "СтраницаНовоеСообщениеПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница новое сообщение простой текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "ПодписьДляНовыхСообщенийПростойТекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПодписьДляНовыхСообщенийПростойТекст",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 10,
+ "name": "СтраницаНовоеСообщениеФорматированныйТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница новое сообщение форматированный текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 15,
+ "name": "ГруппаКомандыФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды форматированный документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "FormattedDocumentField",
+ "id": 11,
+ "name": "НовоеСообщениеФорматированныйДокумент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "НовоеСообщениеФорматированныйДокумент",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 87,
+ "name": "ПодписьПриОтвете",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись при ответе"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 18,
+ "name": "ГруппаПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись при ответе или пересылке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 20,
+ "name": "ВключатьПодписьПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись при ответе или пересылке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВключатьПодписьПриОтветеПересылке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "ФорматПодписиПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ФорматПодписиПриОтветеПересылке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 24,
+ "name": "СтраницыПодписьПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы подпись при ответе пересылке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 25,
+ "name": "СтраницаПриОтветеПересылкеПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница при ответе пересылке простой текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 27,
+ "name": "ПодписьПриОтветеПересылкеПростойТекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПодписьПриОтветеПересылкеПростойТекст",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 26,
+ "name": "СтраницаПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница при ответе пересылке простой текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 31,
+ "name": "ГруппаКомандыПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды при ответе пересылке форматированный документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "FormattedDocumentField",
+ "id": 29,
+ "name": "ПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПриОтветеПересылкеФорматированныйДокумент",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 34,
+ "name": "ОтслеживаниеПисем",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отслеживание писем"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 39,
+ "name": "ГруппаДляОтправляемыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Для отправляемых сообщений запрашивать:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 37,
+ "name": "ВсегдаЗапрашиватьУведомлениеОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомление о прочтении"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВсегдаЗапрашиватьУведомлениеОПрочтении",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 35,
+ "name": "ВсегдаЗапрашиватьУведомленияОДоставке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомление о доставке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВсегдаЗапрашиватьУведомленияОДоставке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 40,
+ "name": "ПорядокОтветовНаЗапросыУведомленийОПрочтении",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПорядокОтветовНаЗапросыУведомленийОПрочтении",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 47,
+ "name": "Прочее",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Прочее"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 50,
+ "name": "ОтображатьТелоИсходногоПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ОтображатьТелоИсходногоПисьма",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 52,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ВключатьТелоИсходногоПисьма",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 45,
+ "name": "ОтправлятьСообщенияСразу",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлять сообщения сразу "
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОтправлятьСообщенияСразу",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "НовоеСообщениеФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Новое сообщение форматированный документ"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 1,
+ "name": "НастройкиХранилище",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ФорматПодписиДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи для новых сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ПодписьДляНовыхСообщенийПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись для новых сообщений простой текст"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВключатьПодписьПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись при ответе или пересылке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ВключатьПодписьДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись для новых сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ФорматПодписиПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи при ответе пересылке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ПодписьПриОтветеПересылкеПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись при ответе пересылке простой текст"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ВсегдаЗапрашиватьУведомлениеОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всегда запрашивать уведомление о прочтении"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ВсегдаЗапрашиватьУведомленияОДоставке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всегда запрашивать уведомления о доставке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ПорядокОтветовНаЗапросыУведомленийОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Порядок ответов на запросы уведомлений о прочтении"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ОтправлятьСообщенияСразу",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлять сообщения сразу"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ОтображатьТелоИсходногоПисьма",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отображать тело исходного письма при ответе или пересылке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 15,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать тело исходного письма при ответе пересылке"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "cb1d4a41-20a9-4d76-8798-d47d8858bff1",
+ "name": "ВыборТипаПредмета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ВыборТипаПредмета",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ВыборТипаПредмета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор типа предмета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ВыборТипаПредмета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Forms/ВыборТипаПредмета/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выберите тип предмета"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "ТаблицаТиповПредметов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Таблица типов предметов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ТаблицаТиповПредметов",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "ТаблицаТиповПредметовПредставлениеТипа",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ТаблицаТиповПредметов.ПредставлениеТипа",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 23,
+ "name": "НеОтображатьВзаимодействия",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "НеОтображатьВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ТаблицаТиповПредметов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Таблица типов предметов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ТекущийТипПредмета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НеОтображатьВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Не отображать взаимодействия"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Взаимодействия",
+ "objectBelonging": "OWN",
+ "registeredDocuments": [
+ [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Встреча",
+ "mdoRefRu": "Документ.Встреча"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ТелефонныйЗвонок",
+ "mdoRefRu": "Документ.ТелефонныйЗвонок"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоВходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоВходящее"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоИсходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоИсходящее"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЗапланированноеВзаимодействие",
+ "mdoRefRu": "Документ.ЗапланированноеВзаимодействие"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.СообщениеSMS",
+ "mdoRefRu": "Документ.СообщениеSMS"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "templates": [
+ [
+ {
+ "uuid": "a2b4110b-4d9c-40fd-ab46-bfa08d2eb993",
+ "name": "СхемаОтборВзаимодействия",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.СхемаОтборВзаимодействия",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.СхемаОтборВзаимодействия"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Схема отбор взаимодействия"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ОсновнойНаборДанных",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 142,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tСостоянияПредметовВзаимодействий.Активен КАК ПредметАктивен,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t{ЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\t\tЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.СостоянияПредметовВзаимодействий КАК СостоянияПредметовВзаимодействий\n\t\t\tПО ПредметыВзаимодействий.Предмет = СостоянияПредметовВзаимодействий.Предмет\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Номер",
+ "name": "Номер"
+ },
+ {
+ "dataPath": "Проведен",
+ "name": "Проведен"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Автор",
+ "name": "Автор"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ },
+ {
+ "dataPath": "ЕстьВложения",
+ "name": "ЕстьВложения"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "ТипПредмета",
+ "name": "ТипПредмета"
+ },
+ {
+ "dataPath": "УчетнаяЗапись",
+ "name": "УчетнаяЗапись"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "Папка",
+ "name": "Папка"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "ПолученоОтправлено",
+ "name": "ПолученоОтправлено"
+ },
+ {
+ "dataPath": "Размер",
+ "name": "Размер"
+ },
+ {
+ "dataPath": "ПредметАктивен",
+ "name": "ПредметАктивен"
+ },
+ {
+ "dataPath": "Важность",
+ "name": "Важность"
+ },
+ {
+ "dataPath": "ВажностьНомерКартинки",
+ "name": "ВажностьНомерКартинки"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Templates/СхемаОтборВзаимодействия/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "4f262b7f-927e-45f2-ad90-9d5e1b3155d1",
+ "name": "ИерархияВзаимодействийПредмет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.ИерархияВзаимодействийПредмет",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.ИерархияВзаимодействийПредмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Иерархия взаимодействий предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ИерархияВзаимодействий",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 90,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВзаимодействия.Ссылка,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "ВзаимодействиеОснование",
+ "name": "ВзаимодействиеОснование"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "НомерКартинки",
+ "name": "НомерКартинки"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Templates/ИерархияВзаимодействийПредмет/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "9f4b8e36-83ff-4694-8540-b5f47b18395f",
+ "name": "ИерархияВзаимодействийКонтакт",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.ИерархияВзаимодействийКонтакт",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.ИерархияВзаимодействийКонтакт"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Иерархия взаимодействий контакт"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ИерархияВзаимодействий",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 120,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка КАК Ссылка\nПОМЕСТИТЬ ВзаимодействияПоКонтакту\nИЗ\n\tРегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ ЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tПО КонтактыВзаимодействий.Взаимодействие = Взаимодействия.Ссылка\nГДЕ\n\tКонтактыВзаимодействий.Контакт = &Контакт\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка,\n\tВзаимодействия.Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "ВзаимодействиеОснование",
+ "name": "ВзаимодействиеОснование"
+ },
+ {
+ "dataPath": "НомерКартинки",
+ "name": "НомерКартинки"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[3]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Templates/ИерархияВзаимодействийКонтакт/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "b4c026eb-4271-4366-b529-1cdfe2874563",
+ "name": "СхемаОтборВзаимодействияКонтакт",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.СхемаОтборВзаимодействияКонтакт",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.СхемаОтборВзаимодействияКонтакт"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Схема отбор взаимодействия контакт"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ОсновнойНаборДанных",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 158,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие\n\t\t{ВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\nПО ЖурналДокументовВзаимодействия.Ссылка = КонтактыВзаимодействий.Взаимодействие}\n{ГДЕ\n\tЖурналДокументовВзаимодействия.Ссылка КАК Поиск\n\t,\nКонтактыВзаимодействий.Контакт}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Номер",
+ "name": "Номер"
+ },
+ {
+ "dataPath": "Проведен",
+ "name": "Проведен"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Автор",
+ "name": "Автор"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ },
+ {
+ "dataPath": "ЕстьВложения",
+ "name": "ЕстьВложения"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "ТипПредмета",
+ "name": "ТипПредмета"
+ },
+ {
+ "dataPath": "УчетнаяЗапись",
+ "name": "УчетнаяЗапись"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "Папка",
+ "name": "Папка"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "ПолученоОтправлено",
+ "name": "ПолученоОтправлено"
+ },
+ {
+ "dataPath": "Размер",
+ "name": "Размер"
+ },
+ {
+ "dataPath": "Важность",
+ "name": "Важность"
+ },
+ {
+ "dataPath": "ВажностьНомерКартинки",
+ "name": "ВажностьНомерКартинки"
+ },
+ {
+ "dataPath": "Контакт",
+ "name": "Контакт"
+ },
+ {
+ "dataPath": "Поиск",
+ "name": "Поиск"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[4]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/DocumentJournals/Взаимодействия/Templates/СхемаОтборВзаимодействияКонтакт/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ }
+ ],
+ []
+ ],
+ "uuid": "7da57c89-af2c-445a-96f7-39250f70306f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json"
new file mode 100644
index 000000000..cfe31d457
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/DocumentJournals.\320\222\320\267\320\260\320\270\320\274\320\276\320\264\320\265\320\271\321\201\321\202\320\262\320\270\321\217_edt.json"
@@ -0,0 +1,6309 @@
+{"com.github._1c_syntax.bsl.mdo.DocumentJournal": {
+ "allAttributes": [
+ {
+ "uuid": "b5b94d94-25f7-4cfa-b1e9-6009fb848763",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Автор",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "DOCUMENT_JOURNAL",
+ "mdoRef": "DocumentJournal.Взаимодействия",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "a2accf54-5966-42e8-ab2e-e56e415963ee",
+ "name": "Входящий",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Входящий",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Входящий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Входящий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "d8eb5329-5900-4b5d-b45e-458513dddfef",
+ "name": "Ответственный",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Ответственный",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Ответственный"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "6d521e58-24a3-4f19-b4b0-dff84f7ca86b",
+ "name": "Тема",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Тема",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Тема"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тема"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "8c413fa5-9e24-4b81-aa55-0e78c5e3e20f",
+ "name": "Участники",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Участники",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Участники"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Участники"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "a4322f22-7de0-4018-8e06-9f1aa7cf0c07",
+ "name": "СтатусИсходящегоПисьма",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.СтатусИсходящегоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.СтатусИсходящегоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Статус исходящего письма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "eaaed107-69d4-4963-be83-74519e331715",
+ "name": "УчетнаяЗапись",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.УчетнаяЗапись",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.УчетнаяЗапись"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Учетная запись"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "38cddf96-8703-4396-8c73-47fb22828a48",
+ "name": "ЕстьВложения",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ЕстьВложения",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ЕстьВложения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Есть вложения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "2c2cb793-0177-4983-91ca-9c292c5b10f1",
+ "name": "ВзаимодействиеОснование",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ВзаимодействиеОснование",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ВзаимодействиеОснование"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействие основание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "2a2e7f51-a4e5-48ec-b969-b1fca18ba9b5",
+ "name": "ПолученоОтправлено",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ПолученоОтправлено",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ПолученоОтправлено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Получено отправлено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX_WITH_ADDITIONAL_ORDER"
+ },
+ {
+ "uuid": "221fa473-3327-44e6-a033-6fdfd2be713c",
+ "name": "Размер",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Размер",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Размер"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Размер"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "7a5973f0-7e29-44af-8e7b-70af71f704a4",
+ "name": "Важность",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.Важность",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.Важность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX"
+ },
+ {
+ "uuid": "2b2bf0f7-0946-4492-bba0-27f007a70e64",
+ "name": "ДатаКогдаОтправить",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ДатаКогдаОтправить",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ДатаКогдаОтправить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата когда отправить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "22c9a703-5ed3-4156-8fa6-476b1c1452f1",
+ "name": "ДатаАктуальностиОтправки",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ДатаАктуальностиОтправки",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ДатаАктуальностиОтправки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата актуальности отправки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "8be10d88-8c37-4444-9c89-6cbbe9913bda",
+ "name": "ИдентификаторСообщения",
+ "mdoReference": {
+ "type": "COLUMN",
+ "mdoRef": "DocumentJournal.Взаимодействия.Column.ИдентификаторСообщения",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Колонка.ИдентификаторСообщения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Идентификатор сообщения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX"
+ }
+ ],
+ "columns": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[8]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[9]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[10]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[11]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[12]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[13]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[14]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn[15]"
+ }
+ ],
+ []
+ ],
+ "commands": [
+ [
+ {
+ "uuid": "314b0da2-24d3-48cc-8532-d36c45eb3bf8",
+ "name": "ВзаимодействияПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ВзаимодействияПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ВзаимодействияПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ВзаимодействияПоКонтакту/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "2e3ac3fb-9f0e-463f-95c2-9f661ce2e015",
+ "name": "ВзаимодействияПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ВзаимодействияПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ВзаимодействияПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ВзаимодействияПоПредмету/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "4077e700-ec20-4afa-8155-bf7e516a70cb",
+ "name": "ЗапланироватьВзаимодействиеПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВзаимодействиеПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВзаимодействиеПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать взаимодействие"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВзаимодействиеПоКонтакту/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "5198c6db-2100-4902-82c8-85c8ea555e78",
+ "name": "ЗапланироватьВзаимодействиеПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВзаимодействиеПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВзаимодействиеПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать взаимодействие"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВзаимодействиеПоПредмету/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "b99f2a63-54e8-490b-a0a4-1941fbc38b3f",
+ "name": "ЗапланироватьВстречуПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВстречуПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВстречуПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать встречу"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВстречуПоКонтакту/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "f0b1e9f4-2e07-44e6-88d2-c11457135781",
+ "name": "ЗапланироватьВстречуПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ЗапланироватьВстречуПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ЗапланироватьВстречуПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Запланировать встречу"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ЗапланироватьВстречуПоПредмету/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "e010c0f9-f770-4fdc-8607-50838c0262ef",
+ "name": "НаписатьSMSПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьSMSПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьSMSПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать SMS"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/НаписатьSMSПоКонтакту/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[7]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "f935399f-3554-4c08-b0a6-eba13074e1b7",
+ "name": "НаписатьSMSПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьSMSПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьSMSПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать SMS"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/НаписатьSMSПоПредмету/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[8]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "10008125-3aeb-4912-8ad6-d92d283ea09a",
+ "name": "НаписатьЭлектронноеПисьмоПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьЭлектронноеПисьмоПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьЭлектронноеПисьмоПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать электронное письмо"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/НаписатьЭлектронноеПисьмоПоКонтакту/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[9]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "765f9584-fefa-4695-b130-dd54c3b0d79d",
+ "name": "НаписатьЭлектронноеПисьмоПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НаписатьЭлектронноеПисьмоПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НаписатьЭлектронноеПисьмоПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Написать электронное письмо"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/НаписатьЭлектронноеПисьмоПоПредмету/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[10]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "dd050ca0-8335-4654-ab5c-7babcb4824ef",
+ "name": "НастройкиРаботыСПочтой",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.НастройкиРаботыСПочтой",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.НастройкиРаботыСПочтой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Настройки работы с почтой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/НастройкиРаботыСПочтой/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[11]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "706cbf55-626d-4cab-b589-a2464368f6c1",
+ "name": "ПечатьЭлектронногоПисьма",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ПечатьЭлектронногоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ПечатьЭлектронногоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Печать"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ПечатьЭлектронногоПисьма/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[12]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "d22a0a50-220d-459e-a23a-39730a1e67c4",
+ "name": "ПозвонитьПоКонтакту",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ПозвонитьПоКонтакту",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ПозвонитьПоКонтакту"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Позвонить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ПозвонитьПоКонтакту/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[13]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "2c1c9284-ba8b-4282-a89c-429f02ea41f6",
+ "name": "ПозвонитьПоПредмету",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.ПозвонитьПоПредмету",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.ПозвонитьПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Позвонить"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/ПозвонитьПоПредмету/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[14]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "8c241467-76f7-4161-a8a1-5da4a6576b75",
+ "name": "СохранитьПисьмоНаДиск",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "DocumentJournal.Взаимодействия.Command.СохранитьПисьмоНаДиск",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Команда.СохранитьПисьмоНаДиск"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сохранить письмо на диск"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Commands/СохранитьПисьмоНаДиск/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/commands/c/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[15]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ }
+ ],
+ []
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "27089e8e-2c75-431c-b808-5d4dcba3cdca",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ФормаСписка",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ФормаСписка/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "NavigationProcessing",
+ "name": "ОбработкаПерехода"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 926,
+ "name": "ПредупреждениеОНеотправленныхПисьмах",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 928,
+ "name": "ПредупреждениеОНеотправленныхПисьмахКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 931,
+ "name": "ПредупреждениеОНеотправленныхПисьмахНадпись",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Регламентное задание Получение> >и> >отправка> >писем> отключено, доставка писем не выполняется. Включить>"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 832,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 66,
+ "name": "ГруппаФильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 89,
+ "name": "СтрокаПоиска",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Найти"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СтрокаПоиска",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 71,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ТипВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 67,
+ "name": "Статус",
+ "title": {
+ "content": []
+ },
+ "dataPath": {
+ "segments": "Статус",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 69,
+ "name": "Пользователь",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Ответственный",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 826,
+ "name": "ГруппаПанельНавигацииСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Панель навигации список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 24,
+ "name": "КоманднаяПанельВариантаНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель варианта навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 830,
+ "name": "ИзменитьОтображениеПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 26,
+ "name": "ВыборВариантаНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вариант навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 27,
+ "name": "УстановитьВариантНавигацииПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 28,
+ "name": "УстановитьВариантНавигацииПоКонтакту",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 124,
+ "name": "УстановитьВариантНавигацииПоЗакладкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 176,
+ "name": "УстановитьВариантНавигацииПоПапкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 828,
+ "name": "ГруппаКоманднаяПанельСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Popup",
+ "id": 43,
+ "name": "ГруппаСоздать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Создать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 44,
+ "name": "СписокСоздатьВстречу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 45,
+ "name": "СписокСоздатьЗапланированноеВзаимодействие",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 46,
+ "name": "СписокСоздатьТелефонныйЗвонок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 415,
+ "name": "СписокСоздатьСообщениеSMS",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 47,
+ "name": "СписокСоздатьЭлектронноеПисьмо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 322,
+ "name": "СписокСоздатьЭлектронноеПисьмоОтдельнаяКнопка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Написать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 919,
+ "name": "ГруппаОтветитьПереслать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответить переслать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 342,
+ "name": "СписокОтветить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 343,
+ "name": "СписокОтветитьВсем",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 344,
+ "name": "СписокПереслать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 59,
+ "name": "СписокОтправитьПолучитьПочту",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 917,
+ "name": "ПодменюСоздатьНаОсновании",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Создать на основании"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 410,
+ "name": "ГруппаРассмотрено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Рассмотрено"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 40,
+ "name": "СписокРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 42,
+ "name": "СписокОтложитьРассмотрение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 191,
+ "name": "СписокНеРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 39,
+ "name": "СписокОтветственный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 41,
+ "name": "СписокПредмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Popup",
+ "id": 824,
+ "name": "СписокТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 822,
+ "name": "СписокСтатус",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус: "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 48,
+ "name": "ГруппаКомандыСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 49,
+ "name": "Изменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 50,
+ "name": "Скопировать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 51,
+ "name": "ГруппаСписокУстановитьПометкуУдаления",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список установить пометку удаления"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 52,
+ "name": "УстановитьПометкуУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "",
+ "id": 55,
+ "name": "ГруппаНайти",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Найти"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 56,
+ "name": "Найти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 58,
+ "name": "ОтменитьПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 54,
+ "name": "УстановитьИнтервалДат",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 60,
+ "name": "СписокОбновить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 61,
+ "name": "СписокНастройкаСписка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 62,
+ "name": "СписокВывестиСписок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 64,
+ "name": "СписокИзменитьФорму",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 792,
+ "name": "СписокОтображатьОбластьЧтения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 146,
+ "name": "ФормаПерсональныеНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 897,
+ "name": "ГруппаГлобальныеКоманды",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Глобальные команды"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 63,
+ "name": "СписокСправка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 5,
+ "name": "ГруппаОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 6,
+ "name": "ГруппаПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Панель навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 25,
+ "name": "СтраницыПанелиНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы панели навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 30,
+ "name": "СтраницаКонтакт",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница контакт"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 31,
+ "name": "КонтактыПанелиНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панели навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 810,
+ "name": "КонтактыПанелиНавигацииГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панели навигации группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 731,
+ "name": "КонтактыКонтакт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации.Контакт",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 784,
+ "name": "КонтактыПанелиНавигацииРассмотреноДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панели навигации рассмотрено дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 728,
+ "name": "НеРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации.КоличествоНеРассмотрено",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 725,
+ "name": "КонтактыДатаПоследнегоВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Последнее взаимодействие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КонтактыПанельНавигации.ДатаПоследнегоВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Label",
+ "id": 937,
+ "name": "ДекорацияТолькоЗначимыеКонтакты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 73,
+ "name": "СтраницаПредмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 690,
+ "name": "ПредметыПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 808,
+ "name": "ПредметыПанельНавигацииГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 697,
+ "name": "Предмет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации.Предмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 786,
+ "name": "ПредметыПанельНавигацииГруппаРассмотреноДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации группа рассмотрено дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 694,
+ "name": "НеРассмотреноПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации.КоличествоНеРассмотрено",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 700,
+ "name": "ДатаПоследнегоВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Последнее взаимодействие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПредметыПанельНавигации.ДатаПоследнегоВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Label",
+ "id": 934,
+ "name": "ДекорацияТолькоЗначимыеПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 118,
+ "name": "СтраницаЗакладки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница закладки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 119,
+ "name": "Закладки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закладки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Закладки",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "LabelField",
+ "id": 122,
+ "name": "ЗакладкиНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закладки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Закладки.Description",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 129,
+ "name": "СтраницаСвойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 130,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Свойства",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 135,
+ "name": "СвойстваГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства группа колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 133,
+ "name": "СвойстваПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Свойства.Представление",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 136,
+ "name": "СвойстваНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Свойства.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 177,
+ "name": "СтраницаПапки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница папки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 178,
+ "name": "Папки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Папки",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 181,
+ "name": "ПапкиГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папки группа колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 182,
+ "name": "ПапкиНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Папки.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 184,
+ "name": "ПапкиПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Папки.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 305,
+ "name": "СтраницаКатегории",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница категории"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 306,
+ "name": "Категории",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Категории"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Категории",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 311,
+ "name": "КатегорииГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Категории группа колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 312,
+ "name": "КатегорииНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Категории.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 309,
+ "name": "КатегорииПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Категории.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 7,
+ "name": "ГруппаСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 2,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 772,
+ "name": "ГруппаФлаги",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Флаги"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 330,
+ "name": "НомерКартинки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Иконка взаимодействия"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 340,
+ "name": "ВажностьНомерКартинки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Иконка важности"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьНомерКартинки",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 812,
+ "name": "ГруппаСписокОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 770,
+ "name": "ГруппаУчастникиДатаЕстьВложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Участники дата есть вложения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 16,
+ "name": "Участники",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Участники",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 776,
+ "name": "ПолученоОтправлено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ПолученоОтправлено",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 108,
+ "name": "ЕстьВложения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.ЕстьВложения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "Тема",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Тема",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 779,
+ "name": "Размер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Размер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Размер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 744,
+ "name": "УчетнаяЗапись",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.УчетнаяЗапись",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 761,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 147,
+ "name": "СтраницыПредпросмотр",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы предпросмотр"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 148,
+ "name": "СтраницаПредпросмотрОбычныйТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница предпросмотр обычный текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "TextDocumentField",
+ "id": 150,
+ "name": "ПредпросмотрОбычныйТекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Предпросмотр",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 149,
+ "name": "СтраницаПредпросмотрHTML",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница предпросмотр HTML"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 912,
+ "name": "ПредупреждениеБезопасности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение безопасности"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 914,
+ "name": "КартинкаПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 909,
+ "name": "ПредупреждениеОНебезопасномСодержимом",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В целях безопасности некоторые элементы письма отключены, письмо может отображаться некорректно. Отобразить небезопасное содержимое>"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "HTMLDocumentField",
+ "id": 91,
+ "name": "ПредпросмотрHTML",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПредпросмотрHTML",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 323,
+ "name": "ОписаниеНайденоПолнотекстовымПоиском",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ОписаниеНайденоПолнотекстовымПоиском",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "Статус",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "Ответственный",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип взаимодействия"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "СтрокаПоиска",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строка поиска"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "Предпросмотр",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предпросмотр"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "Закладки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закладки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ТаблицаДопРеквизитовСвойств",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "Свойства",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ТекущееСвойствоПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ТекущееСвойствоПанелиНавигацииЯвляетсяРеквизитом",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "СписокВыбораТипаПредмета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ИмяТекущейПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ПредставлениеТекущегоСвойства",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ПоказыватьВсеАктивныеПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 20,
+ "name": "Папки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 21,
+ "name": "НастройкиДеревьевПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 22,
+ "name": "НеОтрабатыватьАктивизациюПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 23,
+ "name": "ОтправлятьСообщениеСразу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 24,
+ "name": "ТаблицаДопРеквизитовСвойствТипаБулево",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 25,
+ "name": "Категории",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Категории"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 26,
+ "name": "ТолькоПочта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 28,
+ "name": "ОписанияНайденоПолнотекстовымПоиском",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 30,
+ "name": "ОписаниеНайденоПолнотекстовымПоиском",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание найденного полнотекстовым поиском"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 31,
+ "name": "РасширенныйПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 29,
+ "name": "ИнформационнаяБазаФайловая",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 32,
+ "name": "ДокументыДоступныеДляСоздания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 33,
+ "name": "ИспользоватьПризнакРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 34,
+ "name": "ВзаимодействиеДляКоторогоСформированПредпросмотр",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 35,
+ "name": "ПредпросмотрHTML",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предпросмотр HTML"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 36,
+ "name": "ПредметыПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предметы панель навигации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 1,
+ "name": "КонтактыПанельНавигации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Контакты панель навигации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ТолькоЗначимыеПредметы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ТолькоЗначимыеКонтакты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 19,
+ "name": "ОтображатьОбластьЧтения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 38,
+ "name": "ПанельНавигацииСкрыта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 39,
+ "name": "ЗаголовокПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 40,
+ "name": "ЗаголовокПанелиНавигацииПодсказка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 41,
+ "name": "ЗначениеУстановленноеПослеЗаполненияПанелиНавигации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 42,
+ "name": "ВключитьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 43,
+ "name": "ЕстьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 44,
+ "name": "ЗапрещеноОтображениеНебезопасногоСодержимогоВПисьмах",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 27,
+ "name": "ПравоПометкиУдаленияПапок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 37,
+ "name": "ГиперссылкаЦвет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 45,
+ "name": "ДатаПредыдущегоВыполненияКомандыОтправкиПолученияПочты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 46,
+ "name": "ДатаПредыдущегоПолученияОтправкиПочты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 47,
+ "name": "ОтправкаПолучениеПисемВыполняется",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 48,
+ "name": "РазделениеВключено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9ab3980e-a480-4f90-a8cc-bde99d5ace35",
+ "name": "ФормаСпискаПараметрическая",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ФормаСпискаПараметрическая",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ФормаСпискаПараметрическая"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка параметрическая"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ФормаСпискаПараметрическая/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ФормаСпискаПараметрическая/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "ChoiceProcessing",
+ "name": "ОбработкаВыбора"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 234,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 34,
+ "name": "ГруппаФильтры",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 102,
+ "name": "ПереключитьРежимПросмотра",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 136,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ТипВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 50,
+ "name": "Статус",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Статус",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 46,
+ "name": "Ответственный",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Ответственный",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Pages",
+ "id": 103,
+ "name": "СтраницыСписокДерево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы список дерево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 104,
+ "name": "СтраницаСписок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 221,
+ "name": "ГруппаОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 223,
+ "name": "ГруппаСостояниеУчастникиДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние участники дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 225,
+ "name": "НомерКартинки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Иконка взаимодействия"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "Участники",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Участники",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 68,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 254,
+ "name": "ЕстьВложения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.ЕстьВложения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "Тема",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тема"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Тема",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 216,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 105,
+ "name": "СтраницаДерево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница дерево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 106,
+ "name": "ДеревоВзаимодействий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево взаимодействий"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 228,
+ "name": "ДеревоВзаимодействийГруппаОсновное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево взаимодействий группа основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 115,
+ "name": "УчастникиСостояниеДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Участники состояние дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 113,
+ "name": "ДеревоВзаимодействийНомерКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.НомерКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 118,
+ "name": "ДеревоВзаимодействийУчастники",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.Участники",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 111,
+ "name": "ДеревоВзаимодействийДата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.Дата",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 116,
+ "name": "ДеревоВзаимодействийТема",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВзаимодействий.Тема",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "Ответственный",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ответственный"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "Статус",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статус"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ОтборПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "Контакт",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ПредметДляОтбора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВВидеДерева",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ДеревоВзаимодействий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево взаимодействий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "Интервал",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ТипВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип взаимодействия"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ТолькоПочта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ДокументыДоступныеДляСоздания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "ИспользоватьПризнакРассмотрено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "ec928563-6e35-4b84-b477-90d2481cec1c",
+ "name": "ПечатьЭлектронногоПисьма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ПечатьЭлектронногоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ПечатьЭлектронногоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Печать электронного письма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ПечатьЭлектронногоПисьма/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ПечатьЭлектронногоПисьма/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Печать электронного письма"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 35,
+ "name": "ГруппаПисьмоОснованиеПечать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Письмо основание печать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 32,
+ "name": "ДекорацияПисьмоОснование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 37,
+ "name": "Печать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 39,
+ "name": "ПредупреждениеБезопасности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предупреждение безопасности"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 41,
+ "name": "КартинкаПредупреждение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка предупреждение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 44,
+ "name": "ПредупреждениеОНебезопасномСодержимом",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В целях безопасности некоторые элементы письма отключены, письмо может отображаться некорректно. Отобразить небезопасное содержимое>"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "HTMLDocumentField",
+ "id": 1,
+ "name": "ТекстHTML",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ТекстHTML",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 4,
+ "name": "Вложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вложения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Вложения",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 17,
+ "name": "Группа",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 19,
+ "name": "ИндексКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Вложения.ИндексКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "ИмяФайла",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Вложения.ИмяФайла",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 25,
+ "name": "ВложенияРазмерПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Вложения.РазмерПредставление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ТекстHTML",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Текст HTML"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ФормаДиалогаПечатиПриОткрытииОткрывалась",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "НеВызыватьКомандуПечати",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "Вложения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вложения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ИмяПользователяУчетнойЗаписи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ВложенияСИдентификаторами",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ОтображатьВложенияПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "Письмо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ТемаПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ДатаПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ПисьмоОснование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "ТемаПисьмаОснования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ДатаПисьмаОснования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ЗапрещенныеРасширения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ВключитьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ЕстьНебезопасноеСодержимое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 19,
+ "name": "ИсходныйТекстHTML",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "5d3e9678-20fe-4128-867a-3f7addaa7831",
+ "name": "ПараметрыЭлектронногоПисьма",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ПараметрыЭлектронногоПисьма",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ПараметрыЭлектронногоПисьма"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Параметры электронного письма"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ПараметрыЭлектронногоПисьма/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ПараметрыЭлектронногоПисьма/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Параметры письма"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 22,
+ "name": "ГруппаДатыНомер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Даты номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 8,
+ "name": "ГруппаДаты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Даты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 9,
+ "name": "Создано",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Создано",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ОтправленоПолучено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлено"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОтправленоПолучено",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 25,
+ "name": "ГруппаВключатьВнутреннийНомер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать внутренний номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "ВнутреннийНомер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ВнутреннийНомер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 23,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ВключатьТелоИсходногоПисьма",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 26,
+ "name": "Папка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "Папка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 5,
+ "name": "ГруппаПараметрыОтслеживания",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Параметры отслеживания"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 1,
+ "name": "УведомитьОДоставке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "УведомитьОДоставке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 3,
+ "name": "УведомитьОПрочтении",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "УведомитьОПрочтении",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "TextDocumentField",
+ "id": 17,
+ "name": "Заголовки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ЗаголовкиИнтернета",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "УведомитьОДоставке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомить о доставке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "УведомитьОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомить о прочтении"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВнутреннийНомер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Внутренний номер"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Создано",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Создано"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ОтправленоПолучено",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлено получено"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЗаголовкиИнтернета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовки Интернета"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "Письмо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ТипПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать тело исходного письма"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "Папка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Папка"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "УчетнаяЗапись",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 12,
+ "name": "ТекущаяПапка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ВыполненаКомандаЗакрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "bb878f73-8a0f-459a-9076-ce57fe7957dc",
+ "name": "НастройкиРаботыСПочтой",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.НастройкиРаботыСПочтой",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.НастройкиРаботыСПочтой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Настройки работы с почтой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/НастройкиРаботыСПочтой/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/НастройкиРаботыСПочтой/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройки работы с почтой"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "УчетнаяЗаписьЭлектроннойПочты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 16,
+ "name": "СтраницыНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 42,
+ "name": "ПодписьДляНового",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись для нового"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 17,
+ "name": "ГруппаДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 1,
+ "name": "ВключатьПодписьДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВключатьПодписьДляНовыхСообщений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "ФорматПодписиДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ФорматПодписиДляНовыхСообщений",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 7,
+ "name": "ГруппаВключатьФорматНовые",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 8,
+ "name": "СтраницыПодписьДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы подпись для новых сообщений"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 9,
+ "name": "СтраницаНовоеСообщениеПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница новое сообщение простой текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "ПодписьДляНовыхСообщенийПростойТекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПодписьДляНовыхСообщенийПростойТекст",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 10,
+ "name": "СтраницаНовоеСообщениеФорматированныйТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница новое сообщение форматированный текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 15,
+ "name": "ГруппаКомандыФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды форматированный документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "FormattedDocumentField",
+ "id": 11,
+ "name": "НовоеСообщениеФорматированныйДокумент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "НовоеСообщениеФорматированныйДокумент",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 87,
+ "name": "ПодписьПриОтвете",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись при ответе"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 18,
+ "name": "ГруппаПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись при ответе или пересылке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 20,
+ "name": "ВключатьПодписьПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись при ответе или пересылке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВключатьПодписьПриОтветеПересылке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "ФорматПодписиПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ФорматПодписиПриОтветеПересылке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 24,
+ "name": "СтраницыПодписьПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы подпись при ответе пересылке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 25,
+ "name": "СтраницаПриОтветеПересылкеПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница при ответе пересылке простой текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 27,
+ "name": "ПодписьПриОтветеПересылкеПростойТекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПодписьПриОтветеПересылкеПростойТекст",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 26,
+ "name": "СтраницаПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница при ответе пересылке простой текст"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 31,
+ "name": "ГруппаКомандыПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды при ответе пересылке форматированный документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "FormattedDocumentField",
+ "id": 29,
+ "name": "ПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПриОтветеПересылкеФорматированныйДокумент",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 34,
+ "name": "ОтслеживаниеПисем",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отслеживание писем"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 39,
+ "name": "ГруппаДляОтправляемыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Для отправляемых сообщений запрашивать:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 37,
+ "name": "ВсегдаЗапрашиватьУведомлениеОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомление о прочтении"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВсегдаЗапрашиватьУведомлениеОПрочтении",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 35,
+ "name": "ВсегдаЗапрашиватьУведомленияОДоставке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомление о доставке"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ВсегдаЗапрашиватьУведомленияОДоставке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 40,
+ "name": "ПорядокОтветовНаЗапросыУведомленийОПрочтении",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ПорядокОтветовНаЗапросыУведомленийОПрочтении",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 47,
+ "name": "Прочее",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Прочее"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 50,
+ "name": "ОтображатьТелоИсходногоПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ОтображатьТелоИсходногоПисьма",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 52,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ВключатьТелоИсходногоПисьма",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 45,
+ "name": "ОтправлятьСообщенияСразу",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлять сообщения сразу "
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОтправлятьСообщенияСразу",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "НовоеСообщениеФорматированныйДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Новое сообщение форматированный документ"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПриОтветеПересылкеФорматированныйДокумент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 1,
+ "name": "НастройкиХранилище",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ФорматПодписиДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи для новых сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ПодписьДляНовыхСообщенийПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись для новых сообщений простой текст"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВключатьПодписьПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись при ответе или пересылке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ВключатьПодписьДляНовыхСообщений",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать подпись для новых сообщений"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ФорматПодписиПриОтветеПересылке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Формат подписи при ответе пересылке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ПодписьПриОтветеПересылкеПростойТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подпись при ответе пересылке простой текст"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ВсегдаЗапрашиватьУведомлениеОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всегда запрашивать уведомление о прочтении"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ВсегдаЗапрашиватьУведомленияОДоставке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Всегда запрашивать уведомления о доставке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ПорядокОтветовНаЗапросыУведомленийОПрочтении",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Порядок ответов на запросы уведомлений о прочтении"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ОтправлятьСообщенияСразу",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отправлять сообщения сразу"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ОтображатьТелоИсходногоПисьма",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отображать тело исходного письма при ответе или пересылке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 15,
+ "name": "ВключатьТелоИсходногоПисьма",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Включать тело исходного письма при ответе пересылке"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "cb1d4a41-20a9-4d76-8798-d47d8858bff1",
+ "name": "ВыборТипаПредмета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "DocumentJournal.Взаимодействия.Form.ВыборТипаПредмета",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Форма.ВыборТипаПредмета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор типа предмета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ВыборТипаПредмета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Forms/ВыборТипаПредмета/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выберите тип предмета"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 1,
+ "name": "ТаблицаТиповПредметов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Таблица типов предметов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ТаблицаТиповПредметов",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "ТаблицаТиповПредметовПредставлениеТипа",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "ТаблицаТиповПредметов.ПредставлениеТипа",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 23,
+ "name": "НеОтображатьВзаимодействия",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ },
+ "dataPath": {
+ "segments": "НеОтображатьВзаимодействия",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ТаблицаТиповПредметов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Таблица типов предметов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ТекущийТипПредмета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem[3]/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НеОтображатьВзаимодействия",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Не отображать взаимодействия"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Взаимодействия",
+ "objectBelonging": "OWN",
+ "registeredDocuments": [
+ [
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Встреча",
+ "mdoRefRu": "Документ.Встреча"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ТелефонныйЗвонок",
+ "mdoRefRu": "Документ.ТелефонныйЗвонок"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоВходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоВходящее"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоИсходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоИсходящее"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЗапланированноеВзаимодействие",
+ "mdoRefRu": "Документ.ЗапланированноеВзаимодействие"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.СообщениеSMS",
+ "mdoRefRu": "Документ.СообщениеSMS"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Взаимодействия"
+ ]
+ ]
+ },
+ "templates": [
+ [
+ {
+ "uuid": "a2b4110b-4d9c-40fd-ab46-bfa08d2eb993",
+ "name": "СхемаОтборВзаимодействия",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.СхемаОтборВзаимодействия",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.СхемаОтборВзаимодействия"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Схема отбор взаимодействия"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ОсновнойНаборДанных",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 142,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tСостоянияПредметовВзаимодействий.Активен КАК ПредметАктивен,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t{ЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\t\tЛЕВОЕ СОЕДИНЕНИЕ РегистрСведений.СостоянияПредметовВзаимодействий КАК СостоянияПредметовВзаимодействий\n\t\t\tПО ПредметыВзаимодействий.Предмет = СостоянияПредметовВзаимодействий.Предмет\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Номер",
+ "name": "Номер"
+ },
+ {
+ "dataPath": "Проведен",
+ "name": "Проведен"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Автор",
+ "name": "Автор"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ },
+ {
+ "dataPath": "ЕстьВложения",
+ "name": "ЕстьВложения"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "ТипПредмета",
+ "name": "ТипПредмета"
+ },
+ {
+ "dataPath": "УчетнаяЗапись",
+ "name": "УчетнаяЗапись"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "Папка",
+ "name": "Папка"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "ПолученоОтправлено",
+ "name": "ПолученоОтправлено"
+ },
+ {
+ "dataPath": "Размер",
+ "name": "Размер"
+ },
+ {
+ "dataPath": "ПредметАктивен",
+ "name": "ПредметАктивен"
+ },
+ {
+ "dataPath": "Важность",
+ "name": "Важность"
+ },
+ {
+ "dataPath": "ВажностьНомерКартинки",
+ "name": "ВажностьНомерКартинки"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Templates/СхемаОтборВзаимодействия/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "4f262b7f-927e-45f2-ad90-9d5e1b3155d1",
+ "name": "ИерархияВзаимодействийПредмет",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.ИерархияВзаимодействийПредмет",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.ИерархияВзаимодействийПредмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Иерархия взаимодействий предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ИерархияВзаимодействий",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 90,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВзаимодействия.Ссылка,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "ВзаимодействиеОснование",
+ "name": "ВзаимодействиеОснование"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "НомерКартинки",
+ "name": "НомерКартинки"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[2]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Templates/ИерархияВзаимодействийПредмет/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "9f4b8e36-83ff-4694-8540-b5f47b18395f",
+ "name": "ИерархияВзаимодействийКонтакт",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.ИерархияВзаимодействийКонтакт",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.ИерархияВзаимодействийКонтакт"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Иерархия взаимодействий контакт"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ИерархияВзаимодействий",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 120,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка КАК Ссылка\nПОМЕСТИТЬ ВзаимодействияПоКонтакту\nИЗ\n\tРегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ ЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tПО КонтактыВзаимодействий.Взаимодействие = Взаимодействия.Ссылка\nГДЕ\n\tКонтактыВзаимодействий.Контакт = &Контакт\n{ГДЕ\n\t(Взаимодействия.Дата МЕЖДУ &НачалоПериода И &КонецПериода)}\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ РАЗЛИЧНЫЕ\n\tВзаимодействия.Ссылка,\n\tВзаимодействия.Ответственный,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Входящий\nПОМЕСТИТЬ ПредОтбор\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)\n;\n\n////////////////////////////////////////////////////////////////////////////////\nВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tВЫБОР\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.Встреча\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 10\n\t\t\t\t\tИНАЧЕ 0\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЗапланированноеВзаимодействие\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 11\n\t\t\t\t\tИНАЧЕ 1\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ТелефонныйЗвонок\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 12\n\t\t\t\t\tИНАЧЕ 2\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоВходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 13\n\t\t\t\t\tИНАЧЕ 3\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.ЭлектронноеПисьмоИсходящее\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 14\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 15\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СтатусыИсходящегоЭлектронногоПисьма.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 16\n\t\t\t\t\t\t\tИНАЧЕ 4\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\t\tКОГДА Взаимодействия.Ссылка ССЫЛКА Документ.СообщениеSMS\n\t\t\tТОГДА ВЫБОР\n\t\t\t\t\tКОГДА Взаимодействия.ПометкаУдаления\n\t\t\t\t\t\tТОГДА 22\n\t\t\t\t\tИНАЧЕ ВЫБОР\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Черновик)\n\t\t\t\t\t\t\t\tТОГДА 17\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Исходящее)\n\t\t\t\t\t\t\t\tТОГДА 18\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставляется)\n\t\t\t\t\t\t\t\tТОГДА 19\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.ЧастичноДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 21\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.НеДоставлено)\n\t\t\t\t\t\t\t\tТОГДА 23\n\t\t\t\t\t\t\tКОГДА Взаимодействия.СтатусИсходящегоПисьма = ЗНАЧЕНИЕ(Перечисление.СостоянияДокументаСообщениеSMS.Доставлено)\n\t\t\t\t\t\t\t\tТОГДА 24\n\t\t\t\t\t\t\tИНАЧЕ 17\n\t\t\t\t\t\tКОНЕЦ\n\t\t\t\tКОНЕЦ\n\tКОНЕЦ КАК НомерКартинки,\n\tВзаимодействия.Ссылка КАК Ссылка,\n\tВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредОтбор.Ссылка, НЕОПРЕДЕЛЕНО) КАК ВзаимодействиеОснование,\n\tПредметыПапкиВзаимодействий.Предмет,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.Рассмотрено, ЛОЖЬ) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыПапкиВзаимодействий.РассмотретьПосле, ДАТАВРЕМЯ(1, 1, 1)) КАК РассмотретьПосле,\n\tВзаимодействия.Дата,\n\tВзаимодействия.Тема,\n\tВзаимодействия.Участники,\n\tВзаимодействия.ПометкаУдаления,\n\tВзаимодействия.Тип,\n\tВзаимодействия.СтатусИсходящегоПисьма,\n\tВзаимодействия.Входящий\nИЗ\n\tЖурналДокументов.Взаимодействия КАК Взаимодействия\n\t\tЛЕВОЕ СОЕДИНЕНИЕ ПредОтбор КАК ПредОтбор\n\t\tПО Взаимодействия.ВзаимодействиеОснование = ПредОтбор.Ссылка\n\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыПапкиВзаимодействий\n\t\tПО Взаимодействия.Ссылка = ПредметыПапкиВзаимодействий.Взаимодействие\nГДЕ\n\tВзаимодействия.Ссылка В\n\t\t\t(ВЫБРАТЬ\n\t\t\t\tВзаимодействияПоКонтакту.Ссылка\n\t\t\tИЗ\n\t\t\t\tВзаимодействияПоКонтакту КАК ВзаимодействияПоКонтакту)"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "ВзаимодействиеОснование",
+ "name": "ВзаимодействиеОснование"
+ },
+ {
+ "dataPath": "НомерКартинки",
+ "name": "НомерКартинки"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[3]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Templates/ИерархияВзаимодействийКонтакт/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ },
+ {
+ "uuid": "b4c026eb-4271-4366-b529-1cdfe2874563",
+ "name": "СхемаОтборВзаимодействияКонтакт",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "DocumentJournal.Взаимодействия.Template.СхемаОтборВзаимодействияКонтакт",
+ "mdoRefRu": "ЖурналДокументов.Взаимодействия.Макет.СхемаОтборВзаимодействияКонтакт"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Схема отбор взаимодействия контакт"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "ОсновнойНаборДанных",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 158,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ РАЗРЕШЕННЫЕ\n\tЖурналДокументовВзаимодействия.Ссылка,\n\tЖурналДокументовВзаимодействия.Дата,\n\tЖурналДокументовВзаимодействия.ПометкаУдаления,\n\tЖурналДокументовВзаимодействия.Номер,\n\tЖурналДокументовВзаимодействия.Проведен,\n\tЖурналДокументовВзаимодействия.Автор,\n\tЖурналДокументовВзаимодействия.Входящий,\n\tЖурналДокументовВзаимодействия.Тема,\n\tЖурналДокументовВзаимодействия.Ответственный КАК Ответственный,\n\tЕСТЬNULL(ПредметыВзаимодействий.Рассмотрено, Ложь) КАК Рассмотрено,\n\tЕСТЬNULL(ПредметыВзаимодействий.РассмотретьПосле, ДатаВремя(1,1,1)) КАК РассмотретьПосле,\n\tЖурналДокументовВзаимодействия.Участники,\n\tЖурналДокументовВзаимодействия.Тип,\n\tЖурналДокументовВзаимодействия.СтатусИсходящегоПисьма,\n\tЖурналДокументовВзаимодействия.ЕстьВложения,\n\tЖурналДокументовВзаимодействия.УчетнаяЗапись,\n\tЕСТЬNULL(ПредметыВзаимодействий.Предмет, НЕОПРЕДЕЛЕНО) КАК Предмет,\n\tТИПЗНАЧЕНИЯ(ПредметыВзаимодействий.Предмет) КАК ТипПредмета,\n\tПредметыВзаимодействий.ПапкаЭлектронногоПисьма КАК Папка,\n\tЖурналДокументовВзаимодействия.ПолученоОтправлено,\n\tЖурналДокументовВзаимодействия.Размер,\n\tЖурналДокументовВзаимодействия.Важность,\n\tВЫБОР\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Высокая) ТОГДА 2\n\t\tКОГДА ЖурналДокументовВзаимодействия.Важность = ЗНАЧЕНИЕ(Перечисление.ВариантыВажностиВзаимодействия.Низкая) ТОГДА 0\n\t\tИНАЧЕ 1\n\tКОНЕЦ КАК ВажностьНомерКартинки\nИЗ\n\tЖурналДокументов.Взаимодействия КАК ЖурналДокументовВзаимодействия\n\t\t\tВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.ПредметыПапкиВзаимодействий КАК ПредметыВзаимодействий\n\t\tПО ЖурналДокументовВзаимодействия.Ссылка = ПредметыВзаимодействий.Взаимодействие\n\t\t{ВНУТРЕННЕЕ СОЕДИНЕНИЕ РегистрСведений.КонтактыВзаимодействий КАК КонтактыВзаимодействий\nПО ЖурналДокументовВзаимодействия.Ссылка = КонтактыВзаимодействий.Взаимодействие}\n{ГДЕ\n\tЖурналДокументовВзаимодействия.Ссылка КАК Поиск\n\t,\nКонтактыВзаимодействий.Контакт}\n{ГДЕ\n\t(ЖурналДокументовВзаимодействия.Дата МЕЖДУ &ДатаНачала И &ДатаОкончания)}"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Дата",
+ "name": "Дата"
+ },
+ {
+ "dataPath": "ПометкаУдаления",
+ "name": "ПометкаУдаления"
+ },
+ {
+ "dataPath": "Номер",
+ "name": "Номер"
+ },
+ {
+ "dataPath": "Проведен",
+ "name": "Проведен"
+ },
+ {
+ "dataPath": "Ссылка",
+ "name": "Ссылка"
+ },
+ {
+ "dataPath": "Автор",
+ "name": "Автор"
+ },
+ {
+ "dataPath": "Входящий",
+ "name": "Входящий"
+ },
+ {
+ "dataPath": "ЕстьВложения",
+ "name": "ЕстьВложения"
+ },
+ {
+ "dataPath": "Ответственный",
+ "name": "Ответственный"
+ },
+ {
+ "dataPath": "Предмет",
+ "name": "Предмет"
+ },
+ {
+ "dataPath": "СтатусИсходящегоПисьма",
+ "name": "СтатусИсходящегоПисьма"
+ },
+ {
+ "dataPath": "Участники",
+ "name": "Участники"
+ },
+ {
+ "dataPath": "ТипПредмета",
+ "name": "ТипПредмета"
+ },
+ {
+ "dataPath": "УчетнаяЗапись",
+ "name": "УчетнаяЗапись"
+ },
+ {
+ "dataPath": "Рассмотрено",
+ "name": "Рассмотрено"
+ },
+ {
+ "dataPath": "РассмотретьПосле",
+ "name": "РассмотретьПосле"
+ },
+ {
+ "dataPath": "Тип",
+ "name": "Тип"
+ },
+ {
+ "dataPath": "Папка",
+ "name": "Папка"
+ },
+ {
+ "dataPath": "Тема",
+ "name": "Тема"
+ },
+ {
+ "dataPath": "ПолученоОтправлено",
+ "name": "ПолученоОтправлено"
+ },
+ {
+ "dataPath": "Размер",
+ "name": "Размер"
+ },
+ {
+ "dataPath": "Важность",
+ "name": "Важность"
+ },
+ {
+ "dataPath": "ВажностьНомерКартинки",
+ "name": "ВажностьНомерКартинки"
+ },
+ {
+ "dataPath": "Контакт",
+ "name": "Контакт"
+ },
+ {
+ "dataPath": "Поиск",
+ "name": "Поиск"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/templates/c/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate[4]/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/DocumentJournals/Взаимодействия/Templates/СхемаОтборВзаимодействияКонтакт/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner"
+ }
+ }
+ ],
+ []
+ ],
+ "uuid": "7da57c89-af2c-445a-96f7-39250f70306f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json" "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json"
new file mode 100644
index 000000000..79db00c5d
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260.json"
@@ -0,0 +1,1770 @@
+{"com.github._1c_syntax.bsl.mdo.Document": {
+ "attributes": [
+ [
+ {
+ "uuid": "acf15b79-a6c4-4c46-8013-50d3b223baf6",
+ "name": "Опрос",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Опрос",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Опрос"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Опрос"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Анкета",
+ "mdoRefRu": "Документ.Анкета"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f6a29b80-e4c3-4c4f-8e2c-d4dda851d813",
+ "name": "Респондент",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Респондент",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Респондент"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Респондент"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2d8d5d74-2bc0-4282-af66-e4a37694c147",
+ "name": "ДатаРедактирования",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.ДатаРедактирования",
+ "mdoRefRu": "Документ.Анкета.Реквизит.ДатаРедактирования"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата редактирования"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "cfd31341-287b-4684-9ac0-b28b4e066f15",
+ "name": "РедактируемыйРаздел",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.РедактируемыйРаздел",
+ "mdoRefRu": "Документ.Анкета.Реквизит.РедактируемыйРаздел"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Редактируемый раздел"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "81de1b0b-7f2d-4098-ae99-061c6a90dc29",
+ "name": "Комментарий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Комментарий",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Комментарий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "77c8a065-a8aa-4f39-93b6-c88f4c38ec66",
+ "name": "Интервьюер",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Интервьюер",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Интервьюер"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Интервьюер"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "366fa6da-d3bf-4bb0-9a55-a307f9edee6a",
+ "name": "ШаблонАнкеты",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.ШаблонАнкеты",
+ "mdoRefRu": "Документ.Анкета.Реквизит.ШаблонАнкеты"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон анкеты"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "dd0610c8-cd87-4fe2-8a1f-70157132785b",
+ "name": "РежимАнкетирования",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.РежимАнкетирования",
+ "mdoRefRu": "Документ.Анкета.Реквизит.РежимАнкетирования"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Режим анкетирования"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "f829e2a9-5bdb-4171-8b32-8d10d5968813",
+ "name": "ФормаДокумента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Анкета.Form.ФормаДокумента",
+ "mdoRefRu": "Документ.Анкета.Форма.ФормаДокумента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма документа"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Forms/ФормаДокумента/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Forms/ФормаДокумента/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWrite",
+ "name": "ПослеЗаписи"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 182,
+ "name": "КоманднаяПанельШапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "ButtonGroup",
+ "id": 190,
+ "name": "ФормаГруппаКомандыФормы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 86,
+ "name": "ФормаКоманднаяПанельПровестиИЗакрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 192,
+ "name": "Провести",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 91,
+ "name": "ФормаЗаполненияЗаписать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 92,
+ "name": "ФормаЗаполненияПровестиЗакрыть",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Завершить и закрыть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 87,
+ "name": "ФормаКоманднаяПанельЗаписать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 215,
+ "name": "ФормаПеречитать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 219,
+ "name": "ФормаОтменаПроведения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 217,
+ "name": "ФормаУстановитьПометкуУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 186,
+ "name": "ФормаГлобальныеКоманды",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 188,
+ "name": "ПодменюПечать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Печать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 204,
+ "name": "ПодменюАнкетирование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 194,
+ "name": "ПоказатьВСпискеАнкета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 93,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 15,
+ "name": "ГруппаОсновныеРеквизиты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основные реквизиты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 184,
+ "name": "ГруппаШапкаЛево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка лево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 2,
+ "name": "ГруппаНомерДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 212,
+ "name": "РежимАнкетирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РежимАнкетирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "Опрос",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Опрос",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 206,
+ "name": "ШаблонАнкеты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ШаблонАнкеты",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 37,
+ "name": "ГруппаШапкаПраво",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка право"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "ДатаРедактирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаРедактирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "Респондент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Респондент",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 209,
+ "name": "Интервьюер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Интервьюер",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 158,
+ "name": "ГруппаЗаполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 178,
+ "name": "КоманднаяПанельДокументАнкетаЛево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель документ анкета лево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBarButton",
+ "id": 156,
+ "name": "СкрытьПоказатьДеревоРазделовДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показать разделы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 180,
+ "name": "КоманднаяПанельДокументаАнкетаПраво",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель документа анкета право"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 163,
+ "name": "ПредыдущийРаздел",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 165,
+ "name": "СледующийРаздел",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Далее >"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 68,
+ "name": "ГруппаДеревоРазделовФормаЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов форма заполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 77,
+ "name": "ГруппаДеревоРазделов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 69,
+ "name": "ДеревоРазделов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоРазделов",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "LabelField",
+ "id": 72,
+ "name": "ДеревоРазделовФормулировка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Раздел"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоРазделов.Формулировка",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаТелоАнкеты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тело анкеты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 78,
+ "name": "НадписьВступление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 95,
+ "name": "ГруппаОжидание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 103,
+ "name": "ГруппаОжиданиеЭлементы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание элементы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 96,
+ "name": "ДекорацияОжиданиеЭлементы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Декорация ожидание элементы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "PictureDecoration",
+ "id": 98,
+ "name": "КартинкаДлительныйПроцесс",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подождите пожалуйста…\nОткрывается раздел анкеты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 100,
+ "name": "НадписьПодождите",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подождите пожалуйста… Открывается раздел анкеты\n"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 176,
+ "name": "КоманднаяПанельПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель подвал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 107,
+ "name": "ПредыдущийРазделПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "< Назад"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 108,
+ "name": "СледующийРазделПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Далее >"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 111,
+ "name": "Комментарий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Комментарий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ОтборРеспондентов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИмяМетаданныхРеспондент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ВозможностьПредварительногоСохранения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ШаблонАнкеты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ВопросыПредставлениеТипы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ТаблицаВопросовРаздела",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВариантыОтветовНаВопросы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ПодчиненныеВопросы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 12,
+ "name": "ДеревоРазделов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ДобавленныеДинамическиРеквизиты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "Вступление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 14,
+ "name": "Заключение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 15,
+ "name": "НомерТекущегоРаздела",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ПредыдущийРазделБезВопросов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ИмяЭлементаДляПозиционирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ЭтоСеансОбычногоПользователя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 20,
+ "name": "ПараметрыПодключаемыхКоманд",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "647ba8f8-57f7-4c19-af59-525517c1e392",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Анкета.Form.ФормаСписка",
+ "mdoRefRu": "Документ.Анкета.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 23,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 6,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 4,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "РежимАнкетирования",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Режим"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.РежимАнкетирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "ШаблонАнкеты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шаблон"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ШаблонАнкеты",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 8,
+ "name": "Опрос",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Опрос",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 10,
+ "name": "Респондент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Респондент",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "ДатаРедактирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаРедактирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 20,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Анкета",
+ "objectBelonging": "OWN",
+ "registerRecords": [
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет",
+ "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет"
+ }
+ ],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Анкета"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "39062cb3-4ae8-4c0d-889b-038a55179946",
+ "name": "Состав",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Анкета.TabularSection.Состав",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Состав"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "c62d4212-36ca-4afb-bac9-269b6f64ca51",
+ "name": "Вопрос",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.Вопрос",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.Вопрос"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Вопрос"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5cec5e16-46ad-4f8c-b869-f5b1cc487884",
+ "name": "ЭлементарныйВопрос",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.ЭлементарныйВопрос",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.ЭлементарныйВопрос"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Элементарный вопрос"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ca0363bb-81c2-4fce-b2f0-e8f42d118a74",
+ "name": "НомерЯчейки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.НомерЯчейки",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.НомерЯчейки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Номер ячейки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "7aacdf81-49fd-47a3-a36a-c483f1b05872",
+ "name": "Ответ",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.Ответ",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.Ответ"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ответ"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "857015e2-afb2-403d-bfb7-7acb5080797b",
+ "name": "ОткрытыйОтвет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.ОткрытыйОтвет",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.ОткрытыйОтвет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Открытый ответ"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [],
+ "uuid": "73eff626-a363-4a5a-879e-61ef6ce0726f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json"
new file mode 100644
index 000000000..1e9e6a8d6
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Documents.\320\220\320\275\320\272\320\265\321\202\320\260_edt.json"
@@ -0,0 +1,1762 @@
+{"com.github._1c_syntax.bsl.mdo.Document": {
+ "attributes": [
+ [
+ {
+ "uuid": "acf15b79-a6c4-4c46-8013-50d3b223baf6",
+ "name": "Опрос",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Опрос",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Опрос"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Опрос"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Анкета",
+ "mdoRefRu": "Документ.Анкета"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f6a29b80-e4c3-4c4f-8e2c-d4dda851d813",
+ "name": "Респондент",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Респондент",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Респондент"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Респондент"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2d8d5d74-2bc0-4282-af66-e4a37694c147",
+ "name": "ДатаРедактирования",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.ДатаРедактирования",
+ "mdoRefRu": "Документ.Анкета.Реквизит.ДатаРедактирования"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата редактирования"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "cfd31341-287b-4684-9ac0-b28b4e066f15",
+ "name": "РедактируемыйРаздел",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.РедактируемыйРаздел",
+ "mdoRefRu": "Документ.Анкета.Реквизит.РедактируемыйРаздел"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Редактируемый раздел"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "81de1b0b-7f2d-4098-ae99-061c6a90dc29",
+ "name": "Комментарий",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Комментарий",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Комментарий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "77c8a065-a8aa-4f39-93b6-c88f4c38ec66",
+ "name": "Интервьюер",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.Интервьюер",
+ "mdoRefRu": "Документ.Анкета.Реквизит.Интервьюер"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Интервьюер"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "366fa6da-d3bf-4bb0-9a55-a307f9edee6a",
+ "name": "ШаблонАнкеты",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.ШаблонАнкеты",
+ "mdoRefRu": "Документ.Анкета.Реквизит.ШаблонАнкеты"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Шаблон анкеты"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "dd0610c8-cd87-4fe2-8a1f-70157132785b",
+ "name": "РежимАнкетирования",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.Attribute.РежимАнкетирования",
+ "mdoRefRu": "Документ.Анкета.Реквизит.РежимАнкетирования"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Режим анкетирования"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "commands": [],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "f829e2a9-5bdb-4171-8b32-8d10d5968813",
+ "name": "ФормаДокумента",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Анкета.Form.ФормаДокумента",
+ "mdoRefRu": "Документ.Анкета.Форма.ФормаДокумента"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма документа"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/Forms/ФормаДокумента/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/Forms/ФормаДокумента/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 182,
+ "name": "КоманднаяПанельШапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 190,
+ "name": "ФормаГруппаКомандыФормы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 86,
+ "name": "ФормаКоманднаяПанельПровестиИЗакрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 192,
+ "name": "Провести",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 91,
+ "name": "ФормаЗаполненияЗаписать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 92,
+ "name": "ФормаЗаполненияПровестиЗакрыть",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Завершить и закрыть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 87,
+ "name": "ФормаКоманднаяПанельЗаписать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 215,
+ "name": "ФормаПеречитать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 219,
+ "name": "ФормаОтменаПроведения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 217,
+ "name": "ФормаУстановитьПометкуУдаления",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 186,
+ "name": "ФормаГлобальныеКоманды",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 188,
+ "name": "ПодменюПечать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Печать"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 204,
+ "name": "ПодменюАнкетирование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 194,
+ "name": "ПоказатьВСпискеАнкета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 93,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 15,
+ "name": "ГруппаОсновныеРеквизиты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основные реквизиты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 184,
+ "name": "ГруппаШапкаЛево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка лево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 2,
+ "name": "ГруппаНомерДата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 3,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 212,
+ "name": "РежимАнкетирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РежимАнкетирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "Опрос",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Опрос",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 206,
+ "name": "ШаблонАнкеты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ШаблонАнкеты",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 37,
+ "name": "ГруппаШапкаПраво",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка право"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "ДатаРедактирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаРедактирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "Респондент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Респондент",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 209,
+ "name": "Интервьюер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Интервьюер",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 158,
+ "name": "ГруппаЗаполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 178,
+ "name": "КоманднаяПанельДокументАнкетаЛево",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель документ анкета лево"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 156,
+ "name": "СкрытьПоказатьДеревоРазделовДокумент",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показать разделы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 180,
+ "name": "КоманднаяПанельДокументаАнкетаПраво",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель документа анкета право"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 163,
+ "name": "ПредыдущийРаздел",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 165,
+ "name": "СледующийРаздел",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Далее >"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 68,
+ "name": "ГруппаДеревоРазделовФормаЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов форма заполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 77,
+ "name": "ГруппаДеревоРазделов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 69,
+ "name": "ДеревоРазделов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоРазделов",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "LabelField",
+ "id": 72,
+ "name": "ДеревоРазделовФормулировка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Раздел"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоРазделов.Формулировка",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаТелоАнкеты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тело анкеты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 78,
+ "name": "НадписьВступление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 95,
+ "name": "ГруппаОжидание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 103,
+ "name": "ГруппаОжиданиеЭлементы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание элементы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 96,
+ "name": "ДекорацияОжиданиеЭлементы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Декорация ожидание элементы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 98,
+ "name": "КартинкаДлительныйПроцесс",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подождите пожалуйста…\nОткрывается раздел анкеты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 100,
+ "name": "НадписьПодождите",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подождите пожалуйста… Открывается раздел анкеты\n"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 176,
+ "name": "КоманднаяПанельПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель подвал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 107,
+ "name": "ПредыдущийРазделПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "< Назад"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 108,
+ "name": "СледующийРазделПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Далее >"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 111,
+ "name": "Комментарий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Комментарий",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ОтборРеспондентов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИмяМетаданныхРеспондент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ВозможностьПредварительногоСохранения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ШаблонАнкеты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ВопросыПредставлениеТипы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ТаблицаВопросовРаздела",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВариантыОтветовНаВопросы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ПодчиненныеВопросы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 12,
+ "name": "ДеревоРазделов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево разделов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ДобавленныеДинамическиРеквизиты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "Вступление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 14,
+ "name": "Заключение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 15,
+ "name": "НомерТекущегоРаздела",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ПредыдущийРазделБезВопросов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ИмяЭлементаДляПозиционирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ЭтоСеансОбычногоПользователя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ },
+ {
+ "id": 20,
+ "name": "ПараметрыПодключаемыхКоманд",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "647ba8f8-57f7-4c19-af59-525517c1e392",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Document.Анкета.Form.ФормаСписка",
+ "mdoRefRu": "Документ.Анкета.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/Forms/ФормаСписка/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 23,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 6,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 4,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 34,
+ "name": "РежимАнкетирования",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Режим"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.РежимАнкетирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 37,
+ "name": "ШаблонАнкеты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шаблон"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ШаблонАнкеты",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 8,
+ "name": "Опрос",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Опрос",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 10,
+ "name": "Респондент",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Респондент",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "ДатаРедактирования",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаРедактирования",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 20,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "Анкета",
+ "objectBelonging": "OWN",
+ "registerRecords": [
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет",
+ "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет"
+ }
+ ],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Анкета"
+ ]
+ ]
+ },
+ "tabularSections": [
+ {
+ "uuid": "39062cb3-4ae8-4c0d-889b-038a55179946",
+ "name": "Состав",
+ "mdoReference": {
+ "type": "TABULAR_SECTION",
+ "mdoRef": "Document.Анкета.TabularSection.Состав",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Состав"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "attributes": [
+ [
+ {
+ "uuid": "c62d4212-36ca-4afb-bac9-269b6f64ca51",
+ "name": "Вопрос",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.Вопрос",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.Вопрос"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Вопрос"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5cec5e16-46ad-4f8c-b869-f5b1cc487884",
+ "name": "ЭлементарныйВопрос",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.ЭлементарныйВопрос",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.ЭлементарныйВопрос"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Элементарный вопрос"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "ca0363bb-81c2-4fce-b2f0-e8f42d118a74",
+ "name": "НомерЯчейки",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.НомерЯчейки",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.НомерЯчейки"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Номер ячейки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "7aacdf81-49fd-47a3-a36a-c483f1b05872",
+ "name": "Ответ",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.Ответ",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.Ответ"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ответ"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "857015e2-afb2-403d-bfb7-7acb5080797b",
+ "name": "ОткрытыйОтвет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Document.Анкета.TabularSection.Состав.Attribute.ОткрытыйОтвет",
+ "mdoRefRu": "Документ.Анкета.ТабличнаяЧасть.Состав.Реквизит.ОткрытыйОтвет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Открытый ответ"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/tabularSections/com.github._1c_syntax.bsl.mdo.children.ObjectTabularSection/mdoReference"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "templates": [],
+ "uuid": "73eff626-a363-4a5a-879e-61ef6ce0726f"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Enums.\320\241\321\202\320\260\321\202\321\203\321\201\321\213\320\236\320\261\321\200\320\260\320\261\320\276\321\202\321\207\320\270\320\272\320\276\320\262\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/Enums.\320\241\321\202\320\260\321\202\321\203\321\201\321\213\320\236\320\261\321\200\320\260\320\261\320\276\321\202\321\207\320\270\320\272\320\276\320\262\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217.json"
new file mode 100644
index 000000000..5a675e3ba
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Enums.\320\241\321\202\320\260\321\202\321\203\321\201\321\213\320\236\320\261\321\200\320\260\320\261\320\276\321\202\321\207\320\270\320\272\320\276\320\262\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217.json"
@@ -0,0 +1,171 @@
+{"com.github._1c_syntax.bsl.mdo.Enum": {
+ "children": [
+ {
+ "uuid": "422a0e10-361f-46ba-b92e-3088d81e12a4",
+ "name": "Выполнен",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Выполнен",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Выполнен"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнен"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "ENUM",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления"
+ }
+ },
+ {
+ "uuid": "f37b7b25-abd2-4e19-9712-78aafceb4f43",
+ "name": "НеВыполнялся",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.НеВыполнялся",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.НеВыполнялся"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Не выполнялся"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ },
+ {
+ "uuid": "7cd4c6ea-5795-4bea-a159-1e66650c42fe",
+ "name": "Выполняется",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Выполняется",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Выполняется"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполняется"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ },
+ {
+ "uuid": "091fcffa-da7e-4375-bf0b-11cc4950b5ad",
+ "name": "Приостановлен",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Приостановлен",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Приостановлен"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Приостановлен"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ },
+ {
+ "uuid": "57e91491-73b6-43f7-b7f8-26efec56ce9e",
+ "name": "Ошибка",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Ошибка",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Ошибка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ошибка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "enumValues": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[5]"
+ }
+ ],
+ []
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Enums/СтатусыОбработчиковОбновления/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "СтатусыОбработчиковОбновления",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Статусы обработчиков обновления"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "36b15776-5211-4afa-9b6c-c042121218c0"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Enums.\320\241\321\202\320\260\321\202\321\203\321\201\321\213\320\236\320\261\321\200\320\260\320\261\320\276\321\202\321\207\320\270\320\272\320\276\320\262\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Enums.\320\241\321\202\320\260\321\202\321\203\321\201\321\213\320\236\320\261\321\200\320\260\320\261\320\276\321\202\321\207\320\270\320\272\320\276\320\262\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217_edt.json"
new file mode 100644
index 000000000..c75ec84f1
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Enums.\320\241\321\202\320\260\321\202\321\203\321\201\321\213\320\236\320\261\321\200\320\260\320\261\320\276\321\202\321\207\320\270\320\272\320\276\320\262\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\321\217_edt.json"
@@ -0,0 +1,171 @@
+{"com.github._1c_syntax.bsl.mdo.Enum": {
+ "children": [
+ {
+ "uuid": "422a0e10-361f-46ba-b92e-3088d81e12a4",
+ "name": "Выполнен",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Выполнен",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Выполнен"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнен"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "ENUM",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления"
+ }
+ },
+ {
+ "uuid": "f37b7b25-abd2-4e19-9712-78aafceb4f43",
+ "name": "НеВыполнялся",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.НеВыполнялся",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.НеВыполнялся"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Не выполнялся"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ },
+ {
+ "uuid": "7cd4c6ea-5795-4bea-a159-1e66650c42fe",
+ "name": "Выполняется",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Выполняется",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Выполняется"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполняется"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ },
+ {
+ "uuid": "091fcffa-da7e-4375-bf0b-11cc4950b5ad",
+ "name": "Приостановлен",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Приостановлен",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Приостановлен"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Приостановлен"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ },
+ {
+ "uuid": "57e91491-73b6-43f7-b7f8-26efec56ce9e",
+ "name": "Ошибка",
+ "mdoReference": {
+ "type": "ENUM_VALUE",
+ "mdoRef": "Enum.СтатусыОбработчиковОбновления.EnumValue.Ошибка",
+ "mdoRefRu": "Перечисление.СтатусыОбработчиковОбновления.ЗначениеПеречисления.Ошибка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ошибка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ }
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "enumValues": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue[5]"
+ }
+ ],
+ []
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Enums/СтатусыОбработчиковОбновления/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "СтатусыОбработчиковОбновления",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Статусы обработчиков обновления"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "36b15776-5211-4afa-9b6c-c042121218c0"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/EventSubscriptions.\320\222\320\260\321\200\320\270\320\260\320\275\321\202\321\213\320\236\321\202\321\207\320\265\321\202\320\276\320\262\320\237\320\265\321\200\320\265\320\264\320\243\320\264\320\260\320\273\320\265\320\275\320\270\320\265\320\274\320\230\320\264\320\265\320\275\321\202\320\270\321\204\320\270\320\272\320\260\321\202\320\276\321\200\320\260\320\236\320\261\321\212\320\265\320\272\321\202\320\260\320\234\320\265\321\202\320\260\320\264\320\260\320\275\320\275\321\213\321\205.json" "b/src/test/resources/fixtures/ssl_3_1/EventSubscriptions.\320\222\320\260\321\200\320\270\320\260\320\275\321\202\321\213\320\236\321\202\321\207\320\265\321\202\320\276\320\262\320\237\320\265\321\200\320\265\320\264\320\243\320\264\320\260\320\273\320\265\320\275\320\270\320\265\320\274\320\230\320\264\320\265\320\275\321\202\320\270\321\204\320\270\320\272\320\260\321\202\320\276\321\200\320\260\320\236\320\261\321\212\320\265\320\272\321\202\320\260\320\234\320\265\321\202\320\260\320\264\320\260\320\275\320\275\321\213\321\205.json"
new file mode 100644
index 000000000..acf578778
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/EventSubscriptions.\320\222\320\260\321\200\320\270\320\260\320\275\321\202\321\213\320\236\321\202\321\207\320\265\321\202\320\276\320\262\320\237\320\265\321\200\320\265\320\264\320\243\320\264\320\260\320\273\320\265\320\275\320\270\320\265\320\274\320\230\320\264\320\265\320\275\321\202\320\270\321\204\320\270\320\272\320\260\321\202\320\276\321\200\320\260\320\236\320\261\321\212\320\265\320\272\321\202\320\260\320\234\320\265\321\202\320\260\320\264\320\260\320\275\320\275\321\213\321\205.json"
@@ -0,0 +1,26 @@
+{"com.github._1c_syntax.bsl.mdo.EventSubscription": {
+ "comment": "",
+ "event": "BeforeDelete",
+ "handler": {
+ "methodPath": "CommonModule.ВариантыОтчетов.ПередУдалениемИдентификатораОбъектаМетаданных",
+ "moduleName": "ВариантыОтчетов",
+ "methodName": "ПередУдалениемИдентификатораОбъектаМетаданных"
+ },
+ "mdoReference": {
+ "type": "EVENT_SUBSCRIPTION",
+ "mdoRef": "EventSubscription.ВариантыОтчетовПередУдалениемИдентификатораОбъектаМетаданных",
+ "mdoRefRu": "ПодпискаНаСобытие.ВариантыОтчетовПередУдалениемИдентификатораОбъектаМетаданных"
+ },
+ "name": "ВариантыОтчетовПередУдалениемИдентификатораОбъектаМетаданных",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Варианты отчетов перед удалением идентификатора объекта метаданных"
+ ]
+ ]
+ },
+ "uuid": "a64b15fa-fc34-43fe-a366-d27c0f1c3df2"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json" "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json"
new file mode 100644
index 000000000..5bdf859f3
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213.json"
@@ -0,0 +1,2882 @@
+{"com.github._1c_syntax.bsl.mdo.ExchangePlan": {
+ "attributes": [
+ {
+ "uuid": "5371672a-c8e0-4c12-834e-f23dd885b49a",
+ "name": "Очередь",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExchangePlan.ОбновлениеИнформационнойБазы.Attribute.Очередь",
+ "mdoRefRu": "ПланОбмена.ОбновлениеИнформационнойБазы.Реквизит.Очередь"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Очередь"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ОбновлениеИнформационнойБазы",
+ "mdoRefRu": "ПланОбмена.ОбновлениеИнформационнойБазы"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "content": [
+ [
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияРассылокОтчетов",
+ "mdoRefRu": "РегистрСведений.СостоянияРассылокОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныАнкет",
+ "mdoRefRu": "Справочник.ШаблоныАнкет"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПроцессыДляЗапуска",
+ "mdoRefRu": "РегистрСведений.ПроцессыДляЗапуска"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НаличиеФайлов",
+ "mdoRefRu": "РегистрСведений.НаличиеФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПочтовыйКлиент",
+ "mdoRefRu": "Константа.ИспользоватьПочтовыйКлиент"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьХранимыеФайлыВерсий",
+ "mdoRefRu": "РегистрСведений.УдалитьХранимыеФайлыВерсий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыАдминистрированияИБ",
+ "mdoRefRu": "Константа.ПараметрыАдминистрированияИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьШаблоныСообщений",
+ "mdoRefRu": "Константа.ИспользоватьШаблоныСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыИтоговИАгрегатов",
+ "mdoRefRu": "Константа.ПараметрыИтоговИАгрегатов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СообщенияОбменаДанными",
+ "mdoRefRu": "РегистрСведений.СообщенияОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.НаборыДополнительныхРеквизитовИСведений",
+ "mdoRefRu": "Справочник.НаборыДополнительныхРеквизитовИСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПериодыНерабочихДнейКалендаря",
+ "mdoRefRu": "РегистрСведений.ПериодыНерабочихДнейКалендаря"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПапкиЭлектронныхПисем",
+ "mdoRefRu": "Справочник.ПапкиЭлектронныхПисем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВариантыОтчетов",
+ "mdoRefRu": "Справочник.ВариантыОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет",
+ "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииОбъектов",
+ "mdoRefRu": "РегистрСведений.ВерсииОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДатаУведомленияОНовыхЗадачах",
+ "mdoRefRu": "Константа.ДатаУведомленияОНовыхЗадачах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КэшПереводов",
+ "mdoRefRu": "РегистрСведений.КэшПереводов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыКомментарииСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыКомментарииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьЭлектронныеПодписи",
+ "mdoRefRu": "Константа.ИспользоватьЭлектронныеПодписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрофилиКлючевыхОпераций",
+ "mdoRefRu": "Справочник.ПрофилиКлючевыхОпераций"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыРезервногоКопирования",
+ "mdoRefRu": "Константа.ПараметрыРезервногоКопирования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Константа.ИспользоватьДополнительныеОтчетыИОбработки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СтатистикаКонфигурации",
+ "mdoRefRu": "РегистрСведений.СтатистикаКонфигурации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НомераОтсканированныхФайлов",
+ "mdoRefRu": "РегистрСведений.НомераОтсканированныхФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.РазделыДатЗапретаИзменения",
+ "mdoRefRu": "ПланВидовХарактеристик.РазделыДатЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НеудаленныеОбъекты",
+ "mdoRefRu": "РегистрСведений.НеудаленныеОбъекты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПериодХраненияЗамеров",
+ "mdoRefRu": "Константа.ПериодХраненияЗамеров"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкиПодчиненногоУзлаРИБ",
+ "mdoRefRu": "Константа.НастройкиПодчиненногоУзлаРИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма",
+ "mdoRefRu": "РегистрСведений.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВопросыШаблонаАнкеты",
+ "mdoRefRu": "Справочник.ВопросыШаблонаАнкеты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыВремени",
+ "mdoRefRu": "РегистрСведений.ЗамерыВремени"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КурсыВалют",
+ "mdoRefRu": "РегистрСведений.КурсыВалют"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ВерсияДатЗапретаИзменения",
+ "mdoRefRu": "Константа.ВерсияДатЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкаПроксиСервера",
+ "mdoRefRu": "Константа.НастройкаПроксиСервера"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗапрещатьЗагрузкуФайловПоРасширению",
+ "mdoRefRu": "Константа.ЗапрещатьЗагрузкуФайловПоРасширению"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиСобытийСинхронизацииДанных",
+ "mdoRefRu": "РегистрСведений.ОбработчикиСобытийСинхронизацииДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВнешниеКомпоненты",
+ "mdoRefRu": "Справочник.ВнешниеКомпоненты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВИнтернете",
+ "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВИнтернете"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлючиДоступа",
+ "mdoRefRu": "Справочник.КлючиДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НаборыЗначенийДоступа",
+ "mdoRefRu": "РегистрСведений.НаборыЗначенийДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиУчетныхЗаписейЭлектроннойПочты",
+ "mdoRefRu": "РегистрСведений.НастройкиУчетныхЗаписейЭлектроннойПочты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КалендарныеГрафики",
+ "mdoRefRu": "РегистрСведений.КалендарныеГрафики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДомаЗданияСтроения",
+ "mdoRefRu": "РегистрСведений.ДомаЗданияСтроения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах",
+ "mdoRefRu": "Константа.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныСообщенийПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ШаблоныСообщенийПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Календари",
+ "mdoRefRu": "Справочник.Календари"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИдентификаторыПолученныхЭлектронныхПисем",
+ "mdoRefRu": "РегистрСведений.ИдентификаторыПолученныхЭлектронныхПисем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаКДанным",
+ "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаКДанным"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Валюты",
+ "mdoRefRu": "Справочник.Валюты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныСообщений",
+ "mdoRefRu": "Справочник.ШаблоныСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗависимостиПравДоступа",
+ "mdoRefRu": "РегистрСведений.ЗависимостиПравДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СлужебныеАдресныеСведения",
+ "mdoRefRu": "РегистрСведений.СлужебныеАдресныеСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УровниСокращенийАдресныхСведений",
+ "mdoRefRu": "РегистрСведений.УровниСокращенийАдресныхСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОригиналовПервичныхДокументов",
+ "mdoRefRu": "РегистрСведений.СостоянияОригиналовПервичныхДокументов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СоответствияОбъектовИнформационныхБаз",
+ "mdoRefRu": "РегистрСведений.СоответствияОбъектовИнформационныхБаз"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВЛокальномРежиме",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВЛокальномРежиме"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ВерсияКлассификатораБанков",
+ "mdoRefRu": "Константа.ВерсияКлассификатораБанков"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ВыполнятьЗамерыПроизводительности",
+ "mdoRefRu": "Константа.ВыполнятьЗамерыПроизводительности"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПрофильБезопасностиИнформационнойБазы",
+ "mdoRefRu": "Константа.ПрофильБезопасностиИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДнейДоСкрытияПерсональныхДанныхСубъектов",
+ "mdoRefRu": "Константа.ДнейДоСкрытияПерсональныхДанныхСубъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗапланированноеВзаимодействиеПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ЗапланированноеВзаимодействиеПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиОбменаДаннымиXDTO",
+ "mdoRefRu": "РегистрСведений.НастройкиОбменаДаннымиXDTO"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПризнакРассмотрено",
+ "mdoRefRu": "Константа.ИспользоватьПризнакРассмотрено"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПредопределенныеВариантыОтчетовВерсийРасширений",
+ "mdoRefRu": "РегистрСведений.ПредопределенныеВариантыОтчетовВерсийРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СубъектыДляСкрытияПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.СубъектыДляСкрытияПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокРасширенийФайловOpenDocumentОбластиДанных",
+ "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocumentОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервиса",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных",
+ "mdoRefRu": "РегистрСведений.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РазрешенияНаИспользованиеВнешнихРесурсов",
+ "mdoRefRu": "РегистрСведений.РазрешенияНаИспользованиеВнешнихРесурсов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиСинхронизацииФайлов",
+ "mdoRefRu": "РегистрСведений.НастройкиСинхронизацииФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьОбластиПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.УдалитьОбластиПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлючевыеОперации",
+ "mdoRefRu": "Справочник.КлючевыеОперации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВидыПроверок",
+ "mdoRefRu": "Справочник.ВидыПроверок"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса",
+ "mdoRefRu": "Константа.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВариантыОтветовАнкет",
+ "mdoRefRu": "Справочник.ВариантыОтветовАнкет"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Заметки",
+ "mdoRefRu": "Справочник.Заметки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АдресДляВосстановленияПароляУчетнойЗаписи",
+ "mdoRefRu": "Константа.АдресДляВосстановленияПароляУчетнойЗаписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "TASK",
+ "mdoRef": "Task.ЗадачаИсполнителя",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДополнительныеСведения",
+ "mdoRefRu": "РегистрСведений.ДополнительныеСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетовРасширений",
+ "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетовРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаКРегиструРезультатыПроверкиУчета",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаКРегиструРезультатыПроверкиУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux",
+ "mdoRefRu": "РегистрСведений.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияПроверокВеденияУчета",
+ "mdoRefRu": "РегистрСведений.СостоянияПроверокВеденияУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.НазначениеОпросов",
+ "mdoRefRu": "Документ.НазначениеОпросов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СценарииОбменовДанными",
+ "mdoRefRu": "Справочник.СценарииОбменовДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСкрытиеПерсональныхДанныхСубъектов",
+ "mdoRefRu": "Константа.ИспользоватьСкрытиеПерсональныхДанныхСубъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ИдентификаторыОбъектовМетаданных",
+ "mdoRefRu": "Справочник.ИдентификаторыОбъектовМетаданных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ФайлыВРабочемКаталоге",
+ "mdoRefRu": "РегистрСведений.ФайлыВРабочемКаталоге"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьШифрование",
+ "mdoRefRu": "Константа.ИспользоватьШифрование"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеОбработанныеВЦентральномУзлеРИБ",
+ "mdoRefRu": "РегистрСведений.ДанныеОбработанныеВЦентральномУзлеРИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиОбновления",
+ "mdoRefRu": "РегистрСведений.ОбработчикиОбновления"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИсполнителиЗадач",
+ "mdoRefRu": "РегистрСведений.ИсполнителиЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ТелефонныйЗвонок",
+ "mdoRefRu": "Документ.ТелефонныйЗвонок"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиВерсионированияОбъектов",
+ "mdoRefRu": "РегистрСведений.НастройкиВерсионированияОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.РолиИсполнителей",
+ "mdoRefRu": "Справочник.РолиИсполнителей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ОбщиеВнешниеКомпоненты",
+ "mdoRefRu": "Справочник.ОбщиеВнешниеКомпоненты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокЗапрещенныхРасширенийОбластиДанных",
+ "mdoRefRu": "Константа.СписокЗапрещенныхРасширенийОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластейДанных",
+ "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтправлятьПисьмаВФорматеHTML",
+ "mdoRefRu": "Константа.ОтправлятьПисьмаВФорматеHTML"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПодчиненныеБизнесПроцессы",
+ "mdoRefRu": "Константа.ИспользоватьПодчиненныеБизнесПроцессы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.УдалитьЛогинДоступаКСервисуMorpher",
+ "mdoRefRu": "Константа.УдалитьЛогинДоступаКСервисуMorpher"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияКонтактовВзаимодействий",
+ "mdoRefRu": "РегистрСведений.СостоянияКонтактовВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбластиПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.ОбластиПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СтатусыСинхронизацииФайловСОблачнымСервисом",
+ "mdoRefRu": "РегистрСведений.СтатусыСинхронизацииФайловСОблачнымСервисом"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатыЗапретаЗагрузки",
+ "mdoRefRu": "Константа.ИспользоватьДатыЗапретаЗагрузки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеПроизводственногоКалендаря",
+ "mdoRefRu": "РегистрСведений.ДанныеПроизводственногоКалендаря"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьВерсионированиеОбъектов",
+ "mdoRefRu": "Константа.ИспользоватьВерсионированиеОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВерсииРасширений",
+ "mdoRefRu": "Справочник.ВерсииРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НаследованиеНастроекПравОбъектов",
+ "mdoRefRu": "РегистрСведений.НаследованиеНастроекПравОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПричиныИзмененияАдресныхСведений",
+ "mdoRefRu": "РегистрСведений.ПричиныИзмененияАдресныхСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СессииОбменаСообщениямиСистемы",
+ "mdoRefRu": "РегистрСведений.СессииОбменаСообщениямиСистемы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокРасширенийТекстовыхФайлов",
+ "mdoRefRu": "Константа.СписокРасширенийТекстовыхФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗагруженныеВерсииАдресныхСведений",
+ "mdoRefRu": "РегистрСведений.ЗагруженныеВерсииАдресныхСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПраваРолей",
+ "mdoRefRu": "РегистрСведений.ПраваРолей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ТелефонныйЗвонокПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ТелефонныйЗвонокПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЗапланированноеВзаимодействие",
+ "mdoRefRu": "Документ.ЗапланированноеВзаимодействие"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокРасширенийФайловOpenDocument",
+ "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocument"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПравилаПроверкиУчета",
+ "mdoRefRu": "Справочник.ПравилаПроверкиУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC",
+ "mdoRefRu": "Константа.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Встреча",
+ "mdoRefRu": "Документ.Встреча"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Пользователи",
+ "mdoRefRu": "Справочник.Пользователи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗагрузитьСообщениеОбменаДанными",
+ "mdoRefRu": "Константа.ЗагрузитьСообщениеОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПроверятьЭлектронныеПодписиНаСервере",
+ "mdoRefRu": "Константа.ПроверятьЭлектронныеПодписиНаСервере"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПровайдерSMS",
+ "mdoRefRu": "Константа.ПровайдерSMS"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПользовательСтандартногоИнтерфейсаOData",
+ "mdoRefRu": "Константа.ПользовательСтандартногоИнтерфейсаOData"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииПодсистем",
+ "mdoRefRu": "РегистрСведений.ВерсииПодсистем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПользовательскиеНастройкиОтчетов",
+ "mdoRefRu": "Справочник.ПользовательскиеНастройкиОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОбменовДанными",
+ "mdoRefRu": "РегистрСведений.СостоянияОбменовДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАвтономнуюРаботуВМоделиСервиса",
+ "mdoRefRu": "Константа.ИспользоватьАвтономнуюРаботуВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПредметыПапкиВзаимодействий",
+ "mdoRefRu": "РегистрСведений.ПредметыПапкиВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗначенияГруппДоступаПоУмолчанию",
+ "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступаПоУмолчанию"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтложенноеОбновлениеЗавершеноУспешно",
+ "mdoRefRu": "Константа.ОтложенноеОбновлениеЗавершеноУспешно"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИзвлекатьТекстыФайловНаСервере",
+ "mdoRefRu": "Константа.ИзвлекатьТекстыФайловНаСервере"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПрофилиБезопасностиДляДОО",
+ "mdoRefRu": "Константа.ИспользоватьПрофилиБезопасностиДляДОО"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоЗамеровВПакетеЭкспорта",
+ "mdoRefRu": "Константа.КоличествоЗамеровВПакетеЭкспорта"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДополнительныеРеквизитыИСведения",
+ "mdoRefRu": "Константа.ИспользоватьДополнительныеРеквизитыИСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаВнешнихПользователей",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаВнешнихПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса",
+ "mdoRefRu": "Константа.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.СообщениеSMS",
+ "mdoRefRu": "Документ.СообщениеSMS"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОчередьИзвлеченияТекста",
+ "mdoRefRu": "РегистрСведений.ОчередьИзвлеченияТекста"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАнкетирование",
+ "mdoRefRu": "Константа.ИспользоватьАнкетирование"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.УчетныеЗаписиЭлектроннойПочты",
+ "mdoRefRu": "Справочник.УчетныеЗаписиЭлектроннойПочты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.МаксимальныйРазмерФайла",
+ "mdoRefRu": "Константа.МаксимальныйРазмерФайла"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов",
+ "mdoRefRu": "РегистрСведений.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПользовательскиеНастройкиДоступаКОбработкам",
+ "mdoRefRu": "РегистрСведений.ПользовательскиеНастройкиДоступаКОбработкам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПакетыИнформацииПриЗапуске",
+ "mdoRefRu": "РегистрСведений.ПакетыИнформацииПриЗапуске"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыОбластиСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыОбластиСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыБлокировкиРаботыСВнешнимиРесурсами",
+ "mdoRefRu": "Константа.ПараметрыБлокировкиРаботыСВнешнимиРесурсами"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПриоритетОбновленияВОбластяхДанных",
+ "mdoRefRu": "Константа.ПриоритетОбновленияВОбластяхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Анкета",
+ "mdoRefRu": "Документ.Анкета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаНаборовГруппДоступа",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаНаборовГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкиВходаПользователей",
+ "mdoRefRu": "Константа.НастройкиВходаПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыАдресногоКлассификатора",
+ "mdoRefRu": "Константа.ПараметрыАдресногоКлассификатора"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПроизводственныеКалендари",
+ "mdoRefRu": "Справочник.ПроизводственныеКалендари"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СтроковыеКонтактыВзаимодействий",
+ "mdoRefRu": "Справочник.СтроковыеКонтактыВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПоставляемыеДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Справочник.ПоставляемыеДополнительныеОтчетыИОбработки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НазначениеДополнительныхОбработок",
+ "mdoRefRu": "РегистрСведений.НазначениеДополнительныхОбработок"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВидыКонтактнойИнформации",
+ "mdoRefRu": "Справочник.ВидыКонтактнойИнформации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СтраныМира",
+ "mdoRefRu": "Справочник.СтраныМира"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СоздаватьЭлектронныеПодписиНаСервере",
+ "mdoRefRu": "Константа.СоздаватьЭлектронныеПодписиНаСервере"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатуИВремяВСрокахЗадач",
+ "mdoRefRu": "Константа.ИспользоватьДатуИВремяВСрокахЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СклоненияПредставленийОбъектов",
+ "mdoRefRu": "РегистрСведений.СклоненияПредставленийОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СогласияНаОбработкуПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.СогласияНаОбработкуПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПубличныеИдентификаторыСинхронизируемыхОбъектов",
+ "mdoRefRu": "РегистрСведений.ПубличныеИдентификаторыСинхронизируемыхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ОтзывСогласияНаОбработкуПерсональныхДанных",
+ "mdoRefRu": "Документ.ОтзывСогласияНаОбработкуПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДополнительныеАдресныеСведения",
+ "mdoRefRu": "РегистрСведений.ДополнительныеАдресныеСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СертификатыКлючейЭлектроннойПодписиИШифрования",
+ "mdoRefRu": "Справочник.СертификатыКлючейЭлектроннойПодписиИШифрования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаДанными",
+ "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СтатусОбновленияКонфигурации",
+ "mdoRefRu": "Константа.СтатусОбновленияКонфигурации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьОтправкуSMSВШаблонахСообщений",
+ "mdoRefRu": "Константа.ИспользоватьОтправкуSMSВШаблонахСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаТекущиеЗадания",
+ "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаТекущиеЗадания"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СведенияОФайлах",
+ "mdoRefRu": "РегистрСведений.СведенияОФайлах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоПотоковОбновленияДоступа",
+ "mdoRefRu": "Константа.КоличествоПотоковОбновленияДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СоставыГруппПользователей",
+ "mdoRefRu": "РегистрСведений.СоставыГруппПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПотокиОбновления",
+ "mdoRefRu": "РегистрСведений.ПотокиОбновления"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПользовательскиеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ПользовательскиеМакетыПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БезопасноеХранилищеДанныхОбластейДанных",
+ "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанныхОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ТаблицыГруппДоступа",
+ "mdoRefRu": "РегистрСведений.ТаблицыГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗакладкиВзаимодействий",
+ "mdoRefRu": "Справочник.ЗакладкиВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СостоянияОригиналовПервичныхДокументов",
+ "mdoRefRu": "Справочник.СостоянияОригиналовПервичныхДокументов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИзмененияОбщихДанныхУзлов",
+ "mdoRefRu": "РегистрСведений.ИзмененияОбщихДанныхУзлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаПользователей",
+ "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.РассылкиОтчетов",
+ "mdoRefRu": "Справочник.РассылкиОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НеразделенныеПользователи",
+ "mdoRefRu": "РегистрСведений.НеразделенныеПользователи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УведомленияОПрочтении",
+ "mdoRefRu": "РегистрСведений.УведомленияОПрочтении"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеОбъектовДляРегистрацииВОбменах",
+ "mdoRefRu": "РегистрСведений.ДанныеОбъектовДляРегистрацииВОбменах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеБизнесПроцессов",
+ "mdoRefRu": "РегистрСведений.ДанныеБизнесПроцессов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоИсходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоИсходящее"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса",
+ "mdoRefRu": "Константа.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса",
+ "mdoRefRu": "Константа.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьЗамерыВремени3",
+ "mdoRefRu": "РегистрСведений.УдалитьЗамерыВремени3"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиПравОбъектов",
+ "mdoRefRu": "РегистрСведений.НастройкиПравОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Справочник.ДополнительныеОтчетыИОбработки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВнешниеПользователи",
+ "mdoRefRu": "Справочник.ВнешниеПользователи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПапкиФайлов",
+ "mdoRefRu": "Справочник.ПапкиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НапоминанияПользователя",
+ "mdoRefRu": "РегистрСведений.НапоминанияПользователя"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДатаОбновленияПовторноИспользуемыхЗначенийМРО",
+ "mdoRefRu": "Константа.ДатаОбновленияПовторноИспользуемыхЗначенийМРО"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗначенияГруппДоступа",
+ "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют",
+ "mdoRefRu": "Константа.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПолнотекстовыйПоиск",
+ "mdoRefRu": "Константа.ИспользоватьПолнотекстовыйПоиск"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляWindows",
+ "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляWindows"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности",
+ "mdoRefRu": "Константа.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КэшПрограммныхИнтерфейсов",
+ "mdoRefRu": "РегистрСведений.КэшПрограммныхИнтерфейсов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ГруппыЗначенийДоступа",
+ "mdoRefRu": "РегистрСведений.ГруппыЗначенийДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиКомандПечати",
+ "mdoRefRu": "РегистрСведений.НастройкиКомандПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДанныеДляОтложенногоОбновления",
+ "mdoRefRu": "Константа.ДанныеДляОтложенногоОбновления"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НеИспользоватьРазделениеПоОбластямДанных",
+ "mdoRefRu": "Константа.НеИспользоватьРазделениеПоОбластямДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляLinux",
+ "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляLinux"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СведенияОБлокируемыхОбъектах",
+ "mdoRefRu": "Константа.СведенияОБлокируемыхОбъектах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетов",
+ "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений",
+ "mdoRefRu": "Константа.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОценкаПроизводительностиПериодЗаписи",
+ "mdoRefRu": "Константа.ОценкаПроизводительностиПериодЗаписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ГлавныйУзел",
+ "mdoRefRu": "Константа.ГлавныйУзел"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗаголовокСистемы",
+ "mdoRefRu": "Константа.ЗаголовокСистемы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РучныеИзмененияГрафиковРаботы",
+ "mdoRefRu": "РегистрСведений.РучныеИзмененияГрафиковРаботы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьБизнесПроцессыИЗадачи",
+ "mdoRefRu": "Константа.ИспользоватьБизнесПроцессыИЗадачи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОбменовДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СостоянияОбменовДаннымиОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыПользователей",
+ "mdoRefRu": "Справочник.ГруппыПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользуютсяПрофилиБезопасности",
+ "mdoRefRu": "Константа.ИспользуютсяПрофилиБезопасности"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписейУниверсально",
+ "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписейУниверсально"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗарегистрированыИзмененияДанных",
+ "mdoRefRu": "Константа.ЗарегистрированыИзмененияДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиОчисткиФайлов",
+ "mdoRefRu": "РегистрСведений.НастройкиОчисткиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбщиеНастройкиУзловИнформационныхБаз",
+ "mdoRefRu": "РегистрСведений.ОбщиеНастройкиУзловИнформационныхБаз"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗначенияСвойствОбъектовИерархия",
+ "mdoRefRu": "Справочник.ЗначенияСвойствОбъектовИерархия"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.МаксимальныйРазмерФайлаОбластиДанных",
+ "mdoRefRu": "Константа.МаксимальныйРазмерФайлаОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьВнешнихПользователей",
+ "mdoRefRu": "Константа.ИспользоватьВнешнихПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.УчетныеЗаписиСинхронизацииФайлов",
+ "mdoRefRu": "Справочник.УчетныеЗаписиСинхронизацииФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПараметрыРаботыПрограммы",
+ "mdoRefRu": "РегистрСведений.ПараметрыРаботыПрограммы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрограммыЭлектроннойПодписиИШифрования",
+ "mdoRefRu": "Справочник.ПрограммыЭлектроннойПодписиИШифрования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ИдентификаторыОбъектовРасширений",
+ "mdoRefRu": "Справочник.ИдентификаторыОбъектовРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияПапокПисем",
+ "mdoRefRu": "РегистрСведений.СостоянияПапокПисем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкиКолонтитулов",
+ "mdoRefRu": "Константа.НастройкиКолонтитулов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьОнлайнПоддержку",
+ "mdoRefRu": "Константа.ИспользоватьОнлайнПоддержку"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьНастройкиТранспортаОбмена",
+ "mdoRefRu": "РегистрСведений.УдалитьНастройкиТранспортаОбмена"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ОбъектыАдресацииЗадач",
+ "mdoRefRu": "ПланВидовХарактеристик.ОбъектыАдресацииЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьГруппыПользователей",
+ "mdoRefRu": "Константа.ИспользоватьГруппыПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы",
+ "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПсевдонимыПредопределенныхУзлов",
+ "mdoRefRu": "РегистрСведений.ПсевдонимыПредопределенныхУзлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДаннымиОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьНесколькоПроизводственныхКалендарей",
+ "mdoRefRu": "Константа.ИспользоватьНесколькоПроизводственныхКалендарей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПравилаДляОбменаДанными",
+ "mdoRefRu": "РегистрСведений.ПравилаДляОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбластиСтатистики",
+ "mdoRefRu": "РегистрСведений.ОбластиСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.АдресныеОбъекты",
+ "mdoRefRu": "РегистрСведений.АдресныеОбъекты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкаПодчиненногоУзлаРИБЗавершена",
+ "mdoRefRu": "Константа.НастройкаПодчиненногоУзлаРИБЗавершена"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыИсполнителейЗадач",
+ "mdoRefRu": "Справочник.ГруппыИсполнителейЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗначенияСвойствОбъектов",
+ "mdoRefRu": "Справочник.ЗначенияСвойствОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДатыПоследнейЗагрузкиПочтовыхСообщений",
+ "mdoRefRu": "РегистрСведений.ДатыПоследнейЗагрузкиПочтовыхСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПараметрыОграниченияДоступа",
+ "mdoRefRu": "РегистрСведений.ПараметрыОграниченияДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлассификаторБанков",
+ "mdoRefRu": "Справочник.КлассификаторБанков"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИсторияАдресныхОбъектов",
+ "mdoRefRu": "РегистрСведений.ИсторияАдресныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокЗапрещенныхРасширений",
+ "mdoRefRu": "Константа.СписокЗапрещенныхРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СвязиАдресныхОбъектов",
+ "mdoRefRu": "РегистрСведений.СвязиАдресныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СообщенияОбменаДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СообщенияОбменаДаннымиОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиВариантовОтчетов",
+ "mdoRefRu": "РегистрСведений.НастройкиВариантовОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СообщениеSMSПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.СообщениеSMSПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СертификатыШифрования",
+ "mdoRefRu": "РегистрСведений.СертификатыШифрования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьРезультатыОбменаДанными",
+ "mdoRefRu": "РегистрСведений.УдалитьРезультатыОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте",
+ "mdoRefRu": "РегистрСведений.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗаблокированныеДляПолученияУчетныеЗаписи",
+ "mdoRefRu": "РегистрСведений.ЗаблокированныеДляПолученияУчетныеЗаписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПараметрыРаботыВерсийРасширений",
+ "mdoRefRu": "РегистрСведений.ПараметрыРаботыВерсийРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластиДанных",
+ "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьНапоминанияПользователя",
+ "mdoRefRu": "Константа.ИспользоватьНапоминанияПользователя"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПрефиксУзлаРаспределеннойИнформационнойБазы",
+ "mdoRefRu": "Константа.ПрефиксУзлаРаспределеннойИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СообщениеОбменаДаннымиИзГлавногоУзла",
+ "mdoRefRu": "Константа.СообщениеОбменаДаннымиИзГлавногоУзла"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьЗаметки",
+ "mdoRefRu": "Константа.ИспользоватьЗаметки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных",
+ "mdoRefRu": "РегистрСведений.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЯзыкиПечатныхФорм",
+ "mdoRefRu": "Справочник.ЯзыкиПечатныхФорм"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.СогласиеНаОбработкуПерсональныхДанных",
+ "mdoRefRu": "Документ.СогласиеНаОбработкуПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РезультатыОбменаДанными",
+ "mdoRefRu": "РегистрСведений.РезультатыОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БуферОперацийСтатистики",
+ "mdoRefRu": "РегистрСведений.БуферОперацийСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыЦентраМониторинга",
+ "mdoRefRu": "Константа.ПараметрыЦентраМониторинга"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписей",
+ "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыВнешнихПользователей",
+ "mdoRefRu": "Справочник.ГруппыВнешнихПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыВремениТехнологические",
+ "mdoRefRu": "РегистрСведений.ЗамерыВремениТехнологические"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьРазделениеПоОбластямДанных",
+ "mdoRefRu": "Константа.ИспользоватьРазделениеПоОбластямДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ХранитьФайлыВТомахНаДиске",
+ "mdoRefRu": "Константа.ХранитьФайлыВТомахНаДиске"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСервисСклоненияMorpher",
+ "mdoRefRu": "Константа.ИспользоватьСервисСклоненияMorpher"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СведенияОбОбновленииИБ",
+ "mdoRefRu": "Константа.СведенияОбОбновленииИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыДоступа",
+ "mdoRefRu": "Справочник.ГруппыДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбщиеПоставляемыеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ОбщиеПоставляемыеМакетыПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоПотоковОбновленияИнформационнойБазы",
+ "mdoRefRu": "Константа.КоличествоПотоковОбновленияИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДанными",
+ "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступа",
+ "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно",
+ "mdoRefRu": "Константа.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДатыЗапретаИзменения",
+ "mdoRefRu": "РегистрСведений.ДатыЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдаляемыеОбъекты",
+ "mdoRefRu": "РегистрСведений.УдаляемыеОбъекты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВстречаПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ВстречаПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаКРегистрам",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаКРегистрам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатыЗапретаИзменения",
+ "mdoRefRu": "Константа.ИспользоватьДатыЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗемельныеУчастки",
+ "mdoRefRu": "РегистрСведений.ЗемельныеУчастки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаКОбъектам",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаКОбъектам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПрочиеВзаимодействия",
+ "mdoRefRu": "Константа.ИспользоватьПрочиеВзаимодействия"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЭтоАвтономноеРабочееМесто",
+ "mdoRefRu": "Константа.ЭтоАвтономноеРабочееМесто"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.НаборыГруппДоступа",
+ "mdoRefRu": "Справочник.НаборыГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ТомаХраненияФайлов",
+ "mdoRefRu": "Справочник.ТомаХраненияФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииПодсистемОбластейДанных",
+ "mdoRefRu": "РегистрСведений.ВерсииПодсистемОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПравилаОбработкиЭлектроннойПочты",
+ "mdoRefRu": "Справочник.ПравилаОбработкиЭлектроннойПочты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ВопросыДляАнкетирования",
+ "mdoRefRu": "ПланВидовХарактеристик.ВопросыДляАнкетирования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.Задание",
+ "mdoRefRu": "БизнесПроцесс.Задание"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИдентификаторыОбъектовВерсийРасширений",
+ "mdoRefRu": "РегистрСведений.ИдентификаторыОбъектовВерсийРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы",
+ "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоЭлементовВТранзакцииЗагрузкиДанных",
+ "mdoRefRu": "Константа.КоличествоЭлементовВТранзакцииЗагрузкиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных",
+ "mdoRefRu": "Константа.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаПользователей",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаГруппДоступа",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступаПоТаблицам",
+ "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступаПоТаблицам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДампыПлатформы",
+ "mdoRefRu": "РегистрСведений.ДампыПлатформы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВЛокальнойСети",
+ "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВЛокальнойСети"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КодировкиФайлов",
+ "mdoRefRu": "РегистрСведений.КодировкиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыОперацииСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыОперацииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПоследнееОбновлениеДоступа",
+ "mdoRefRu": "Константа.ПоследнееОбновлениеДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Файлы",
+ "mdoRefRu": "Справочник.Файлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПрефиксПоследнегоАвтономногоРабочегоМеста",
+ "mdoRefRu": "Константа.ПрефиксПоследнегоАвтономногоРабочегоМеста"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИсточникДанныхАдресногоКлассификатора",
+ "mdoRefRu": "Константа.ИсточникДанныхАдресногоКлассификатора"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КомментарииСтатистики",
+ "mdoRefRu": "РегистрСведений.КомментарииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОриентирыАдресныхОбъектов",
+ "mdoRefRu": "РегистрСведений.ОриентирыАдресныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СинхронизироватьФайлы",
+ "mdoRefRu": "Константа.СинхронизироватьФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВерсииФайлов",
+ "mdoRefRu": "Справочник.ВерсииФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОперацииСтатистики",
+ "mdoRefRu": "РегистрСведений.ОперацииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДвоичныеДанныеФайлов",
+ "mdoRefRu": "РегистрСведений.ДвоичныеДанныеФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиОбновленияОбщихДанных",
+ "mdoRefRu": "РегистрСведений.ОбработчикиОбновленияОбщихДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском",
+ "mdoRefRu": "Константа.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КомментарииОперацииСтатистики",
+ "mdoRefRu": "РегистрСведений.КомментарииОперацииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КонтактыВзаимодействий",
+ "mdoRefRu": "РегистрСведений.КонтактыВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РабочиеКаталогиФайлов",
+ "mdoRefRu": "РегистрСведений.РабочиеКаталогиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПакетыДляОтправки",
+ "mdoRefRu": "РегистрСведений.ПакетыДляОтправки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДетализироватьОбновлениеИБВЖурналеРегистрации",
+ "mdoRefRu": "Константа.ДетализироватьОбновлениеИБВЖурналеРегистрации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрофилиГруппДоступа",
+ "mdoRefRu": "Справочник.ПрофилиГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоВходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоВходящее"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанных",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИдентификаторИнформационнойБазы",
+ "mdoRefRu": "Константа.ИдентификаторИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПоставляемыеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ПоставляемыеМакетыПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИзменятьЗаданияЗаднимЧислом",
+ "mdoRefRu": "Константа.ИзменятьЗаданияЗаднимЧислом"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РежимыПодключенияВнешнихМодулей",
+ "mdoRefRu": "РегистрСведений.РежимыПодключенияВнешнихМодулей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БезопасноеХранилищеДанных",
+ "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияПредметовВзаимодействий",
+ "mdoRefRu": "РегистрСведений.СостоянияПредметовВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РезультатыПроверкиУчета",
+ "mdoRefRu": "РегистрСведений.РезультатыПроверкиУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СведенияОПользователях",
+ "mdoRefRu": "РегистрСведений.СведенияОПользователях"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БлокировкиСеансовОбластейДанных",
+ "mdoRefRu": "РегистрСведений.БлокировкиСеансовОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьУдалениеПомеченныхОбъектов",
+ "mdoRefRu": "Константа.ИспользоватьУдалениеПомеченныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатуНачалаЗадач",
+ "mdoRefRu": "Константа.ИспользоватьДатуНачалаЗадач"
+ },
+ "autoRecord": "DENY"
+ }
+ ],
+ []
+ ],
+ "distributedInfoBase": false,
+ "forms": [],
+ "includeConfigurationExtensions": false,
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ExchangePlans/ОбновлениеИнформационнойБазы/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/ExchangePlans/ОбновлениеИнформационнойБазы/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ОбновлениеИнформационнойБазы",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Обновление информационной базы"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "3fc019d1-aec8-4835-96c5-3bbf43da0b94"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json" "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json"
new file mode 100644
index 000000000..4e88b5385
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/ExchangePlans.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\230\320\275\321\204\320\276\321\200\320\274\320\260\321\206\320\270\320\276\320\275\320\275\320\276\320\271\320\221\320\260\320\267\321\213_edt.json"
@@ -0,0 +1,2882 @@
+{"com.github._1c_syntax.bsl.mdo.ExchangePlan": {
+ "attributes": [
+ {
+ "uuid": "5371672a-c8e0-4c12-834e-f23dd885b49a",
+ "name": "Очередь",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "ExchangePlan.ОбновлениеИнформационнойБазы.Attribute.Очередь",
+ "mdoRefRu": "ПланОбмена.ОбновлениеИнформационнойБазы.Реквизит.Очередь"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Очередь"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "EXCHANGE_PLAN",
+ "mdoRef": "ExchangePlan.ОбновлениеИнформационнойБазы",
+ "mdoRefRu": "ПланОбмена.ОбновлениеИнформационнойБазы"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ "commands": [],
+ "comment": "",
+ "content": [
+ [
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияРассылокОтчетов",
+ "mdoRefRu": "РегистрСведений.СостоянияРассылокОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ЭлектронноеПисьмоВходящееПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныАнкет",
+ "mdoRefRu": "Справочник.ШаблоныАнкет"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПроцессыДляЗапуска",
+ "mdoRefRu": "РегистрСведений.ПроцессыДляЗапуска"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НаличиеФайлов",
+ "mdoRefRu": "РегистрСведений.НаличиеФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПочтовыйКлиент",
+ "mdoRefRu": "Константа.ИспользоватьПочтовыйКлиент"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьХранимыеФайлыВерсий",
+ "mdoRefRu": "РегистрСведений.УдалитьХранимыеФайлыВерсий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыАдминистрированияИБ",
+ "mdoRefRu": "Константа.ПараметрыАдминистрированияИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьШаблоныСообщений",
+ "mdoRefRu": "Константа.ИспользоватьШаблоныСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыИтоговИАгрегатов",
+ "mdoRefRu": "Константа.ПараметрыИтоговИАгрегатов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СообщенияОбменаДанными",
+ "mdoRefRu": "РегистрСведений.СообщенияОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.НаборыДополнительныхРеквизитовИСведений",
+ "mdoRefRu": "Справочник.НаборыДополнительныхРеквизитовИСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПериодыНерабочихДнейКалендаря",
+ "mdoRefRu": "РегистрСведений.ПериодыНерабочихДнейКалендаря"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПапкиЭлектронныхПисем",
+ "mdoRefRu": "Справочник.ПапкиЭлектронныхПисем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВариантыОтчетов",
+ "mdoRefRu": "Справочник.ВариантыОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет",
+ "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииОбъектов",
+ "mdoRefRu": "РегистрСведений.ВерсииОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДатаУведомленияОНовыхЗадачах",
+ "mdoRefRu": "Константа.ДатаУведомленияОНовыхЗадачах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КэшПереводов",
+ "mdoRefRu": "РегистрСведений.КэшПереводов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыКомментарииСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыКомментарииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьЭлектронныеПодписи",
+ "mdoRefRu": "Константа.ИспользоватьЭлектронныеПодписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрофилиКлючевыхОпераций",
+ "mdoRefRu": "Справочник.ПрофилиКлючевыхОпераций"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыРезервногоКопирования",
+ "mdoRefRu": "Константа.ПараметрыРезервногоКопирования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Константа.ИспользоватьДополнительныеОтчетыИОбработки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СтатистикаКонфигурации",
+ "mdoRefRu": "РегистрСведений.СтатистикаКонфигурации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НомераОтсканированныхФайлов",
+ "mdoRefRu": "РегистрСведений.НомераОтсканированныхФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.РазделыДатЗапретаИзменения",
+ "mdoRefRu": "ПланВидовХарактеристик.РазделыДатЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НеудаленныеОбъекты",
+ "mdoRefRu": "РегистрСведений.НеудаленныеОбъекты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПериодХраненияЗамеров",
+ "mdoRefRu": "Константа.ПериодХраненияЗамеров"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкиПодчиненногоУзлаРИБ",
+ "mdoRefRu": "Константа.НастройкиПодчиненногоУзлаРИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма",
+ "mdoRefRu": "РегистрСведений.НепринятыеКОбработкеПочтовымСерверомИсходящиеПисьма"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВопросыШаблонаАнкеты",
+ "mdoRefRu": "Справочник.ВопросыШаблонаАнкеты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыВремени",
+ "mdoRefRu": "РегистрСведений.ЗамерыВремени"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения",
+ "mdoRefRu": "ПланВидовХарактеристик.ДополнительныеРеквизитыИСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КурсыВалют",
+ "mdoRefRu": "РегистрСведений.КурсыВалют"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ВерсияДатЗапретаИзменения",
+ "mdoRefRu": "Константа.ВерсияДатЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкаПроксиСервера",
+ "mdoRefRu": "Константа.НастройкаПроксиСервера"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗапрещатьЗагрузкуФайловПоРасширению",
+ "mdoRefRu": "Константа.ЗапрещатьЗагрузкуФайловПоРасширению"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиСобытийСинхронизацииДанных",
+ "mdoRefRu": "РегистрСведений.ОбработчикиСобытийСинхронизацииДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВнешниеКомпоненты",
+ "mdoRefRu": "Справочник.ВнешниеКомпоненты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВИнтернете",
+ "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВИнтернете"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлючиДоступа",
+ "mdoRefRu": "Справочник.КлючиДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НаборыЗначенийДоступа",
+ "mdoRefRu": "РегистрСведений.НаборыЗначенийДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиУчетныхЗаписейЭлектроннойПочты",
+ "mdoRefRu": "РегистрСведений.НастройкиУчетныхЗаписейЭлектроннойПочты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КалендарныеГрафики",
+ "mdoRefRu": "РегистрСведений.КалендарныеГрафики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДомаЗданияСтроения",
+ "mdoRefRu": "РегистрСведений.ДомаЗданияСтроения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах",
+ "mdoRefRu": "Константа.ЗапретитьОтображениеНебезопасногоСодержимогоВПисьмах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныСообщенийПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ШаблоныСообщенийПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Календари",
+ "mdoRefRu": "Справочник.Календари"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИдентификаторыПолученныхЭлектронныхПисем",
+ "mdoRefRu": "РегистрСведений.ИдентификаторыПолученныхЭлектронныхПисем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаКДанным",
+ "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаКДанным"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Валюты",
+ "mdoRefRu": "Справочник.Валюты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныСообщений",
+ "mdoRefRu": "Справочник.ШаблоныСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗависимостиПравДоступа",
+ "mdoRefRu": "РегистрСведений.ЗависимостиПравДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СлужебныеАдресныеСведения",
+ "mdoRefRu": "РегистрСведений.СлужебныеАдресныеСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УровниСокращенийАдресныхСведений",
+ "mdoRefRu": "РегистрСведений.УровниСокращенийАдресныхСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОригиналовПервичныхДокументов",
+ "mdoRefRu": "РегистрСведений.СостоянияОригиналовПервичныхДокументов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СоответствияОбъектовИнформационныхБаз",
+ "mdoRefRu": "РегистрСведений.СоответствияОбъектовИнформационныхБаз"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВЛокальномРежиме",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВЛокальномРежиме"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ВерсияКлассификатораБанков",
+ "mdoRefRu": "Константа.ВерсияКлассификатораБанков"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ВыполнятьЗамерыПроизводительности",
+ "mdoRefRu": "Константа.ВыполнятьЗамерыПроизводительности"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПрофильБезопасностиИнформационнойБазы",
+ "mdoRefRu": "Константа.ПрофильБезопасностиИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДнейДоСкрытияПерсональныхДанныхСубъектов",
+ "mdoRefRu": "Константа.ДнейДоСкрытияПерсональныхДанныхСубъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗапланированноеВзаимодействиеПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ЗапланированноеВзаимодействиеПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиОбменаДаннымиXDTO",
+ "mdoRefRu": "РегистрСведений.НастройкиОбменаДаннымиXDTO"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПризнакРассмотрено",
+ "mdoRefRu": "Константа.ИспользоватьПризнакРассмотрено"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПредопределенныеВариантыОтчетовВерсийРасширений",
+ "mdoRefRu": "РегистрСведений.ПредопределенныеВариантыОтчетовВерсийРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СубъектыДляСкрытияПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.СубъектыДляСкрытияПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокРасширенийФайловOpenDocumentОбластиДанных",
+ "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocumentОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервиса",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных",
+ "mdoRefRu": "РегистрСведений.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РазрешенияНаИспользованиеВнешнихРесурсов",
+ "mdoRefRu": "РегистрСведений.РазрешенияНаИспользованиеВнешнихРесурсов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиСинхронизацииФайлов",
+ "mdoRefRu": "РегистрСведений.НастройкиСинхронизацииФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьОбластиПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.УдалитьОбластиПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлючевыеОперации",
+ "mdoRefRu": "Справочник.КлючевыеОперации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВидыПроверок",
+ "mdoRefRu": "Справочник.ВидыПроверок"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса",
+ "mdoRefRu": "Константа.НезависимоеИспользованиеДополнительныхОтчетовИОбработокВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВариантыОтветовАнкет",
+ "mdoRefRu": "Справочник.ВариантыОтветовАнкет"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Заметки",
+ "mdoRefRu": "Справочник.Заметки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АдресДляВосстановленияПароляУчетнойЗаписи",
+ "mdoRefRu": "Константа.АдресДляВосстановленияПароляУчетнойЗаписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "TASK",
+ "mdoRef": "Task.ЗадачаИсполнителя",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДополнительныеСведения",
+ "mdoRefRu": "РегистрСведений.ДополнительныеСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетовРасширений",
+ "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетовРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаКРегиструРезультатыПроверкиУчета",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаКРегиструРезультатыПроверкиУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux",
+ "mdoRefRu": "РегистрСведений.ПутиКПрограммамЭлектроннойПодписиИШифрованияНаСерверахLinux"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияПроверокВеденияУчета",
+ "mdoRefRu": "РегистрСведений.СостоянияПроверокВеденияУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.НазначениеОпросов",
+ "mdoRefRu": "Документ.НазначениеОпросов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СценарииОбменовДанными",
+ "mdoRefRu": "Справочник.СценарииОбменовДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСкрытиеПерсональныхДанныхСубъектов",
+ "mdoRefRu": "Константа.ИспользоватьСкрытиеПерсональныхДанныхСубъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ИдентификаторыОбъектовМетаданных",
+ "mdoRefRu": "Справочник.ИдентификаторыОбъектовМетаданных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ФайлыВРабочемКаталоге",
+ "mdoRefRu": "РегистрСведений.ФайлыВРабочемКаталоге"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьШифрование",
+ "mdoRefRu": "Константа.ИспользоватьШифрование"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеОбработанныеВЦентральномУзлеРИБ",
+ "mdoRefRu": "РегистрСведений.ДанныеОбработанныеВЦентральномУзлеРИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиОбновления",
+ "mdoRefRu": "РегистрСведений.ОбработчикиОбновления"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИсполнителиЗадач",
+ "mdoRefRu": "РегистрСведений.ИсполнителиЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ТелефонныйЗвонок",
+ "mdoRefRu": "Документ.ТелефонныйЗвонок"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиВерсионированияОбъектов",
+ "mdoRefRu": "РегистрСведений.НастройкиВерсионированияОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.РолиИсполнителей",
+ "mdoRefRu": "Справочник.РолиИсполнителей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ОбщиеВнешниеКомпоненты",
+ "mdoRefRu": "Справочник.ОбщиеВнешниеКомпоненты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокЗапрещенныхРасширенийОбластиДанных",
+ "mdoRefRu": "Константа.СписокЗапрещенныхРасширенийОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластейДанных",
+ "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтправлятьПисьмаВФорматеHTML",
+ "mdoRefRu": "Константа.ОтправлятьПисьмаВФорматеHTML"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПодчиненныеБизнесПроцессы",
+ "mdoRefRu": "Константа.ИспользоватьПодчиненныеБизнесПроцессы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.УдалитьЛогинДоступаКСервисуMorpher",
+ "mdoRefRu": "Константа.УдалитьЛогинДоступаКСервисуMorpher"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияКонтактовВзаимодействий",
+ "mdoRefRu": "РегистрСведений.СостоянияКонтактовВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбластиПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.ОбластиПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СтатусыСинхронизацииФайловСОблачнымСервисом",
+ "mdoRefRu": "РегистрСведений.СтатусыСинхронизацииФайловСОблачнымСервисом"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатыЗапретаЗагрузки",
+ "mdoRefRu": "Константа.ИспользоватьДатыЗапретаЗагрузки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеПроизводственногоКалендаря",
+ "mdoRefRu": "РегистрСведений.ДанныеПроизводственногоКалендаря"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьВерсионированиеОбъектов",
+ "mdoRefRu": "Константа.ИспользоватьВерсионированиеОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВерсииРасширений",
+ "mdoRefRu": "Справочник.ВерсииРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НаследованиеНастроекПравОбъектов",
+ "mdoRefRu": "РегистрСведений.НаследованиеНастроекПравОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПричиныИзмененияАдресныхСведений",
+ "mdoRefRu": "РегистрСведений.ПричиныИзмененияАдресныхСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СессииОбменаСообщениямиСистемы",
+ "mdoRefRu": "РегистрСведений.СессииОбменаСообщениямиСистемы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокРасширенийТекстовыхФайлов",
+ "mdoRefRu": "Константа.СписокРасширенийТекстовыхФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗагруженныеВерсииАдресныхСведений",
+ "mdoRefRu": "РегистрСведений.ЗагруженныеВерсииАдресныхСведений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПраваРолей",
+ "mdoRefRu": "РегистрСведений.ПраваРолей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ТелефонныйЗвонокПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ТелефонныйЗвонокПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЗапланированноеВзаимодействие",
+ "mdoRefRu": "Документ.ЗапланированноеВзаимодействие"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокРасширенийФайловOpenDocument",
+ "mdoRefRu": "Константа.СписокРасширенийФайловOpenDocument"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПравилаПроверкиУчета",
+ "mdoRefRu": "Справочник.ПравилаПроверкиУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC",
+ "mdoRefRu": "Константа.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Встреча",
+ "mdoRefRu": "Документ.Встреча"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Пользователи",
+ "mdoRefRu": "Справочник.Пользователи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗагрузитьСообщениеОбменаДанными",
+ "mdoRefRu": "Константа.ЗагрузитьСообщениеОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПроверятьЭлектронныеПодписиНаСервере",
+ "mdoRefRu": "Константа.ПроверятьЭлектронныеПодписиНаСервере"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПровайдерSMS",
+ "mdoRefRu": "Константа.ПровайдерSMS"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПользовательСтандартногоИнтерфейсаOData",
+ "mdoRefRu": "Константа.ПользовательСтандартногоИнтерфейсаOData"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииПодсистем",
+ "mdoRefRu": "РегистрСведений.ВерсииПодсистем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПользовательскиеНастройкиОтчетов",
+ "mdoRefRu": "Справочник.ПользовательскиеНастройкиОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОбменовДанными",
+ "mdoRefRu": "РегистрСведений.СостоянияОбменовДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАвтономнуюРаботуВМоделиСервиса",
+ "mdoRefRu": "Константа.ИспользоватьАвтономнуюРаботуВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПредметыПапкиВзаимодействий",
+ "mdoRefRu": "РегистрСведений.ПредметыПапкиВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗначенияГруппДоступаПоУмолчанию",
+ "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступаПоУмолчанию"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтложенноеОбновлениеЗавершеноУспешно",
+ "mdoRefRu": "Константа.ОтложенноеОбновлениеЗавершеноУспешно"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИзвлекатьТекстыФайловНаСервере",
+ "mdoRefRu": "Константа.ИзвлекатьТекстыФайловНаСервере"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПрофилиБезопасностиДляДОО",
+ "mdoRefRu": "Константа.ИспользоватьПрофилиБезопасностиДляДОО"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоЗамеровВПакетеЭкспорта",
+ "mdoRefRu": "Константа.КоличествоЗамеровВПакетеЭкспорта"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДополнительныеРеквизитыИСведения",
+ "mdoRefRu": "Константа.ИспользоватьДополнительныеРеквизитыИСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаВнешнихПользователей",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаВнешнихПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса",
+ "mdoRefRu": "Константа.РазрешитьВыполнениеДООРегламентнымиЗаданиямиВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.СообщениеSMS",
+ "mdoRefRu": "Документ.СообщениеSMS"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОчередьИзвлеченияТекста",
+ "mdoRefRu": "РегистрСведений.ОчередьИзвлеченияТекста"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАнкетирование",
+ "mdoRefRu": "Константа.ИспользоватьАнкетирование"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.УчетныеЗаписиЭлектроннойПочты",
+ "mdoRefRu": "Справочник.УчетныеЗаписиЭлектроннойПочты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.МаксимальныйРазмерФайла",
+ "mdoRefRu": "Константа.МаксимальныйРазмерФайла"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов",
+ "mdoRefRu": "РегистрСведений.ЗапросыРазрешенийНаИспользованиеВнешнихРесурсов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПользовательскиеНастройкиДоступаКОбработкам",
+ "mdoRefRu": "РегистрСведений.ПользовательскиеНастройкиДоступаКОбработкам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПакетыИнформацииПриЗапуске",
+ "mdoRefRu": "РегистрСведений.ПакетыИнформацииПриЗапуске"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыОбластиСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыОбластиСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыБлокировкиРаботыСВнешнимиРесурсами",
+ "mdoRefRu": "Константа.ПараметрыБлокировкиРаботыСВнешнимиРесурсами"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПриоритетОбновленияВОбластяхДанных",
+ "mdoRefRu": "Константа.ПриоритетОбновленияВОбластяхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Анкета",
+ "mdoRefRu": "Документ.Анкета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаНаборовГруппДоступа",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаНаборовГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкиВходаПользователей",
+ "mdoRefRu": "Константа.НастройкиВходаПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыАдресногоКлассификатора",
+ "mdoRefRu": "Константа.ПараметрыАдресногоКлассификатора"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПроизводственныеКалендари",
+ "mdoRefRu": "Справочник.ПроизводственныеКалендари"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СтроковыеКонтактыВзаимодействий",
+ "mdoRefRu": "Справочник.СтроковыеКонтактыВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПоставляемыеДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Справочник.ПоставляемыеДополнительныеОтчетыИОбработки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ЭлектронноеПисьмоИсходящееПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НазначениеДополнительныхОбработок",
+ "mdoRefRu": "РегистрСведений.НазначениеДополнительныхОбработок"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВидыКонтактнойИнформации",
+ "mdoRefRu": "Справочник.ВидыКонтактнойИнформации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СтраныМира",
+ "mdoRefRu": "Справочник.СтраныМира"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СоздаватьЭлектронныеПодписиНаСервере",
+ "mdoRefRu": "Константа.СоздаватьЭлектронныеПодписиНаСервере"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатуИВремяВСрокахЗадач",
+ "mdoRefRu": "Константа.ИспользоватьДатуИВремяВСрокахЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СклоненияПредставленийОбъектов",
+ "mdoRefRu": "РегистрСведений.СклоненияПредставленийОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СогласияНаОбработкуПерсональныхДанных",
+ "mdoRefRu": "РегистрСведений.СогласияНаОбработкуПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПубличныеИдентификаторыСинхронизируемыхОбъектов",
+ "mdoRefRu": "РегистрСведений.ПубличныеИдентификаторыСинхронизируемыхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ОтзывСогласияНаОбработкуПерсональныхДанных",
+ "mdoRefRu": "Документ.ОтзывСогласияНаОбработкуПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДополнительныеАдресныеСведения",
+ "mdoRefRu": "РегистрСведений.ДополнительныеАдресныеСведения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СертификатыКлючейЭлектроннойПодписиИШифрования",
+ "mdoRefRu": "Справочник.СертификатыКлючейЭлектроннойПодписиИШифрования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаДанными",
+ "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СтатусОбновленияКонфигурации",
+ "mdoRefRu": "Константа.СтатусОбновленияКонфигурации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьОтправкуSMSВШаблонахСообщений",
+ "mdoRefRu": "Константа.ИспользоватьОтправкуSMSВШаблонахСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаТекущиеЗадания",
+ "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаТекущиеЗадания"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СведенияОФайлах",
+ "mdoRefRu": "РегистрСведений.СведенияОФайлах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоПотоковОбновленияДоступа",
+ "mdoRefRu": "Константа.КоличествоПотоковОбновленияДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СоставыГруппПользователей",
+ "mdoRefRu": "РегистрСведений.СоставыГруппПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПотокиОбновления",
+ "mdoRefRu": "РегистрСведений.ПотокиОбновления"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПользовательскиеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ПользовательскиеМакетыПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БезопасноеХранилищеДанныхОбластейДанных",
+ "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанныхОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ТаблицыГруппДоступа",
+ "mdoRefRu": "РегистрСведений.ТаблицыГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗакладкиВзаимодействий",
+ "mdoRefRu": "Справочник.ЗакладкиВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СостоянияОригиналовПервичныхДокументов",
+ "mdoRefRu": "Справочник.СостоянияОригиналовПервичныхДокументов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИзмененияОбщихДанныхУзлов",
+ "mdoRefRu": "РегистрСведений.ИзмененияОбщихДанныхУзлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбновлениеКлючейДоступаПользователей",
+ "mdoRefRu": "РегистрСведений.ОбновлениеКлючейДоступаПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.РассылкиОтчетов",
+ "mdoRefRu": "Справочник.РассылкиОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НеразделенныеПользователи",
+ "mdoRefRu": "РегистрСведений.НеразделенныеПользователи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УведомленияОПрочтении",
+ "mdoRefRu": "РегистрСведений.УведомленияОПрочтении"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеОбъектовДляРегистрацииВОбменах",
+ "mdoRefRu": "РегистрСведений.ДанныеОбъектовДляРегистрацииВОбменах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДанныеБизнесПроцессов",
+ "mdoRefRu": "РегистрСведений.ДанныеБизнесПроцессов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоИсходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоИсходящее"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса",
+ "mdoRefRu": "Константа.МинимальныйИнтервалРегламентныхЗаданийДОИОВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса",
+ "mdoRefRu": "Константа.ИспользованиеКаталогаДополнительныхОтчетовИОбработокВМоделиСервиса"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьЗамерыВремени3",
+ "mdoRefRu": "РегистрСведений.УдалитьЗамерыВремени3"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиПравОбъектов",
+ "mdoRefRu": "РегистрСведений.НастройкиПравОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Справочник.ДополнительныеОтчетыИОбработки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВнешниеПользователи",
+ "mdoRefRu": "Справочник.ВнешниеПользователи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПапкиФайлов",
+ "mdoRefRu": "Справочник.ПапкиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НапоминанияПользователя",
+ "mdoRefRu": "РегистрСведений.НапоминанияПользователя"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДатаОбновленияПовторноИспользуемыхЗначенийМРО",
+ "mdoRefRu": "Константа.ДатаОбновленияПовторноИспользуемыхЗначенийМРО"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗначенияГруппДоступа",
+ "mdoRefRu": "РегистрСведений.ЗначенияГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют",
+ "mdoRefRu": "Константа.ИспользоватьАльтернативныйСерверДляЗагрузкиКурсовВалют"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПолнотекстовыйПоиск",
+ "mdoRefRu": "Константа.ИспользоватьПолнотекстовыйПоиск"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляWindows",
+ "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляWindows"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности",
+ "mdoRefRu": "Константа.АвтоматическиНастраиватьРазрешенияВПрофиляхБезопасности"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КэшПрограммныхИнтерфейсов",
+ "mdoRefRu": "РегистрСведений.КэшПрограммныхИнтерфейсов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ГруппыЗначенийДоступа",
+ "mdoRefRu": "РегистрСведений.ГруппыЗначенийДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиКомандПечати",
+ "mdoRefRu": "РегистрСведений.НастройкиКомандПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДанныеДляОтложенногоОбновления",
+ "mdoRefRu": "Константа.ДанныеДляОтложенногоОбновления"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НеИспользоватьРазделениеПоОбластямДанных",
+ "mdoRefRu": "Константа.НеИспользоватьРазделениеПоОбластямДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КаталогСообщенийОбменаДаннымиДляLinux",
+ "mdoRefRu": "Константа.КаталогСообщенийОбменаДаннымиДляLinux"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СведенияОБлокируемыхОбъектах",
+ "mdoRefRu": "Константа.СведенияОБлокируемыхОбъектах"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПредопределенныеВариантыОтчетов",
+ "mdoRefRu": "Справочник.ПредопределенныеВариантыОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений",
+ "mdoRefRu": "Константа.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСПриложениемВИнтернете"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОценкаПроизводительностиПериодЗаписи",
+ "mdoRefRu": "Константа.ОценкаПроизводительностиПериодЗаписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ГлавныйУзел",
+ "mdoRefRu": "Константа.ГлавныйУзел"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗаголовокСистемы",
+ "mdoRefRu": "Константа.ЗаголовокСистемы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РучныеИзмененияГрафиковРаботы",
+ "mdoRefRu": "РегистрСведений.РучныеИзмененияГрафиковРаботы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьБизнесПроцессыИЗадачи",
+ "mdoRefRu": "Константа.ИспользоватьБизнесПроцессыИЗадачи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияОбменовДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СостоянияОбменовДаннымиОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыПользователей",
+ "mdoRefRu": "Справочник.ГруппыПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользуютсяПрофилиБезопасности",
+ "mdoRefRu": "Константа.ИспользуютсяПрофилиБезопасности"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписейУниверсально",
+ "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписейУниверсально"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗарегистрированыИзмененияДанных",
+ "mdoRefRu": "Константа.ЗарегистрированыИзмененияДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиОчисткиФайлов",
+ "mdoRefRu": "РегистрСведений.НастройкиОчисткиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбщиеНастройкиУзловИнформационныхБаз",
+ "mdoRefRu": "РегистрСведений.ОбщиеНастройкиУзловИнформационныхБаз"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗначенияСвойствОбъектовИерархия",
+ "mdoRefRu": "Справочник.ЗначенияСвойствОбъектовИерархия"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.МаксимальныйРазмерФайлаОбластиДанных",
+ "mdoRefRu": "Константа.МаксимальныйРазмерФайлаОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьВнешнихПользователей",
+ "mdoRefRu": "Константа.ИспользоватьВнешнихПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.УчетныеЗаписиСинхронизацииФайлов",
+ "mdoRefRu": "Справочник.УчетныеЗаписиСинхронизацииФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПараметрыРаботыПрограммы",
+ "mdoRefRu": "РегистрСведений.ПараметрыРаботыПрограммы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрограммыЭлектроннойПодписиИШифрования",
+ "mdoRefRu": "Справочник.ПрограммыЭлектроннойПодписиИШифрования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ИдентификаторыОбъектовРасширений",
+ "mdoRefRu": "Справочник.ИдентификаторыОбъектовРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияПапокПисем",
+ "mdoRefRu": "РегистрСведений.СостоянияПапокПисем"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкиКолонтитулов",
+ "mdoRefRu": "Константа.НастройкиКолонтитулов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьОнлайнПоддержку",
+ "mdoRefRu": "Константа.ИспользоватьОнлайнПоддержку"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьНастройкиТранспортаОбмена",
+ "mdoRefRu": "РегистрСведений.УдалитьНастройкиТранспортаОбмена"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ОбъектыАдресацииЗадач",
+ "mdoRefRu": "ПланВидовХарактеристик.ОбъектыАдресацииЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьГруппыПользователей",
+ "mdoRefRu": "Константа.ИспользоватьГруппыПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы",
+ "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриНачалеРаботыПрограммы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПсевдонимыПредопределенныхУзлов",
+ "mdoRefRu": "РегистрСведений.ПсевдонимыПредопределенныхУзлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДаннымиОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьНесколькоПроизводственныхКалендарей",
+ "mdoRefRu": "Константа.ИспользоватьНесколькоПроизводственныхКалендарей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПравилаДляОбменаДанными",
+ "mdoRefRu": "РегистрСведений.ПравилаДляОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбластиСтатистики",
+ "mdoRefRu": "РегистрСведений.ОбластиСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.АдресныеОбъекты",
+ "mdoRefRu": "РегистрСведений.АдресныеОбъекты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.НастройкаПодчиненногоУзлаРИБЗавершена",
+ "mdoRefRu": "Константа.НастройкаПодчиненногоУзлаРИБЗавершена"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыИсполнителейЗадач",
+ "mdoRefRu": "Справочник.ГруппыИсполнителейЗадач"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЗначенияСвойствОбъектов",
+ "mdoRefRu": "Справочник.ЗначенияСвойствОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДатыПоследнейЗагрузкиПочтовыхСообщений",
+ "mdoRefRu": "РегистрСведений.ДатыПоследнейЗагрузкиПочтовыхСообщений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПараметрыОграниченияДоступа",
+ "mdoRefRu": "РегистрСведений.ПараметрыОграниченияДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлассификаторБанков",
+ "mdoRefRu": "Справочник.КлассификаторБанков"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИсторияАдресныхОбъектов",
+ "mdoRefRu": "РегистрСведений.ИсторияАдресныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СписокЗапрещенныхРасширений",
+ "mdoRefRu": "Константа.СписокЗапрещенныхРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СвязиАдресныхОбъектов",
+ "mdoRefRu": "РегистрСведений.СвязиАдресныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СообщенияОбменаДаннымиОбластейДанных",
+ "mdoRefRu": "РегистрСведений.СообщенияОбменаДаннымиОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиВариантовОтчетов",
+ "mdoRefRu": "РегистрСведений.НастройкиВариантовОтчетов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СообщениеSMSПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.СообщениеSMSПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СертификатыШифрования",
+ "mdoRefRu": "РегистрСведений.СертификатыШифрования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдалитьРезультатыОбменаДанными",
+ "mdoRefRu": "РегистрСведений.УдалитьРезультатыОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте",
+ "mdoRefRu": "РегистрСведений.ИспользованиеДополнительныхОтчетовИОбработокСервисаВАвтономномРабочемМесте"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗаблокированныеДляПолученияУчетныеЗаписи",
+ "mdoRefRu": "РегистрСведений.ЗаблокированныеДляПолученияУчетныеЗаписи"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПараметрыРаботыВерсийРасширений",
+ "mdoRefRu": "РегистрСведений.ПараметрыРаботыВерсийРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиТранспортаОбменаОбластиДанных",
+ "mdoRefRu": "РегистрСведений.НастройкиТранспортаОбменаОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьНапоминанияПользователя",
+ "mdoRefRu": "Константа.ИспользоватьНапоминанияПользователя"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПрефиксУзлаРаспределеннойИнформационнойБазы",
+ "mdoRefRu": "Константа.ПрефиксУзлаРаспределеннойИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СообщениеОбменаДаннымиИзГлавногоУзла",
+ "mdoRefRu": "Константа.СообщениеОбменаДаннымиИзГлавногоУзла"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьЗаметки",
+ "mdoRefRu": "Константа.ИспользоватьЗаметки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных",
+ "mdoRefRu": "РегистрСведений.ОчередьИнсталляцииПоставляемыхДополнительныхОтчетовИОбработокВОбластиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ЯзыкиПечатныхФорм",
+ "mdoRefRu": "Справочник.ЯзыкиПечатныхФорм"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.СогласиеНаОбработкуПерсональныхДанных",
+ "mdoRefRu": "Документ.СогласиеНаОбработкуПерсональныхДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РезультатыОбменаДанными",
+ "mdoRefRu": "РегистрСведений.РезультатыОбменаДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БуферОперацийСтатистики",
+ "mdoRefRu": "РегистрСведений.БуферОперацийСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПараметрыЦентраМониторинга",
+ "mdoRefRu": "Константа.ПараметрыЦентраМониторинга"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОграничиватьДоступНаУровнеЗаписей",
+ "mdoRefRu": "Константа.ОграничиватьДоступНаУровнеЗаписей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыВнешнихПользователей",
+ "mdoRefRu": "Справочник.ГруппыВнешнихПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыВремениТехнологические",
+ "mdoRefRu": "РегистрСведений.ЗамерыВремениТехнологические"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьРазделениеПоОбластямДанных",
+ "mdoRefRu": "Константа.ИспользоватьРазделениеПоОбластямДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ХранитьФайлыВТомахНаДиске",
+ "mdoRefRu": "Константа.ХранитьФайлыВТомахНаДиске"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСервисСклоненияMorpher",
+ "mdoRefRu": "Константа.ИспользоватьСервисСклоненияMorpher"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СведенияОбОбновленииИБ",
+ "mdoRefRu": "Константа.СведенияОбОбновленииИБ"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыДоступа",
+ "mdoRefRu": "Справочник.ГруппыДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбщиеПоставляемыеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ОбщиеПоставляемыеМакетыПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоПотоковОбновленияИнформационнойБазы",
+ "mdoRefRu": "Константа.КоличествоПотоковОбновленияИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияУспешныхОбменовДанными",
+ "mdoRefRu": "РегистрСведений.СостоянияУспешныхОбменовДанными"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступа",
+ "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно",
+ "mdoRefRu": "Константа.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДатыЗапретаИзменения",
+ "mdoRefRu": "РегистрСведений.ДатыЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.УдаляемыеОбъекты",
+ "mdoRefRu": "РегистрСведений.УдаляемыеОбъекты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВстречаПрисоединенныеФайлы",
+ "mdoRefRu": "Справочник.ВстречаПрисоединенныеФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаКРегистрам",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаКРегистрам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатыЗапретаИзменения",
+ "mdoRefRu": "Константа.ИспользоватьДатыЗапретаИзменения"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗемельныеУчастки",
+ "mdoRefRu": "РегистрСведений.ЗемельныеУчастки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаКОбъектам",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаКОбъектам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьПрочиеВзаимодействия",
+ "mdoRefRu": "Константа.ИспользоватьПрочиеВзаимодействия"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЭтоАвтономноеРабочееМесто",
+ "mdoRefRu": "Константа.ЭтоАвтономноеРабочееМесто"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.НаборыГруппДоступа",
+ "mdoRefRu": "Справочник.НаборыГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ТомаХраненияФайлов",
+ "mdoRefRu": "Справочник.ТомаХраненияФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииПодсистемОбластейДанных",
+ "mdoRefRu": "РегистрСведений.ВерсииПодсистемОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПравилаОбработкиЭлектроннойПочты",
+ "mdoRefRu": "Справочник.ПравилаОбработкиЭлектроннойПочты"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ВопросыДляАнкетирования",
+ "mdoRefRu": "ПланВидовХарактеристик.ВопросыДляАнкетирования"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "BUSINESS_PROCESS",
+ "mdoRef": "BusinessProcess.Задание",
+ "mdoRefRu": "БизнесПроцесс.Задание"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИдентификаторыОбъектовВерсийРасширений",
+ "mdoRefRu": "РегистрСведений.ИдентификаторыОбъектовВерсийРасширений"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы",
+ "mdoRefRu": "Константа.СинхронизироватьДанныеСПриложениемВИнтернетеПриЗавершенииРаботыПрограммы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.КоличествоЭлементовВТранзакцииЗагрузкиДанных",
+ "mdoRefRu": "Константа.КоличествоЭлементовВТранзакцииЗагрузкиДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных",
+ "mdoRefRu": "Константа.ЗагрузитьРасширенияИзменяющиеСтруктуруДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаПользователей",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаПользователей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КлючиДоступаГруппДоступа",
+ "mdoRefRu": "РегистрСведений.КлючиДоступаГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИспользуемыеВидыДоступаПоТаблицам",
+ "mdoRefRu": "РегистрСведений.ИспользуемыеВидыДоступаПоТаблицам"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДампыПлатформы",
+ "mdoRefRu": "РегистрСведений.ДампыПлатформы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.АдресПубликацииИнформационнойБазыВЛокальнойСети",
+ "mdoRefRu": "Константа.АдресПубликацииИнформационнойБазыВЛокальнойСети"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КодировкиФайлов",
+ "mdoRefRu": "РегистрСведений.КодировкиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыОперацииСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыОперацииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПоследнееОбновлениеДоступа",
+ "mdoRefRu": "Константа.ПоследнееОбновлениеДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Файлы",
+ "mdoRefRu": "Справочник.Файлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПрефиксПоследнегоАвтономногоРабочегоМеста",
+ "mdoRefRu": "Константа.ПрефиксПоследнегоАвтономногоРабочегоМеста"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИсточникДанныхАдресногоКлассификатора",
+ "mdoRefRu": "Константа.ИсточникДанныхАдресногоКлассификатора"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЗамерыСтатистики",
+ "mdoRefRu": "РегистрСведений.ЗамерыСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КомментарииСтатистики",
+ "mdoRefRu": "РегистрСведений.КомментарииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОриентирыАдресныхОбъектов",
+ "mdoRefRu": "РегистрСведений.ОриентирыАдресныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.СинхронизироватьФайлы",
+ "mdoRefRu": "Константа.СинхронизироватьФайлы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВерсииФайлов",
+ "mdoRefRu": "Справочник.ВерсииФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОперацииСтатистики",
+ "mdoRefRu": "РегистрСведений.ОперацииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДвоичныеДанныеФайлов",
+ "mdoRefRu": "РегистрСведений.ДвоичныеДанныеФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОбработчикиОбновленияОбщихДанных",
+ "mdoRefRu": "РегистрСведений.ОбработчикиОбновленияОбщихДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском",
+ "mdoRefRu": "Константа.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КомментарииОперацииСтатистики",
+ "mdoRefRu": "РегистрСведений.КомментарииОперацииСтатистики"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.КонтактыВзаимодействий",
+ "mdoRefRu": "РегистрСведений.КонтактыВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РабочиеКаталогиФайлов",
+ "mdoRefRu": "РегистрСведений.РабочиеКаталогиФайлов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПакетыДляОтправки",
+ "mdoRefRu": "РегистрСведений.ПакетыДляОтправки"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ДетализироватьОбновлениеИБВЖурналеРегистрации",
+ "mdoRefRu": "Константа.ДетализироватьОбновлениеИБВЖурналеРегистрации"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрофилиГруппДоступа",
+ "mdoRefRu": "Справочник.ПрофилиГруппДоступа"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.ЭлектронноеПисьмоВходящее",
+ "mdoRefRu": "Документ.ЭлектронноеПисьмоВходящее"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанных",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИдентификаторИнформационнойБазы",
+ "mdoRefRu": "Константа.ИдентификаторИнформационнойБазы"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПоставляемыеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ПоставляемыеМакетыПечати"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИзменятьЗаданияЗаднимЧислом",
+ "mdoRefRu": "Константа.ИзменятьЗаданияЗаднимЧислом"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РежимыПодключенияВнешнихМодулей",
+ "mdoRefRu": "РегистрСведений.РежимыПодключенияВнешнихМодулей"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БезопасноеХранилищеДанных",
+ "mdoRefRu": "РегистрСведений.БезопасноеХранилищеДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СостоянияПредметовВзаимодействий",
+ "mdoRefRu": "РегистрСведений.СостоянияПредметовВзаимодействий"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.РезультатыПроверкиУчета",
+ "mdoRefRu": "РегистрСведений.РезультатыПроверкиУчета"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой",
+ "mdoRefRu": "Константа.ИспользоватьСинхронизациюДанныхВМоделиСервисаСЛокальнойПрограммой"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.СведенияОПользователях",
+ "mdoRefRu": "РегистрСведений.СведенияОПользователях"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.БлокировкиСеансовОбластейДанных",
+ "mdoRefRu": "РегистрСведений.БлокировкиСеансовОбластейДанных"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьУдалениеПомеченныхОбъектов",
+ "mdoRefRu": "Константа.ИспользоватьУдалениеПомеченныхОбъектов"
+ },
+ "autoRecord": "DENY"
+ },
+ {
+ "metadata": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьДатуНачалаЗадач",
+ "mdoRefRu": "Константа.ИспользоватьДатуНачалаЗадач"
+ },
+ "autoRecord": "DENY"
+ }
+ ],
+ []
+ ],
+ "distributedInfoBase": false,
+ "forms": [],
+ "includeConfigurationExtensions": false,
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ExchangePlans/ОбновлениеИнформационнойБазы/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/ExchangePlans/ОбновлениеИнформационнойБазы/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ОбновлениеИнформационнойБазы",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Обновление информационной базы"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "3fc019d1-aec8-4835-96c5-3bbf43da0b94"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json"
new file mode 100644
index 000000000..bdb019e92
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265.json"
@@ -0,0 +1,236 @@
+{"com.github._1c_syntax.bsl.mdo.FilterCriterion": {
+ "commands": [],
+ "comment": "",
+ "forms": [
+ {
+ "uuid": "bb29fa44-6772-4426-a0b8-422115e14288",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "FilterCriterion.ФайлыВТоме.Form.ФормаСписка",
+ "mdoRefRu": "КритерийОтбора.ФайлыВТоме.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/FilterCriteria/ФайлыВТоме/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "content": []
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 23,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 21,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 27,
+ "name": "ФормаИзменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 25,
+ "name": "ФормаОбновить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 14,
+ "name": "КартинкаИНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка и наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 6,
+ "name": "СсылкаИндексКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.ИндексКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 8,
+ "name": "СсылкаПутьКФайлу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.ПутьКФайлу",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 10,
+ "name": "СсылкаРазмер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.Размер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "СсылкаАвтор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.ФайлыВТоме",
+ "mdoRefRu": "КритерийОтбора.ФайлыВТоме"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "modules": [],
+ "name": "ФайлыВТоме",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Файлы в томе"
+ ]
+ ]
+ },
+ "uuid": "ebab97cf-5335-4648-9845-8ca41f79fb49"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json" "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json"
new file mode 100644
index 000000000..ba7023486
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/FilterCriteria.\320\244\320\260\320\271\320\273\321\213\320\222\320\242\320\276\320\274\320\265_edt.json"
@@ -0,0 +1,236 @@
+{"com.github._1c_syntax.bsl.mdo.FilterCriterion": {
+ "commands": [],
+ "comment": "",
+ "forms": [
+ {
+ "uuid": "bb29fa44-6772-4426-a0b8-422115e14288",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "FilterCriterion.ФайлыВТоме.Form.ФормаСписка",
+ "mdoRefRu": "КритерийОтбора.ФайлыВТоме.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/FilterCriteria/ФайлыВТоме/Forms/ФормаСписка/Form.form",
+ "title": {
+ "content": []
+ },
+ "handlers": [],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 23,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 21,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 27,
+ "name": "ФормаИзменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 25,
+ "name": "ФормаОбновить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 14,
+ "name": "КартинкаИНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Картинка и наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 6,
+ "name": "СсылкаИндексКартинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.ИндексКартинки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 8,
+ "name": "СсылкаПутьКФайлу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.ПутьКФайлу",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 10,
+ "name": "СсылкаРазмер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.Размер",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 12,
+ "name": "СсылкаАвтор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Список.Ref.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "type": "FILTER_CRITERION",
+ "mdoRef": "FilterCriterion.ФайлыВТоме",
+ "mdoRefRu": "КритерийОтбора.ФайлыВТоме"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "modules": [],
+ "name": "ФайлыВТоме",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Файлы в томе"
+ ]
+ ]
+ },
+ "uuid": "ebab97cf-5335-4648-9845-8ca41f79fb49"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/FunctionalOptions.\320\230\321\201\320\277\320\276\320\273\321\214\320\267\320\276\320\262\320\260\321\202\321\214\320\220\320\275\320\272\320\265\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/FunctionalOptions.\320\230\321\201\320\277\320\276\320\273\321\214\320\267\320\276\320\262\320\260\321\202\321\214\320\220\320\275\320\272\320\265\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265.json"
new file mode 100644
index 000000000..bc3c238d0
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/FunctionalOptions.\320\230\321\201\320\277\320\276\320\273\321\214\320\267\320\276\320\262\320\260\321\202\321\214\320\220\320\275\320\272\320\265\321\202\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265.json"
@@ -0,0 +1,86 @@
+{"com.github._1c_syntax.bsl.mdo.FunctionalOption": {
+ "comment": "",
+ "content": [
+ [
+ {
+ "type": "CHART_OF_CHARACTERISTIC_TYPES",
+ "mdoRef": "ChartOfCharacteristicTypes.ВопросыДляАнкетирования",
+ "mdoRefRu": "ПланВидовХарактеристик.ВопросыДляАнкетирования"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВариантыОтветовАнкет",
+ "mdoRefRu": "Справочник.ВариантыОтветовАнкет"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.НазначениеОпросов",
+ "mdoRefRu": "Документ.НазначениеОпросов"
+ },
+ {
+ "type": "DOCUMENT",
+ "mdoRef": "Document.Анкета",
+ "mdoRefRu": "Документ.Анкета"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ОтветыНаВопросыАнкет",
+ "mdoRefRu": "РегистрСведений.ОтветыНаВопросыАнкет"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.АнализОпроса",
+ "mdoRefRu": "Отчет.АнализОпроса"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныАнкет",
+ "mdoRefRu": "Справочник.ШаблоныАнкет"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВопросыШаблонаАнкеты",
+ "mdoRefRu": "Справочник.ВопросыШаблонаАнкеты"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.АналитическийОтчетПоАнкетированию",
+ "mdoRefRu": "Отчет.АналитическийОтчетПоАнкетированию"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ДоступныеАнкеты",
+ "mdoRefRu": "Обработка.ДоступныеАнкеты"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.НачатьИнтервью",
+ "mdoRefRu": "ОбщаяКоманда.НачатьИнтервью"
+ }
+ ],
+ []
+ ],
+ "location": {
+ "type": "CONSTANT",
+ "mdoRef": "Constant.ИспользоватьАнкетирование",
+ "mdoRefRu": "Константа.ИспользоватьАнкетирование"
+ },
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTION",
+ "mdoRef": "FunctionalOption.ИспользоватьАнкетирование",
+ "mdoRefRu": "ФункциональнаяОпция.ИспользоватьАнкетирование"
+ },
+ "name": "ИспользоватьАнкетирование",
+ "objectBelonging": "OWN",
+ "privilegedGetMode": true,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Использовать анкетирование"
+ ]
+ ]
+ },
+ "uuid": "697d5715-dd04-40be-9b28-539734725158"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/FunctionalOptionsParameters.\320\242\320\270\320\277\320\222\320\265\321\200\321\201\320\270\320\276\320\275\320\270\321\200\321\203\320\265\320\274\320\276\320\263\320\276\320\236\320\261\321\212\320\265\320\272\321\202\320\260.json" "b/src/test/resources/fixtures/ssl_3_1/FunctionalOptionsParameters.\320\242\320\270\320\277\320\222\320\265\321\200\321\201\320\270\320\276\320\275\320\270\321\200\321\203\320\265\320\274\320\276\320\263\320\276\320\236\320\261\321\212\320\265\320\272\321\202\320\260.json"
new file mode 100644
index 000000000..5ba9b05c9
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/FunctionalOptionsParameters.\320\242\320\270\320\277\320\222\320\265\321\200\321\201\320\270\320\276\320\275\320\270\321\200\321\203\320\265\320\274\320\276\320\263\320\276\320\236\320\261\321\212\320\265\320\272\321\202\320\260.json"
@@ -0,0 +1,25 @@
+{"com.github._1c_syntax.bsl.mdo.FunctionalOptionsParameter": {
+ "comment": "",
+ "mdoReference": {
+ "type": "FUNCTIONAL_OPTIONS_PARAMETER",
+ "mdoRef": "FunctionalOptionsParameter.ТипВерсионируемогоОбъекта",
+ "mdoRefRu": "ПараметрФункциональныхОпций.ТипВерсионируемогоОбъекта"
+ },
+ "name": "ТипВерсионируемогоОбъекта",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Тип версионируемого объекта"
+ ]
+ ]
+ },
+ "use": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.НастройкиВерсионированияОбъектов.Dimension.ТипОбъекта",
+ "mdoRefRu": "РегистрСведений.НастройкиВерсионированияОбъектов.Измерение.ТипОбъекта"
+ },
+ "uuid": "245c07a9-98b0-452b-b899-dc8751ab7ce0"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/InformationRegisters.\320\255\320\273\320\265\320\272\321\202\321\200\320\276\320\275\320\275\321\213\320\265\320\237\320\276\320\264\320\277\320\270\321\201\320\270.json" "b/src/test/resources/fixtures/ssl_3_1/InformationRegisters.\320\255\320\273\320\265\320\272\321\202\321\200\320\276\320\275\320\275\321\213\320\265\320\237\320\276\320\264\320\277\320\270\321\201\320\270.json"
new file mode 100644
index 000000000..4e315485e
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/InformationRegisters.\320\255\320\273\320\265\320\272\321\202\321\200\320\276\320\275\320\275\321\213\320\265\320\237\320\276\320\264\320\277\320\270\321\201\320\270.json"
@@ -0,0 +1,363 @@
+{"com.github._1c_syntax.bsl.mdo.InformationRegister": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ [
+ {
+ "uuid": "f6dae699-06eb-41ef-878b-3fdfe1b1f213",
+ "name": "ПодписанныйОбъект",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Dimension.ПодписанныйОбъект",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Измерение.ПодписанныйОбъект"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подписанный объект"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": true,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ },
+ {
+ "uuid": "fe6de86a-54c9-4ae2-9f17-cfce38b7b560",
+ "name": "ПорядковыйНомер",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Dimension.ПорядковыйНомер",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Измерение.ПорядковыйНомер"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Порядковый номер"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ []
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/InformationRegisters/ЭлектронныеПодписи/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЭлектронныеПодписи",
+ "objectBelonging": "OWN",
+ "resources": [
+ [
+ {
+ "uuid": "19858faf-2bc5-4cfb-b258-cb101ab66e87",
+ "name": "ДатаПроверкиПодписи",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ДатаПроверкиПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ДатаПроверкиПодписи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата проверки подписи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "f779f4a1-1fab-46d4-8043-ac25c247d361",
+ "name": "ИмяФайлаПодписи",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ИмяФайлаПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ИмяФайлаПодписи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Имя файла подписи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "308358bc-773a-43fa-adff-dcc5884a2bd4",
+ "name": "Комментарий",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Комментарий",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Комментарий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "ed541a1c-a842-40a9-b357-612db71ec32c",
+ "name": "КомуВыданСертификат",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.КомуВыданСертификат",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.КомуВыданСертификат"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Кому выдан сертификат"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "b0e37495-7d9e-41d0-8225-652f9ac328cf",
+ "name": "Отпечаток",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Отпечаток",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Отпечаток"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Отпечаток"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "3bd2e1c8-9ef3-449b-acf6-397b90669c49",
+ "name": "Подпись",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Подпись",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Подпись"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подпись"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "cb334191-2ff3-439e-bdaf-4b8fe6561c3b",
+ "name": "ПодписьВерна",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ПодписьВерна",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ПодписьВерна"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подпись верна"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "f9865a2a-50e3-4f9c-a509-319be62dc468",
+ "name": "Сертификат",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Сертификат",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Сертификат"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сертификат"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "5f3a30b0-1ba8-423c-9bc2-f9a87cafe818",
+ "name": "ДатаПодписи",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ДатаПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ДатаПодписи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата подписи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "766d8852-3bb4-4a6c-81c0-911722af4e8e",
+ "name": "УстановившийПодпись",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.УстановившийПодпись",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.УстановившийПодпись"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Установивший подпись"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Электронные подписи"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "b50f3157-3c3a-4553-a16a-7fcd660e2824"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/InformationRegisters.\320\255\320\273\320\265\320\272\321\202\321\200\320\276\320\275\320\275\321\213\320\265\320\237\320\276\320\264\320\277\320\270\321\201\320\270_edt.json" "b/src/test/resources/fixtures/ssl_3_1/InformationRegisters.\320\255\320\273\320\265\320\272\321\202\321\200\320\276\320\275\320\275\321\213\320\265\320\237\320\276\320\264\320\277\320\270\321\201\320\270_edt.json"
new file mode 100644
index 000000000..f30302a7d
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/InformationRegisters.\320\255\320\273\320\265\320\272\321\202\321\200\320\276\320\275\320\275\321\213\320\265\320\237\320\276\320\264\320\277\320\270\321\201\320\270_edt.json"
@@ -0,0 +1,363 @@
+{"com.github._1c_syntax.bsl.mdo.InformationRegister": {
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "dimensions": [
+ [
+ {
+ "uuid": "f6dae699-06eb-41ef-878b-3fdfe1b1f213",
+ "name": "ПодписанныйОбъект",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Dimension.ПодписанныйОбъект",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Измерение.ПодписанныйОбъект"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подписанный объект"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": true,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ },
+ {
+ "uuid": "fe6de86a-54c9-4ae2-9f17-cfce38b7b560",
+ "name": "ПорядковыйНомер",
+ "mdoReference": {
+ "type": "DIMENSION",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Dimension.ПорядковыйНомер",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Измерение.ПорядковыйНомер"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Порядковый номер"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "master": false,
+ "denyIncompleteValues": false,
+ "useInTotals": true
+ }
+ ],
+ []
+ ],
+ "forms": [],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/InformationRegisters/ЭлектронныеПодписи/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЭлектронныеПодписи",
+ "objectBelonging": "OWN",
+ "resources": [
+ [
+ {
+ "uuid": "19858faf-2bc5-4cfb-b258-cb101ab66e87",
+ "name": "ДатаПроверкиПодписи",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ДатаПроверкиПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ДатаПроверкиПодписи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата проверки подписи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "f779f4a1-1fab-46d4-8043-ac25c247d361",
+ "name": "ИмяФайлаПодписи",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ИмяФайлаПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ИмяФайлаПодписи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Имя файла подписи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "308358bc-773a-43fa-adff-dcc5884a2bd4",
+ "name": "Комментарий",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Комментарий",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Комментарий"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "ed541a1c-a842-40a9-b357-612db71ec32c",
+ "name": "КомуВыданСертификат",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.КомуВыданСертификат",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.КомуВыданСертификат"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Кому выдан сертификат"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "b0e37495-7d9e-41d0-8225-652f9ac328cf",
+ "name": "Отпечаток",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Отпечаток",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Отпечаток"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Отпечаток"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "3bd2e1c8-9ef3-449b-acf6-397b90669c49",
+ "name": "Подпись",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Подпись",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Подпись"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подпись"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "cb334191-2ff3-439e-bdaf-4b8fe6561c3b",
+ "name": "ПодписьВерна",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ПодписьВерна",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ПодписьВерна"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Подпись верна"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "f9865a2a-50e3-4f9c-a509-319be62dc468",
+ "name": "Сертификат",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.Сертификат",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.Сертификат"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сертификат"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "5f3a30b0-1ba8-423c-9bc2-f9a87cafe818",
+ "name": "ДатаПодписи",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.ДатаПодписи",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.ДатаПодписи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата подписи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ },
+ {
+ "uuid": "766d8852-3bb4-4a6c-81c0-911722af4e8e",
+ "name": "УстановившийПодпись",
+ "mdoReference": {
+ "type": "RESOURCE",
+ "mdoRef": "InformationRegister.ЭлектронныеПодписи.Resource.УстановившийПодпись",
+ "mdoRefRu": "РегистрСведений.ЭлектронныеПодписи.Ресурс.УстановившийПодпись"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Установивший подпись"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX"
+ }
+ ],
+ []
+ ],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Электронные подписи"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "b50f3157-3c3a-4553-a16a-7fcd660e2824"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Languages.\320\240\321\203\321\201\321\201\320\272\320\270\320\271.json" "b/src/test/resources/fixtures/ssl_3_1/Languages.\320\240\321\203\321\201\321\201\320\272\320\270\320\271.json"
new file mode 100644
index 000000000..f00270010
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Languages.\320\240\321\203\321\201\321\201\320\272\320\270\320\271.json"
@@ -0,0 +1,21 @@
+{"com.github._1c_syntax.bsl.mdo.Language": {
+ "comment": "",
+ "languageCode": "ru",
+ "mdoReference": {
+ "type": "LANGUAGE",
+ "mdoRef": "Language.Русский",
+ "mdoRefRu": "Язык.Русский"
+ },
+ "name": "Русский",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Русский"
+ ]
+ ]
+ },
+ "uuid": "db4a9ccb-9ef5-4b3c-8577-b6fe5db1b62e"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json"
new file mode 100644
index 000000000..862d4cd35
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262.json"
@@ -0,0 +1,94 @@
+{"com.github._1c_syntax.bsl.mdo.Report": {
+ "allAttributes": [],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.АнализВерсийОбъектов",
+ "mdoRefRu": "Отчет.АнализВерсийОбъектов"
+ },
+ "modules": [],
+ "name": "АнализВерсийОбъектов",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Анализ версий объектов"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [
+ {
+ "uuid": "9111e28e-c1c7-414b-9288-61bd06a04d04",
+ "name": "ОсновнаяСхемаКомпоновкиДанных",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.АнализВерсийОбъектов.Template.ОсновнаяСхемаКомпоновкиДанных",
+ "mdoRefRu": "Отчет.АнализВерсийОбъектов.Макет.ОсновнаяСхемаКомпоновкиДанных"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основная схема компоновки данных"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "НаборДанных1",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 46,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект) КАК ТипОбъекта,\n\tСУММА(ВерсииОбъектов.РазмерДанных / 1024 / 1024) КАК РазмерДанных,\n\tСУММА(1) КАК Количество\nИЗ\n\tРегистрСведений.ВерсииОбъектов КАК ВерсииОбъектов\nГДЕ\n\tВерсииОбъектов.РазмерДанных > 0\n\nСГРУППИРОВАТЬ ПО\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект)\n\nУПОРЯДОЧИТЬ ПО\n\tРазмерДанных УБЫВ,\n\tКоличество УБЫВ"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Количество",
+ "name": "Количество"
+ },
+ {
+ "dataPath": "РазмерДанных",
+ "name": "РазмерДанных"
+ },
+ {
+ "dataPath": "ТипОбъекта",
+ "name": "ТипОбъекта"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Reports/АнализВерсийОбъектов/Templates/ОсновнаяСхемаКомпоновкиДанных/Ext/Template.xml"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ }
+ ],
+ "uuid": "b3f7f763-bea9-4f59-9450-df95e5c3d89d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json"
new file mode 100644
index 000000000..a336a98b6
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Reports.\320\220\320\275\320\260\320\273\320\270\320\267\320\222\320\265\321\200\321\201\320\270\320\271\320\236\320\261\321\212\320\265\320\272\321\202\320\276\320\262_edt.json"
@@ -0,0 +1,94 @@
+{"com.github._1c_syntax.bsl.mdo.Report": {
+ "allAttributes": [],
+ "attributes": [],
+ "commands": [],
+ "comment": "",
+ "forms": [],
+ "mdoReference": {
+ "type": "REPORT",
+ "mdoRef": "Report.АнализВерсийОбъектов",
+ "mdoRefRu": "Отчет.АнализВерсийОбъектов"
+ },
+ "modules": [],
+ "name": "АнализВерсийОбъектов",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Анализ версий объектов"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [
+ {
+ "uuid": "9111e28e-c1c7-414b-9288-61bd06a04d04",
+ "name": "ОсновнаяСхемаКомпоновкиДанных",
+ "mdoReference": {
+ "type": "TEMPLATE",
+ "mdoRef": "Report.АнализВерсийОбъектов.Template.ОсновнаяСхемаКомпоновкиДанных",
+ "mdoRefRu": "Отчет.АнализВерсийОбъектов.Макет.ОсновнаяСхемаКомпоновкиДанных"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основная схема компоновки данных"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [],
+ "templateType": "DATA_COMPOSITION_SCHEME",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema",
+ "dataSets": [
+ {
+ "name": "НаборДанных1",
+ "type": "DATA_SET_QUERY",
+ "dataSource": "ИсточникДанных1",
+ "items": [],
+ "querySource": {
+ "position": {
+ "line": 46,
+ "column": 10
+ },
+ "textQuery": "ВЫБРАТЬ\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект) КАК ТипОбъекта,\n\tСУММА(ВерсииОбъектов.РазмерДанных / 1024 / 1024) КАК РазмерДанных,\n\tСУММА(1) КАК Количество\nИЗ\n\tРегистрСведений.ВерсииОбъектов КАК ВерсииОбъектов\nГДЕ\n\tВерсииОбъектов.РазмерДанных > 0\n\nСГРУППИРОВАТЬ ПО\n\tТИПЗНАЧЕНИЯ(ВерсииОбъектов.Объект)\n\nУПОРЯДОЧИТЬ ПО\n\tРазмерДанных УБЫВ,\n\tКоличество УБЫВ"
+ },
+ "fields": [
+ [
+ {
+ "dataPath": "Количество",
+ "name": "Количество"
+ },
+ {
+ "dataPath": "РазмерДанных",
+ "name": "РазмерДанных"
+ },
+ {
+ "dataPath": "ТипОбъекта",
+ "name": "ТипОбъекта"
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "plainDataSets": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/templates/com.github._1c_syntax.bsl.mdo.children.ObjectTemplate/data/dataSets/com.github._1c_syntax.bsl.mdo.storage.DataCompositionSchema$DataSet"
+ }
+ ],
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Reports/АнализВерсийОбъектов/Templates/ОсновнаяСхемаКомпоновкиДанных/Template.dcs"
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Report/mdoReference"
+ }
+ }
+ ],
+ "uuid": "b3f7f763-bea9-4f59-9450-df95e5c3d89d"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json" "b/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json"
new file mode 100644
index 000000000..af6fb4721
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json"
@@ -0,0 +1,3475 @@
+{"com.github._1c_syntax.bsl.mdo.Role": {
+ "comment": "Это базовые права БСП, которые должны быть у любого пользователя (кроме внешних пользователей)",
+ "data": {
+ "setForNewObjects": false,
+ "setForAttributesByDefault": true,
+ "independentRightsOfChildObjects": false,
+ "objectRights": [
+ [
+ {
+ "name": "CommonAttribute.НаименованиеЯзык1",
+ "rights": [
+ [
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ОбластьДанныхИспользование",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.НаличиеФайлов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ПропуститьПроверкуЗапретаИзменения",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "SessionParameter.СчетчикПроблемВеденияУчета",
+ "rights": [
+ [
+ {
+ "name": "GET",
+ "value": true
+ },
+ {
+ "name": "SET",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьПочтовыйКлиент",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьШаблоныСообщений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ПараметрыИтоговИАгрегатов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.НаборыДополнительныхРеквизитовИСведений",
+ "rights": [
+ {
+ "name": "READ",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.ПериодыНерабочихДнейКалендаря",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ВариантыОтчетов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ДатаУведомленияОНовыхЗадачах",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьЭлектронныеПодписи",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ОбновитьВерсиюДатЗапретаИзмененияПослеЗагрузкиДанных",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonCommand.ПраваДоступа",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДополнительныеОтчетыИОбработки",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.НомераОтсканированныхФайлов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "ChartOfCharacteristicTypes.ДополнительныеРеквизитыИСведения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ВерсияДатЗапретаИзменения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ЗапрещатьЗагрузкуФайловПоРасширению",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.РегиональныеНастройки",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.ВнешниеКомпоненты",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.АдресПубликацииИнформационнойБазыВИнтернете",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СоздаватьПодкаталогиСИменамиВладельцев",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ДомаЗданияСтроения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ПанельОтчетов",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.АутентификацияВСервисе",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "DataProcessor.НерекомендуемаяВерсияПлатформы",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.БуферОбмена",
+ "rights": [
+ [
+ {
+ "name": "GET",
+ "value": true
+ },
+ {
+ "name": "SET",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonCommand.НастроитьПрава",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.СпособХраненияФайлов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ТекущийПользователь",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.СлужебныеАдресныеСведения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ФормаВариантаОтчета",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ВопросОбУстановкеРасширенияРаботыСФайлами",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.УровниСокращенийАдресныхСведений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьСинхронизациюДанныхВЛокальномРежиме",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ВерсияКлассификатораБанков",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ВыполнятьЗамерыПроизводительности",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ВариантыОтчетов.Command.Открыть",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьПризнакРассмотрено",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ПредопределенныеВариантыОтчетовВерсийРасширений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СписокРасширенийФайловOpenDocumentОбластиДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьСинхронизациюДанныхВМоделиСервиса",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных",
+ "rights": [
+ {
+ "name": "READ",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonAttribute.НаименованиеЯзык2",
+ "rights": [
+ [
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.УстановкаВнешнейКомпонентыНевозможна",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ВопросОбУстановкеВнешнейКомпоненты",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ПраваДоступаУпрощенно",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборУзловПлановОбмена",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.ПредопределенныеВариантыОтчетовРасширений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ПредупрежденияПриЗавершенииРаботы",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.ИдентификаторыОбъектовМетаданных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ПредупреждениеБезопасности",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьШифрование",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ПараметрыПроксиСервера",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.ОбработчикиОбновления",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВходВПрограммуЗапрещен",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.ОбщиеВнешниеКомпоненты",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СписокЗапрещенныхРасширенийОбластиДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ОтправлятьПисьмаВФорматеHTML",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьПодчиненныеБизнесПроцессы",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.СтатусыСинхронизацииФайловСОблачнымСервисом",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДатыЗапретаЗагрузки",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ДанныеПроизводственногоКалендаря",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьВерсионированиеОбъектов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ВыполняетсяОбновлениеИБ",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.ПричиныИзмененияАдресныхСведений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.УправлениеПодключениемDSS",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ЗагрузкаДанныхИзФайла",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonCommand.ПредупрежденияПриЗавершенииРаботы",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.СписокРасширенийТекстовыхФайлов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборРолиИсполнителя",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.ЗагруженныеВерсииАдресныхСведений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ВыполняетсяУдалениеОбъектов",
+ "rights": [
+ [
+ {
+ "name": "GET",
+ "value": true
+ },
+ {
+ "name": "SET",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ИнформацияПриЗапуске.Command.ИнформацияПриЗапуске",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.РедактированиеГиперссылки",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.СписокРасширенийФайловOpenDocument",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВводНаРазныхЯзыках",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.НастройкиПравОбъектов",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ДатаПоследнейВыгрузкиЗамеровПроизводительностиUTC",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.Вопрос",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.Пользователи",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "UPDATE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборОбъектовМетаданных",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ЗагрузитьСообщениеОбменаДанными",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ПроверятьЭлектронныеПодписиНаСервере",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ОграничениеДоступаНаУровнеЗаписейУниверсально",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ПровайдерSMS",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ОсновнойЯзык",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ВводКонтактнойИнформации",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДополнительныйЯзык1",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ПользовательскиеНастройкиОтчетов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "INSERT",
+ "value": true
+ },
+ {
+ "name": "UPDATE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.АвторизованныйПользователь",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ФормаНастроекОтчета",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ФормаПоиска",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.РасширенноеПредставлениеОшибки",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ОтложенноеОбновлениеЗавершеноУспешно",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИзвлекатьТекстыФайловНаСервере",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ЗаполнениеКалендарныхГрафиков",
+ "rights": [
+ {
+ "name": "USE",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДополнительныеРеквизитыИСведения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьАнкетирование",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.СдвигГраницыИтогов",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборФорматаВложений",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.МаксимальныйРазмерФайла",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ПолнотекстовыйПоискВДанных",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ВерсияРасширений",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "DataProcessor.РасширенныйВводКонтактнойИнформации",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ПриоритетОбновленияВОбластяхДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ПраваДоступа",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДополнительныйЯзык2",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.СменаПароля",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборИсполнителяБизнесПроцесса",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.ПроизводственныеКалендари",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ЗаменаИОбъединениеЭлементов",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ВидыКонтактнойИнформации",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.СтраныМира",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СоздаватьЭлектронныеПодписиНаСервере",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДатуИВремяВСрокахЗадач",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ДополнительныеАдресныеСведения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьСервисОблачнойПодписи",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.Склонения",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.СтатусОбновленияКонфигурации",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьОтправкуSMSВШаблонахСообщений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.СоставыГруппПользователей",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ИнтерактивнаяПроверкаЗаполненияКонтактнойИнформации",
+ "rights": [
+ [
+ {
+ "name": "GET",
+ "value": true
+ },
+ {
+ "name": "SET",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ПользовательскиеМакетыПечати",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonCommand.УстановитьРасширениеДляРаботыС1СПредприятием",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ПодготовкаНовогоПисьма",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.НапоминаниеПриРедактировании",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonAttribute.КомментарийЯзык1",
+ "rights": [
+ [
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборДаты",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "SessionParameter.ОсновнойЯзык",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "DataProcessor.ПолнотекстовыйПоискВДанных.Command.ПолнотекстовыйПоиск",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.СравнениеТабличныхДокументов",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ДатаОбновленияПовторноИспользуемыхЗначенийМРО",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьПолнотекстовыйПоиск",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ДополнительныйЯзык2",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ПечатьДокументов",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборТиповПользователей",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.СервисПереводаТекста",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.НеИспользоватьРазделениеПоОбластямДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ФормаОтчета",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ПервоеОбновлениеДоступаЗавершилось",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СведенияОБлокируемыхОбъектах",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.РекомендацияПоПовышениюСкоростиРаботы",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ПредопределенныеВариантыОтчетов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonCommand.СменитьПароль",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьЭлектроннуюПочтуВШаблонахСообщений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВспомогательнаяФормаНастроекОтчета",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Report.ПраваДоступа",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ОценкаПроизводительностиПериодЗаписи",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ГлавныйУзел",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ЗаголовокСистемы",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.РедактированиеТабличногоДокумента",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьБизнесПроцессыИЗадачи",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ГруппыПользователей",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользуютсяПрофилиБезопасности",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.НастройкаРабочегоКаталога",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.КонтрольДинамическогоОбновления",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ОграничиватьДоступНаУровнеЗаписейУниверсально",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ЗначенияСвойствОбъектовИерархия",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.МаксимальныйРазмерФайлаОбластиДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьВнешнихПользователей",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.УчетныеЗаписиСинхронизацииФайлов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ИдентификаторыОбъектовРасширений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ВыполняетсяЗаписьОбъекта",
+ "rights": [
+ [
+ {
+ "name": "GET",
+ "value": true
+ },
+ {
+ "name": "SET",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьОнлайнПоддержку",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьГруппыПользователей",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьНесколькоПроизводственныхКалендарей",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.АдресныеОбъекты",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.НастройкаПодчиненногоУзлаРИБЗавершена",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ЗначенияСвойствОбъектов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.НастройкиПользователей.Command.НастройкиПользователя",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Catalog.КлассификаторБанков",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ИсторияАдресныхОбъектов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборДействияПриОбнаруженииОтличийФайла",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.СписокЗапрещенныхРасширений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.СвязиАдресныхОбъектов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ПараметрыОбработчикаОбновления",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.НастройкиВариантовОтчетов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "UPDATE",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonCommand.ПрисоединенныеФайлы",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ПоддерживаемыеКлиентскиеПриложения",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonCommand.Обсуждения",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "SessionParameter.ИнтерактивнаяПроверкаЗаполненияСвойств",
+ "rights": [
+ [
+ {
+ "name": "GET",
+ "value": true
+ },
+ {
+ "name": "SET",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьНапоминанияПользователя",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ПрефиксУзлаРаспределеннойИнформационнойБазы",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СообщениеОбменаДаннымиИзГлавногоУзла",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьЗаметки",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Catalog.ЯзыкиПечатныхФорм",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "INPUT_BY_STRING",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьСервисПереводаТекста",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.СозданиеНачальногоОбразаСФайлами",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Report.МестаИспользованияСсылок",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ПараметрыЦентраМониторинга",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ОграничиватьДоступНаУровнеЗаписей",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьРазделениеПоОбластямДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ХранитьФайлыВТомахНаДиске",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.КонструкторФормул",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьСервисСклоненияMorpher",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.СведенияОбОбновленииИБ",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВводЗначенийСпискомСФлажками",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.ОбщиеПоставляемыеМакетыПечати",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.КоличествоПотоковОбновленияИнформационнойБазы",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ОтложенноеОбновлениеВГлавномУзлеЗавершеноУспешно",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДатыЗапретаИзменения",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ЗемельныеУчастки",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ОтключениеОбновленияКлючейДоступа",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Configuration.БиблиотекаСтандартныхПодсистем",
+ "rights": [
+ [
+ {
+ "name": "MAIN_WINDOW_MODE_NORMAL",
+ "value": true
+ },
+ {
+ "name": "MAIN_WINDOW_MODE_WORKPLACE",
+ "value": true
+ },
+ {
+ "name": "MAIN_WINDOW_MODE_EMBEDDED_WORKPLACE",
+ "value": true
+ },
+ {
+ "name": "MAIN_WINDOW_MODE_FULLSCREEN_WORKPLACE",
+ "value": true
+ },
+ {
+ "name": "MAIN_WINDOW_MODE_KIOSK",
+ "value": true
+ },
+ {
+ "name": "ANALYTICS_SYSTEM_CLIENT",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьПрочиеВзаимодействия",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ЭтоАвтономноеРабочееМесто",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ИнформацияПриЗапуске",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ПараметрыКлиентаНаСервере",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonAttribute.КомментарийЯзык2",
+ "rights": [
+ [
+ {
+ "name": "VIEW",
+ "value": true
+ },
+ {
+ "name": "EDIT",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ДатаОбновленияПовторноИспользуемыхЗначенийМРО",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "InformationRegister.ИдентификаторыОбъектовВерсийРасширений",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.КоличествоЭлементовВТранзакцииЗагрузкиДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ТекущийВнешнийПользователь",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "DataProcessor.ГрупповоеИзменениеРеквизитов",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ДополнительныйЯзык1",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.УстановленныеРасширения",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonCommand.ПерсональнаяНастройкаПроксиСервера",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "CommonForm.ПустойРабочийСтол",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.АдресПубликацииИнформационнойБазыВЛокальнойСети",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.КодировкиФайлов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИсточникДанныхАдресногоКлассификатора",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ДействующиеДатыЗапретаИзменения",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "SessionParameter.РаботаСВнешнимиРесурсамиЗаблокирована",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ПараметрыХраненияФайловВИБ",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ОриентирыАдресныхОбъектов",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ДлительнаяОперация",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "DataProcessor.РезультатыОбновленияПрограммы",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.СохранениеПечатнойФормы",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ПовторитьЗагрузкуСообщенияОбменаДаннымиПередЗапуском",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "SessionParameter.ПодключенныеРасширения",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ДетализироватьОбновлениеИБВЖурналеРегистрации",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.НастройкиПользователей",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "DataProcessor.ПоискИУдалениеДублей",
+ "rights": [
+ [
+ {
+ "name": "USE",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьСинхронизациюДанных",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИдентификаторИнформационнойБазы",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "InformationRegister.ПоставляемыеМакетыПечати",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Constant.ИзменятьЗаданияЗаднимЧислом",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.ВыборПутиКАрхивуФайловТомов",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "SessionParameter.ОбластьДанныхЗначение",
+ "rights": [
+ {
+ "name": "GET",
+ "value": true
+ }
+ ]
+ },
+ {
+ "name": "Constant.ИспользоватьДатуНачалаЗадач",
+ "rights": [
+ [
+ {
+ "name": "READ",
+ "value": true
+ },
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "CommonForm.НовыйПароль",
+ "rights": [
+ {
+ "name": "VIEW",
+ "value": true
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ "mdoReference": {
+ "type": "ROLE",
+ "mdoRef": "Role.БазовыеПраваБСП",
+ "mdoRefRu": "Роль.БазовыеПраваБСП"
+ },
+ "name": "БазовыеПраваБСП",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Базовые права БСП"
+ ]
+ ]
+ },
+ "uuid": "cf19f220-f6d4-4c9e-b5d5-9d94234f0a2c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/ScheduledJobs.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\220\320\263\321\200\320\265\320\263\320\260\321\202\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/ScheduledJobs.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\220\320\263\321\200\320\265\320\263\320\260\321\202\320\276\320\262.json"
new file mode 100644
index 000000000..51bdd1c24
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/ScheduledJobs.\320\236\320\261\320\275\320\276\320\262\320\273\320\265\320\275\320\270\320\265\320\220\320\263\321\200\320\265\320\263\320\260\321\202\320\276\320\262.json"
@@ -0,0 +1,31 @@
+{"com.github._1c_syntax.bsl.mdo.ScheduledJob": {
+ "comment": "",
+ "description": "",
+ "key": "ОбновлениеАгрегатов",
+ "mdoReference": {
+ "type": "SCHEDULED_JOB",
+ "mdoRef": "ScheduledJob.ОбновлениеАгрегатов",
+ "mdoRefRu": "РегламентноеЗадание.ОбновлениеАгрегатов"
+ },
+ "methodName": {
+ "methodPath": "CommonModule.УправлениеИтогамиИАгрегатамиСлужебный.ОбновлениеАгрегатовОбработчикЗадания",
+ "moduleName": "УправлениеИтогамиИАгрегатамиСлужебный",
+ "methodName": "ОбновлениеАгрегатовОбработчикЗадания"
+ },
+ "name": "ОбновлениеАгрегатов",
+ "objectBelonging": "OWN",
+ "predefined": true,
+ "restartCountOnFailure": 3,
+ "restartIntervalOnFailure": 10,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Обновление агрегатов"
+ ]
+ ]
+ },
+ "use": false,
+ "uuid": "798bd34c-d0ee-4590-9b1d-8bc47e42ca8c"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/SessionParameters.\320\242\320\265\320\272\321\203\321\211\320\270\320\271\320\237\320\276\320\273\321\214\320\267\320\276\320\262\320\260\321\202\320\265\320\273\321\214.json" "b/src/test/resources/fixtures/ssl_3_1/SessionParameters.\320\242\320\265\320\272\321\203\321\211\320\270\320\271\320\237\320\276\320\273\321\214\320\267\320\276\320\262\320\260\321\202\320\265\320\273\321\214.json"
new file mode 100644
index 000000000..f4de106d4
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/SessionParameters.\320\242\320\265\320\272\321\203\321\211\320\270\320\271\320\237\320\276\320\273\321\214\320\267\320\276\320\262\320\260\321\202\320\265\320\273\321\214.json"
@@ -0,0 +1,20 @@
+{"com.github._1c_syntax.bsl.mdo.SessionParameter": {
+ "comment": "",
+ "mdoReference": {
+ "type": "SESSION_PARAMETER",
+ "mdoRef": "SessionParameter.ТекущийПользователь",
+ "mdoRefRu": "ПараметрСеанса.ТекущийПользователь"
+ },
+ "name": "ТекущийПользователь",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Текущий пользователь"
+ ]
+ ]
+ },
+ "uuid": "1ed910db-e434-4efd-9b12-c25353a31d5a"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json" "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json"
new file mode 100644
index 000000000..4dbcb6ed1
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262.json"
@@ -0,0 +1,6915 @@
+{"com.github._1c_syntax.bsl.mdo.SettingsStorage": {
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "077e2c42-bc3b-48bf-bbc2-41effe20f613",
+ "name": "БыстрыеНастройкиОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.БыстрыеНастройкиОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.БыстрыеНастройкиОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Быстрые настройки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/БыстрыеНастройкиОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/БыстрыеНастройкиОтчета/Ext/Form.xml",
+ "title": {
+ "content": []
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "БыстрыеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Быстрые настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 38,
+ "name": "БыстрыеНастройкиГруппаНастройка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 14,
+ "name": "БыстрыеНастройкиПометка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.Пометка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 56,
+ "name": "БыстрыеНастройкиКартинкаНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.КартинкаНастройки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "БыстрыеНастройкиЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.Заголовок",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 93,
+ "name": "БыстрыеНастройкиВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.ВидСравнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 96,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Hyperlink",
+ "id": 104,
+ "name": "ПерейтиКРасширеннымНастройкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 98,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 100,
+ "name": "Применить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 102,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "БыстрыеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Быстрые настройки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ВариантМодифицирован",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "КлючТекущегоВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "57964dd6-4b0b-4590-bc44-de744cc423af",
+ "name": "ВыборВариантаОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборВариантаОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборВариантаОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор варианта отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборВариантаОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборВариантаОтчета/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 22,
+ "name": "БыстрыеОтборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Быстрые фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 56,
+ "name": "ОтборАвтор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ОтборАвтор",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 27,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 6,
+ "name": "Выбрать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 7,
+ "name": "Изменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 15,
+ "name": "Удалить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометить на удаление / Снять пометку"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 13,
+ "name": "ПоказыватьЛичныеВариантыОтчетовДругихАвторов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 28,
+ "name": "ФормаОбновить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 8,
+ "name": "КоманднаяПанельДерева",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель дерева"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "ДеревоВариантовОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево вариантов отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "ДеревоВариантовОтчетаПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 29,
+ "name": "ДеревоВариантовОтчетаКартинкаАвтора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета.КартинкаАвтора",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ДеревоВариантовОтчетаАвтор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ВариантОписание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВариантОписание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ДеревоВариантовОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево вариантов отчета"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ТекущийПользователь",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ОтчетИнформация",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПолныеПраваНаВарианты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВариантОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ПоказыватьЛичныеВариантыОтчетовДругихАвторов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "КлючВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ОтборАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "f5bb88eb-c239-4ae3-a297-dfbbd679e008",
+ "name": "ВыборПоляОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборПоляОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборПоляОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор поля отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборПоляОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборПоляОтчета/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор поля отчета"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаДоступныеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступные поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ИмяКоллекцииПолей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "Режим",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "c888ccc1-9116-4b88-b950-aeabd54191c0",
+ "name": "ВыборФинансовогоПериода",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборФинансовогоПериода",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборФинансовогоПериода"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор финансового периода"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериода/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериода/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор периода"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 99,
+ "name": "ГруппаВыборГода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор года"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 187,
+ "name": "ПерейтиНаГодНазадВарианты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перейти на год назад (варианты)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 90,
+ "name": "ПерейтиНаГодНазадДоступно",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 184,
+ "name": "ПерейтиНаГодНазадНедоступно",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 92,
+ "name": "ДатаНачалаГода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДатаНачалаГода",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 95,
+ "name": "ПерейтиНаГодВперед",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 176,
+ "name": "ГруппаВыборПериода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор периода"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 178,
+ "name": "Месяцы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Месяцы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 150,
+ "name": "Квартал1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 1"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 101,
+ "name": "ВыбратьМесяц1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 103,
+ "name": "ВыбратьМесяц2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 105,
+ "name": "ВыбратьМесяц3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 154,
+ "name": "Квартал2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 2"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 109,
+ "name": "ВыбратьМесяц4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 111,
+ "name": "ВыбратьМесяц5",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 113,
+ "name": "ВыбратьМесяц6",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 158,
+ "name": "Квартал3",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 3"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 117,
+ "name": "ВыбратьМесяц7",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 119,
+ "name": "ВыбратьМесяц8",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 121,
+ "name": "ВыбратьМесяц9",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 162,
+ "name": "Квартал4",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 4"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 125,
+ "name": "ВыбратьМесяц10",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 127,
+ "name": "ВыбратьМесяц11",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 129,
+ "name": "ВыбратьМесяц12",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 180,
+ "name": "Кварталы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Кварталы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 107,
+ "name": "ВыбратьКвартал1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 115,
+ "name": "ВыбратьКвартал2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 123,
+ "name": "ВыбратьКвартал3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 131,
+ "name": "ВыбратьКвартал4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 182,
+ "name": "НарастающимИтогом",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Нарастающим итогом"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 174,
+ "name": "ВыбратьДень",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 133,
+ "name": "ВыбратьПолугодие",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "полугодие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 137,
+ "name": "Выбрать9Месяцев",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 139,
+ "name": "ВыбратьГод",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 193,
+ "name": "ГруппаОчиститьПериод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Очистить период"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 189,
+ "name": "ОчиститьПериод",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 195,
+ "name": "ПерейтиКСтандартномуВариантуПериода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "НачалоПериода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "КонецПериода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ДатаНачалаГода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата начала года"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИмяТекущегоЭлемента",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 1,
+ "name": "ОграничениеСнизу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВыбранныйГодОграничен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "Период",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ИмяКоманды",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ "PLATFORM_APPLICATION"
+ ]
+ },
+ {
+ "uuid": "ff4d92a7-5fa3-4a46-a6f5-47c3952edb22",
+ "name": "ВыборФинансовогоПериодаДень",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборФинансовогоПериодаДень",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборФинансовогоПериодаДень"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор финансового периода день"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериодаДень/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериодаДень/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор дня"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "CalendarField",
+ "id": 1,
+ "name": "День",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "День",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "День",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "День"
+ ]
+ ]
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "bb350b39-1f4d-460a-98c9-8d2308cf22f0",
+ "name": "ГруппаВыбранныхПолей",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ГруппаВыбранныхПолей",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ГруппаВыбранныхПолей"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа выбранных полей"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ГруппаВыбранныхПолей/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ГруппаВыбранныхПолей/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "ЗаголовокГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЗаголовокГруппы",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 4,
+ "name": "Расположение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "РасположениеГруппы",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ЗаголовокГруппы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "РасположениеГруппы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Расположение"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "eaeb5aa8-8edf-4f74-8011-2d476f543bf6",
+ "name": "КонтекстнаяНастройкаОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.КонтекстнаяНастройкаОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.КонтекстнаяНастройкаОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Контекстная настройка отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/КонтекстнаяНастройкаОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/КонтекстнаяНастройкаОтчета/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 266,
+ "name": "Сортировка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сортировка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 1,
+ "name": "СортироватьПоВозрастанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 3,
+ "name": "СортироватьПоУбыванию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 16,
+ "name": "ФильтрПоЗначению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр по значению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 404,
+ "name": "ФильтрПоЗначениюСтраницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр по значению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 406,
+ "name": "ЗначенияФильтра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 18,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 34,
+ "name": "ЗначенияПометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения.Check",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 31,
+ "name": "ЗначенияЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 435,
+ "name": "ОпцииЗаполненияФильтраПоЗначению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Опции заполнения фильтра по значению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 415,
+ "name": "СтатистикаФильтраПоЗначению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 437,
+ "name": "ВывестиВсеЗначенияРазделаОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вывести все"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 408,
+ "name": "Ожидание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 423,
+ "name": "СтатусыОжидания",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статусы ожидания"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 421,
+ "name": "ОжиданиеЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание заполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 410,
+ "name": "ИндикаторДлительнойОперации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Индикатор длительной операции"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 418,
+ "name": "ПредставлениеДлительнойОперации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполняется чтение строк поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 425,
+ "name": "ОшибкаЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ошибка заполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureDecoration",
+ "id": 430,
+ "name": "ИндикаторОшибки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Индикатор ошибки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 427,
+ "name": "ОписаниеОшибкиЗаполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 8,
+ "name": "ФильтрПоУсловию",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр по условию"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 376,
+ "name": "СвойстваФильтраПоУсловиюСлева",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства фильтра по условию слева"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CheckBoxField",
+ "id": 373,
+ "name": "Использование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Использование",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 378,
+ "name": "СвойстваФильтраПоУсловиюСправа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства фильтра по условию справа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "ВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВидСравнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "ПравоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПравоеЗначение",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 299,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 212,
+ "name": "ДополнительныеВозможности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 294,
+ "name": "ДополнительныеВозможностиОтступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 292,
+ "name": "КомандыДополнительныхВозможностей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды дополнительных возможностей"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 440,
+ "name": "СгруппироватьПоВыбранномуПолю",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 442,
+ "name": "СгруппироватьГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 196,
+ "name": "Поле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поле"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 198,
+ "name": "Вставка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вставка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 156,
+ "name": "ВставитьПолеСлева",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 158,
+ "name": "ВставитьПолеСправа",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 160,
+ "name": "ВставитьГруппировкуВыше",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 162,
+ "name": "ВставитьГруппировкуНиже",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 356,
+ "name": "ВставкаГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 200,
+ "name": "Перемещение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перемещение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 186,
+ "name": "ПереместитьПолеВлево",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 188,
+ "name": "ПереместитьПолеВправо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 190,
+ "name": "ПереместитьПолеВыше",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 192,
+ "name": "ПереместитьПолеНиже",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 359,
+ "name": "ПеремещениеГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 248,
+ "name": "СкрытиеПереименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Скрытие, переименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 164,
+ "name": "СкрытьПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 303,
+ "name": "Переименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Переименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 166,
+ "name": "ПереименоватьПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 305,
+ "name": "ПредставлениеПоля",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеПоля",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 393,
+ "name": "ПереименоватьПолеЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 362,
+ "name": "СкрытиеПереименованиеГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 202,
+ "name": "Оформление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 204,
+ "name": "УстановкаЦвета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка цвета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 172,
+ "name": "ОформитьОтрицательные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 174,
+ "name": "ОформитьПоложительные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 365,
+ "name": "УстановкаЦветаГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 384,
+ "name": "ГруппаШиринаВысота",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ширина высота"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 206,
+ "name": "УстановкаШириныВысоты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка ширины, высоты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 308,
+ "name": "УстановкаВысотыСтроки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка высоты строки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 380,
+ "name": "УстановитьВысотуСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 310,
+ "name": "ВысотаСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВысотаСтроки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 389,
+ "name": "УстановитьВысотуСтрокиЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 313,
+ "name": "УстановкаШириныКолонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка ширины колонки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 382,
+ "name": "УстановитьШиринуКолонки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 315,
+ "name": "ШиринаКолонки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ШиринаКолонки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 391,
+ "name": "УстановитьШиринуКолонкиЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 386,
+ "name": "Отступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 368,
+ "name": "УстановкаШириныВысотыГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 182,
+ "name": "ОформитьЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 301,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 318,
+ "name": "ФильтроватьИСформировать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 320,
+ "name": "Фильтровать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 284,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ВидСравнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид сравнения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПравоеЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Использование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ПредставлениеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление поля"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВысотаСтроки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Высота строки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ШиринаКолонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ширина колонки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 12,
+ "name": "СвойстваЗаголовка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ДоступныеЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "СнятьФильтрПоУсловию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "ИндексыГруппИЭлементов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "КоличествоСтрокВРазделеОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ВыведеныВсеЗначенияРазделаОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "КоличествоПервыхЧитаемыхСтрок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "АдресДанныхРасшифровки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 19,
+ "name": "Документ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "343b979a-97e3-4eac-a314-3bd3eea9c15c",
+ "name": "ОписаниеНовойВозможностиПоВыводуОписаний",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ОписаниеНовойВозможностиПоВыводуОписаний",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ОписаниеНовойВозможностиПоВыводуОписаний"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Описание новой возможности по выводу описаний"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ОписаниеНовойВозможностиПоВыводуОписаний/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[8]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ОписаниеНовойВозможностиПоВыводуОписаний/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вывод описаний к отчетам"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 1,
+ "name": "Декорация1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Теперь к отчетам выводятся их подробные описания>.\n\nДля того чтобы включить или отключить эту возможность позже\nвыберите Настроить> - Показывать описания к отчетам>."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 8,
+ "name": "Декорация2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "ОтключитьОписания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "b2f17ef1-3f6f-4029-b3e2-28d6b79c5b76",
+ "name": "ПанельДругихОтчетов",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ПанельДругихОтчетов",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ПанельДругихОтчетов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Панель других отчетов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ПанельДругихОтчетов/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[9]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ПанельДругихОтчетов/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Другие отчеты"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СтраницаДругиеОтчеты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница другие отчеты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 3,
+ "name": "ГруппаДругиеВариантыОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 5,
+ "name": "ГруппаПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подвал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 7,
+ "name": "ЗакрыватьПослеВыбора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЗакрыватьПослеВыбора",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 10,
+ "name": "ГруппаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 12,
+ "name": "Закрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 14,
+ "name": "ФормаСправка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ВариантСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПодсистемаСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ОтчетСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ГруппыПодсистем",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ЕстьДругиеОтчеты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ВариантыПанели",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВариантыПанелиНомерЭлемента",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ВариантыПанелиКлючТекущегоВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ЗакрыватьПослеВыбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закрывать это окно после перехода к отчету"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ОтчетНаименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "7adced5f-3a5f-419a-926c-0452aad86c86",
+ "name": "РасширеннаяНастройкаФильтраОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.РасширеннаяНастройкаФильтраОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.РасширеннаяНастройкаФильтраОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Расширенная настройка фильтра отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/РасширеннаяНастройкаФильтраОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[10]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/РасширеннаяНастройкаФильтраОтчета/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтровать по"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "ЭлементОтбора1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Элемент отбора 1"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 44,
+ "name": "Использование1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Использование1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 58,
+ "name": "ГруппаЛевоеЗначение1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 1"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 24,
+ "name": "ЛевоеЗначение1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЛевоеЗначение1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 60,
+ "name": "ПредставлениеЛевогоЗначения1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеЛевогоЗначения1",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "ВидСравнения1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВидСравнения1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "ПравоеЗначение1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПравоеЗначение1",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 30,
+ "name": "Дополнительно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 47,
+ "name": "ИспользованиеГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользованиеГруппы",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ТипГруппыЭлементовФильтра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Условие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ТипГруппыЭлементовФильтра",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 3,
+ "name": "ЭлементОтбора2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Элемент отбора 2"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 63,
+ "name": "ГруппаЛевоеЗначение2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 2"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 27,
+ "name": "ЛевоеЗначение2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЛевоеЗначение2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 65,
+ "name": "ПредставлениеЛевогоЗначения2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеЛевогоЗначения2",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ВидСравнения2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВидСравнения2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "ПравоеЗначение2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПравоеЗначение2",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 68,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Hyperlink",
+ "id": 72,
+ "name": "ПерейтиКРасширеннымНастройкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 70,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 56,
+ "name": "ФильтроватьИСформировать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 54,
+ "name": "Фильтровать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 52,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ВидСравнения1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид сравнения 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПравоеЗначение1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВидСравнения2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид сравнения 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПравоеЗначение2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТипГруппыЭлементовФильтра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип группы элементов фильтра"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ЛевоеЗначение1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЛевоеЗначение2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "Использование1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "Использование2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "СвойстваЗаголовка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 12,
+ "name": "ПредставлениеЛевогоЗначения1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление левого значения 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ПредставлениеЛевогоЗначения2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление левого значения 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ТипЗначенияФильтра",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ДоступныеЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "КлючТекущегоВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ИспользованиеГруппы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование группы"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "364cbfe2-bc44-4387-aa7e-6b4aa086c9e9",
+ "name": "СохранениеВариантаОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.СохранениеВариантаОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.СохранениеВариантаОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сохранение варианта отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[11]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчета/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "FillCheckProcessingAtServer",
+ "name": "ОбработкаПроверкиЗаполненияНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Pages",
+ "id": 24,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 25,
+ "name": "Основное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 52,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 98,
+ "name": "Доступен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Доступен",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 206,
+ "name": "ПользователиВарианта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователи варианта"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользователиВарианта",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 236,
+ "name": "ПользователиВариантаПометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользователиВарианта.Check",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 219,
+ "name": "ПользователиВариантаЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользователиВарианта.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 247,
+ "name": "УведомитьПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "УведомитьПользователей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 250,
+ "name": "ГруппаОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Описание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Объект.Описание",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 190,
+ "name": "Страница1Подвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница 1 подвал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 86,
+ "name": "ЧтоБудетДальше",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Что будет дальше"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 88,
+ "name": "Новый",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Новый"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 187,
+ "name": "ДекорацияЧтоБудетДальшеНовый",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Будет сохранен новый вариант отчета.\nНажмите \"Далее\" для размещения варианта отчета в разделах программы."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 87,
+ "name": "Перезапись",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перезапись"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 184,
+ "name": "ДекорацияЧтоБудетДальшеПерезапись",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Будет перезаписан существующий вариант отчета.\nНажмите \"Далее\" для размещения варианта отчета в разделах программы."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 201,
+ "name": "ПерезаписьНевозможна",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перезапись невозможна"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "LabelDecoration",
+ "id": 203,
+ "name": "ДекорацияЧтоБудетДальшеПерезаписьНевозможна",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование занято другим вариантом отчета.\nВведите другое наименование или выберите вариант из списка."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 26,
+ "name": "Дополнительно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительно"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 225,
+ "name": "СброситьНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "СброситьНастройки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 74,
+ "name": "ДеревоПодсистем",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево подсистем"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 77,
+ "name": "ГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 78,
+ "name": "ДеревоПодсистемИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.Использование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 80,
+ "name": "ДеревоПодсистемПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 82,
+ "name": "ДеревоПодсистемВажность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 137,
+ "name": "ДеревоПодсистемПользователиПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.ПользователиПредставление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 145,
+ "name": "ГруппаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 147,
+ "name": "ГруппаКоманднаяПанельЛевая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель левая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBarButton",
+ "id": 23,
+ "name": "Назад",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 149,
+ "name": "ГруппаКоманднаяПанельПравая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель правая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 15,
+ "name": "Далее",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 55,
+ "name": "Сохранить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 16,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 151,
+ "name": "ГруппаКоманднаяПанельСправка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ПрототипКлюч",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВариантыОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВариантСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ВариантКлючВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ПрототипСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ИдентификаторТекущейСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "Доступен",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступен"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ДеревоПодсистем",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Размещение в панелях отчетов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 19,
+ "name": "Контекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 20,
+ "name": "СброситьНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сбросить настройки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 21,
+ "name": "ОписаниеМодифицировано",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 22,
+ "name": "НаименованиеМодифицировано",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 23,
+ "name": "ПрототипПредопределенный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 24,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПользователиВарианта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователи варианта"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ИспользоватьВнешнихПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ИспользоватьГруппыПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ЭтоКонтекстныйВариантОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ВариантыКонтекста",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "УведомитьПользователей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомить в чате об этом варианте отчета"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "7433b2a9-f634-4af7-ac85-6aa1280ea239",
+ "name": "СохранениеВариантаОтчетаВФайл",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.СохранениеВариантаОтчетаВФайл",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.СохранениеВариантаОтчетаВФайл"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сохранение варианта отчета в файл"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчетаВФайл/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[12]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчетаВФайл/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "Pages",
+ "id": 29,
+ "name": "ВариантыСохранения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты сохранения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 31,
+ "name": "ОдинВариантОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один вариант отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "ИмяФайла",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИмяФайла",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 4,
+ "name": "ПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользовательские настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользовательскиеНастройки",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 20,
+ "name": "ПользовательскиеНастройкиПометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользовательскиеНастройки.Check",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ПользовательскиеНастройкиЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользовательскиеНастройки.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 33,
+ "name": "НесколькоВариантовОтчетов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Несколько вариантов отчетов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 35,
+ "name": "ИмяКаталога",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИмяКаталога",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 38,
+ "name": "ОписаниеВариантовОтчетов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание вариантов отчетов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОписаниеВариантовОтчетов",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 51,
+ "name": "ОписаниеВариантовОтчетовСсылка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вариант отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОписаниеВариантовОтчетов.Ссылка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 72,
+ "name": "ОписаниеВариантовОтчетовИмяФайлаКраткое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ОписаниеВариантовОтчетов.ИмяФайлаКраткое",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ИмяФайла",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Имя файла"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ХранилищеПользовательскихНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ИмяКаталога",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Каталог"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ОписаниеВариантовОтчетов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание вариантов отчетов"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9f32e85c-2ed6-41db-b0ec-6d8596940e80",
+ "name": "УсловияОтборовОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.УсловияОтборовОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.УсловияОтборовОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Условия отборов отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/УсловияОтборовОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[13]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/УсловияОтборовОтчета/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Условия фильтров отчета"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "Table",
+ "id": 28,
+ "name": "Отборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Отборы",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "ОтборыПредставлениеПользовательскойНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Отборы.ПредставлениеПользовательскойНастройки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 44,
+ "name": "ОтборыВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Отборы.ВидСравнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 47,
+ "name": "ГруппаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 26,
+ "name": "ФормаВыбрать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 49,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 51,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ИмяТаблицы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "Картинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "Режим",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "Отборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "f259b6b4-d582-429f-a16f-027a6bcb7438",
+ "name": "ЭлементУсловногоОформленияОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ЭлементУсловногоОформленияОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ЭлементУсловногоОформленияОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Элемент условного оформления отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ЭлементУсловногоОформленияОтчета/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ЭлементУсловногоОформленияОтчета/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 337,
+ "name": "ГруппаОформляемыеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемые поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 354,
+ "name": "ГруппаОформляемыеПоляВариантыВыбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты выбора"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 356,
+ "name": "ВариантВыбораОформляемыхПолей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВариантВыбораОформляемыхПолей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 362,
+ "name": "ОформляемыеПоляСтраницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемые поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 364,
+ "name": "СтраницаОформляемоеПоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемое поле"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 359,
+ "name": "ОформляемоеПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ОформляемоеПоле",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 366,
+ "name": "СтраницаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBar",
+ "id": 368,
+ "name": "ОформляемыеПоляКомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 265,
+ "name": "ОформляемыеПоляДобавить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 257,
+ "name": "ОформляемыеПоляГруппаИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 259,
+ "name": "ОформляемыеПоляУстановитьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 261,
+ "name": "ОформляемыеПоляСнятьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 275,
+ "name": "ОформляемыеПоляГруппаПереместить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Переместить"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 277,
+ "name": "ОформляемыеПоляПереместитьВверх",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 279,
+ "name": "ОформляемыеПоляПереместитьВниз",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 30,
+ "name": "ОформляемыеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемые поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 206,
+ "name": "ОформляемыеПоляГруппаКолонокПоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поле"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 203,
+ "name": "ОформляемыеПоляИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Use",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 211,
+ "name": "ОформляемыеПоляПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Field",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 333,
+ "name": "ГруппаОформление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Table",
+ "id": 72,
+ "name": "Оформление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 201,
+ "name": "ОформлениеГруппаИспользованиеПараметра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование параметра"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 96,
+ "name": "ОформлениеИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Use",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 105,
+ "name": "ОформлениеПараметр",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Parameter",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 108,
+ "name": "ОформлениеГруппаКолонокЗначениеПараметра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 110,
+ "name": "ОформлениеКартинкаЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.ValuePicture",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 113,
+ "name": "ОформлениеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 335,
+ "name": "ГруппаОтбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 345,
+ "name": "ОтборКоманднаяПанель1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 347,
+ "name": "ОтборЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Условие:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 350,
+ "name": "ОтборКомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 293,
+ "name": "ОтборДобавитьЭлементОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Добавить"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 285,
+ "name": "ОтборГруппаИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 295,
+ "name": "ОтборУстановитьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 297,
+ "name": "ОтборСнятьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 291,
+ "name": "ОтборГруппаПереместить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Переместить"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 299,
+ "name": "ОтборПереместитьВверх",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 301,
+ "name": "ОтборПереместитьВниз",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 51,
+ "name": "Отбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 214,
+ "name": "ОтборИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Use",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 217,
+ "name": "ОтборГруппаКолонокОтбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 224,
+ "name": "ОтборГруппаКолонокОсновныеЭлементыОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основные элементы фильтра"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 229,
+ "name": "ОтборГруппаКолонокЛевоеЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 231,
+ "name": "ОтборКартинкаЛевогоЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValuePicture",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 234,
+ "name": "ОтборЛевоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValue",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 237,
+ "name": "ОтборВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ComparisonType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 240,
+ "name": "ОтборГруппаКолонокПравоеЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 242,
+ "name": "ОтборКартинкаПравогоЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValuePicture",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 245,
+ "name": "ОтборПравоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValue",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 248,
+ "name": "ОтборДата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 226,
+ "name": "ОтборТипГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.GroupType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 329,
+ "name": "ОтборГруппа6",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр группа 6"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 219,
+ "name": "ОтборГруппаКолонокПрименение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Применение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 251,
+ "name": "ОтборПрименение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Application",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 254,
+ "name": "ОтборРежимОтображения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ViewMode",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 221,
+ "name": "ОтборПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Presentation",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 93,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 339,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 341,
+ "name": "ВариантыИспользования",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 156,
+ "name": "ВариантыИспользованияКоманды",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты использования (команды)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 153,
+ "name": "ДекорацияПоказывать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать: "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 199,
+ "name": "КомандыИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "ButtonGroup",
+ "id": 343,
+ "name": "ГруппаИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 190,
+ "name": "Показывать_УстановитьПометки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 188,
+ "name": "Показывать_СнятьПометки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 160,
+ "name": "ВариантыИспользованияПометки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты использования (пометки)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 185,
+ "name": "ИспользоватьВГруппировке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВГруппировке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 176,
+ "name": "ИспользоватьВИерархическойГруппировке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВИерархическойГруппировке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 173,
+ "name": "ИспользоватьВОбщемИтоге",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВОбщемИтоге",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 179,
+ "name": "ИспользоватьВЗаголовкеПолей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВЗаголовкеПолей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 182,
+ "name": "ИспользоватьВЗаголовке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВЗаголовке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 167,
+ "name": "ИспользоватьВПараметрах",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВПараметрах",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 170,
+ "name": "ИспользоватьВОтборе",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВОтборе",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 323,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 26,
+ "name": "ФормаВыбрать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 325,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 327,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ИдентификаторКД",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "НаименованиеПоУмолчанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "Наименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ИспользоватьВГруппировке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В группировке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ИспользоватьВПараметрах",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В параметрах"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ИспользоватьВОтборе",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В фильтрах"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ИспользоватьВОбщемИтоге",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В общем итоге"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ИспользоватьВИерархическойГруппировке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В иерархической группировке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ИспользоватьВЗаголовкеПолей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В заголовке полей"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 15,
+ "name": "ИспользоватьВЗаголовке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В заголовке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 16,
+ "name": "ФлажкиОбластиОтображения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ТребуетсяОбновлениеНаименованияПоУмолчанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ЭтоНовый",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ВариантВыбораОформляемыхПолей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вариант выбора оформляемых полей"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ОформляемоеПоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемое поле"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/SettingsStorages/ХранилищеВариантовОтчетов/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ХранилищеВариантовОтчетов",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Хранилище вариантов отчетов"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "14512818-58b0-44cc-b00d-d37913c57aad"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json" "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json"
new file mode 100644
index 000000000..8316bf709
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/SettingsStorages.\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\222\320\260\321\200\320\270\320\260\320\275\321\202\320\276\320\262\320\236\321\202\321\207\320\265\321\202\320\276\320\262_edt.json"
@@ -0,0 +1,6915 @@
+{"com.github._1c_syntax.bsl.mdo.SettingsStorage": {
+ "comment": "",
+ "forms": [
+ [
+ {
+ "uuid": "077e2c42-bc3b-48bf-bbc2-41effe20f613",
+ "name": "БыстрыеНастройкиОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.БыстрыеНастройкиОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.БыстрыеНастройкиОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Быстрые настройки"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/БыстрыеНастройкиОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/БыстрыеНастройкиОтчета/Form.form",
+ "title": {
+ "content": []
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 1,
+ "name": "БыстрыеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Быстрые настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 38,
+ "name": "БыстрыеНастройкиГруппаНастройка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 14,
+ "name": "БыстрыеНастройкиПометка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.Пометка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 56,
+ "name": "БыстрыеНастройкиКартинкаНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.КартинкаНастройки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "БыстрыеНастройкиЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.Заголовок",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 93,
+ "name": "БыстрыеНастройкиВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "БыстрыеНастройки.ВидСравнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 96,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Hyperlink",
+ "id": 104,
+ "name": "ПерейтиКРасширеннымНастройкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 98,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 100,
+ "name": "Применить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 102,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "БыстрыеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Быстрые настройки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ВариантМодифицирован",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "КлючТекущегоВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "type": "SETTINGS_STORAGE",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "57964dd6-4b0b-4590-bc44-de744cc423af",
+ "name": "ВыборВариантаОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборВариантаОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборВариантаОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор варианта отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборВариантаОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборВариантаОтчета/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 22,
+ "name": "БыстрыеОтборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Быстрые фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 56,
+ "name": "ОтборАвтор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ОтборАвтор",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 27,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 6,
+ "name": "Выбрать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 7,
+ "name": "Изменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 15,
+ "name": "Удалить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометить на удаление / Снять пометку"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 13,
+ "name": "ПоказыватьЛичныеВариантыОтчетовДругихАвторов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 28,
+ "name": "ФормаОбновить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 8,
+ "name": "КоманднаяПанельДерева",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель дерева"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "ДеревоВариантовОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево вариантов отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "ДеревоВариантовОтчетаПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета.Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 29,
+ "name": "ДеревоВариантовОтчетаКартинкаАвтора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета.КартинкаАвтора",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ДеревоВариантовОтчетаАвтор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоВариантовОтчета.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ВариантОписание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВариантОписание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ДеревоВариантовОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево вариантов отчета"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ТекущийПользователь",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ОтчетИнформация",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПолныеПраваНаВарианты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВариантОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ПоказыватьЛичныеВариантыОтчетовДругихАвторов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "КлючВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ОтборАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "f5bb88eb-c239-4ae3-a297-dfbbd679e008",
+ "name": "ВыборПоляОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборПоляОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборПоляОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор поля отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборПоляОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборПоляОтчета/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор поля отчета"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаДоступныеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступные поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ИмяКоллекцииПолей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "Режим",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "c888ccc1-9116-4b88-b950-aeabd54191c0",
+ "name": "ВыборФинансовогоПериода",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборФинансовогоПериода",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборФинансовогоПериода"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор финансового периода"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериода/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериода/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор периода"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 99,
+ "name": "ГруппаВыборГода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор года"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 187,
+ "name": "ПерейтиНаГодНазадВарианты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перейти на год назад (варианты)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 90,
+ "name": "ПерейтиНаГодНазадДоступно",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 184,
+ "name": "ПерейтиНаГодНазадНедоступно",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 92,
+ "name": "ДатаНачалаГода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДатаНачалаГода",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 95,
+ "name": "ПерейтиНаГодВперед",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 176,
+ "name": "ГруппаВыборПериода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор периода"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 178,
+ "name": "Месяцы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Месяцы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 150,
+ "name": "Квартал1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 1"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 101,
+ "name": "ВыбратьМесяц1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 103,
+ "name": "ВыбратьМесяц2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 105,
+ "name": "ВыбратьМесяц3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 154,
+ "name": "Квартал2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 2"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 109,
+ "name": "ВыбратьМесяц4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 111,
+ "name": "ВыбратьМесяц5",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 113,
+ "name": "ВыбратьМесяц6",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 158,
+ "name": "Квартал3",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 3"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 117,
+ "name": "ВыбратьМесяц7",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 119,
+ "name": "ВыбратьМесяц8",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 121,
+ "name": "ВыбратьМесяц9",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 162,
+ "name": "Квартал4",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Квартал 4"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 125,
+ "name": "ВыбратьМесяц10",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 127,
+ "name": "ВыбратьМесяц11",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 129,
+ "name": "ВыбратьМесяц12",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 180,
+ "name": "Кварталы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Кварталы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 107,
+ "name": "ВыбратьКвартал1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 115,
+ "name": "ВыбратьКвартал2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 123,
+ "name": "ВыбратьКвартал3",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 131,
+ "name": "ВыбратьКвартал4",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 182,
+ "name": "НарастающимИтогом",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Нарастающим итогом"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 174,
+ "name": "ВыбратьДень",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 133,
+ "name": "ВыбратьПолугодие",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "полугодие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 137,
+ "name": "Выбрать9Месяцев",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 139,
+ "name": "ВыбратьГод",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 193,
+ "name": "ГруппаОчиститьПериод",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Очистить период"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 189,
+ "name": "ОчиститьПериод",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 195,
+ "name": "ПерейтиКСтандартномуВариантуПериода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 2,
+ "name": "НачалоПериода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "КонецПериода",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ДатаНачалаГода",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата начала года"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИмяТекущегоЭлемента",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 1,
+ "name": "ОграничениеСнизу",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ВыбранныйГодОграничен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "Период",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ИмяКоманды",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ "PLATFORM_APPLICATION"
+ ]
+ },
+ {
+ "uuid": "ff4d92a7-5fa3-4a46-a6f5-47c3952edb22",
+ "name": "ВыборФинансовогоПериодаДень",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ВыборФинансовогоПериодаДень",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ВыборФинансовогоПериодаДень"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выбор финансового периода день"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериодаДень/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ВыборФинансовогоПериодаДень/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбор дня"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ {
+ "type": "CalendarField",
+ "id": 1,
+ "name": "День",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "День",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "День",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "День"
+ ]
+ ]
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "bb350b39-1f4d-460a-98c9-8d2308cf22f0",
+ "name": "ГруппаВыбранныхПолей",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ГруппаВыбранныхПолей",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ГруппаВыбранныхПолей"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа выбранных полей"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ГруппаВыбранныхПолей/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ГруппаВыбранныхПолей/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "ЗаголовокГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЗаголовокГруппы",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 4,
+ "name": "Расположение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "РасположениеГруппы",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ЗаголовокГруппы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "РасположениеГруппы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Расположение"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "eaeb5aa8-8edf-4f74-8011-2d476f543bf6",
+ "name": "КонтекстнаяНастройкаОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.КонтекстнаяНастройкаОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.КонтекстнаяНастройкаОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Контекстная настройка отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/КонтекстнаяНастройкаОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/КонтекстнаяНастройкаОтчета/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 266,
+ "name": "Сортировка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сортировка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 1,
+ "name": "СортироватьПоВозрастанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 3,
+ "name": "СортироватьПоУбыванию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 16,
+ "name": "ФильтрПоЗначению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр по значению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 404,
+ "name": "ФильтрПоЗначениюСтраницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр по значению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 406,
+ "name": "ЗначенияФильтра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 18,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 34,
+ "name": "ЗначенияПометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения.Check",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 31,
+ "name": "ЗначенияЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Значения.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 435,
+ "name": "ОпцииЗаполненияФильтраПоЗначению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Опции заполнения фильтра по значению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 415,
+ "name": "СтатистикаФильтраПоЗначению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 437,
+ "name": "ВывестиВсеЗначенияРазделаОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вывести все"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 408,
+ "name": "Ожидание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 423,
+ "name": "СтатусыОжидания",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Статусы ожидания"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 421,
+ "name": "ОжиданиеЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ожидание заполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 410,
+ "name": "ИндикаторДлительнойОперации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Индикатор длительной операции"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 418,
+ "name": "ПредставлениеДлительнойОперации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выполняется чтение строк поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 425,
+ "name": "ОшибкаЗаполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ошибка заполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 430,
+ "name": "ИндикаторОшибки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Индикатор ошибки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 427,
+ "name": "ОписаниеОшибкиЗаполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 8,
+ "name": "ФильтрПоУсловию",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр по условию"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 376,
+ "name": "СвойстваФильтраПоУсловиюСлева",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства фильтра по условию слева"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CheckBoxField",
+ "id": 373,
+ "name": "Использование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Использование",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 378,
+ "name": "СвойстваФильтраПоУсловиюСправа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Свойства фильтра по условию справа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 10,
+ "name": "ВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВидСравнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "ПравоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПравоеЗначение",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 299,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 212,
+ "name": "ДополнительныеВозможности",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 294,
+ "name": "ДополнительныеВозможностиОтступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 292,
+ "name": "КомандыДополнительныхВозможностей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды дополнительных возможностей"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 440,
+ "name": "СгруппироватьПоВыбранномуПолю",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 442,
+ "name": "СгруппироватьГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 196,
+ "name": "Поле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поле"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 198,
+ "name": "Вставка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вставка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 156,
+ "name": "ВставитьПолеСлева",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 158,
+ "name": "ВставитьПолеСправа",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 160,
+ "name": "ВставитьГруппировкуВыше",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 162,
+ "name": "ВставитьГруппировкуНиже",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 356,
+ "name": "ВставкаГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 200,
+ "name": "Перемещение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перемещение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 186,
+ "name": "ПереместитьПолеВлево",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 188,
+ "name": "ПереместитьПолеВправо",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 190,
+ "name": "ПереместитьПолеВыше",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 192,
+ "name": "ПереместитьПолеНиже",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 359,
+ "name": "ПеремещениеГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 248,
+ "name": "СкрытиеПереименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Скрытие, переименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 164,
+ "name": "СкрытьПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 303,
+ "name": "Переименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Переименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 166,
+ "name": "ПереименоватьПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 305,
+ "name": "ПредставлениеПоля",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеПоля",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 393,
+ "name": "ПереименоватьПолеЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Label",
+ "id": 362,
+ "name": "СкрытиеПереименованиеГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 202,
+ "name": "Оформление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 204,
+ "name": "УстановкаЦвета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка цвета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 172,
+ "name": "ОформитьОтрицательные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 174,
+ "name": "ОформитьПоложительные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 365,
+ "name": "УстановкаЦветаГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 384,
+ "name": "ГруппаШиринаВысота",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ширина высота"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 206,
+ "name": "УстановкаШириныВысоты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка ширины, высоты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 308,
+ "name": "УстановкаВысотыСтроки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка высоты строки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 380,
+ "name": "УстановитьВысотуСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 310,
+ "name": "ВысотаСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВысотаСтроки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 389,
+ "name": "УстановитьВысотуСтрокиЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 313,
+ "name": "УстановкаШириныКолонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Установка ширины колонки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 382,
+ "name": "УстановитьШиринуКолонки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 315,
+ "name": "ШиринаКолонки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ШиринаКолонки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 391,
+ "name": "УстановитьШиринуКолонкиЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Label",
+ "id": 386,
+ "name": "Отступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Label",
+ "id": 368,
+ "name": "УстановкаШириныВысотыГраницаГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualButton",
+ "id": 182,
+ "name": "ОформитьЕще",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 301,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 318,
+ "name": "ФильтроватьИСформировать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 320,
+ "name": "Фильтровать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 284,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ВидСравнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид сравнения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПравоеЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "Значения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значения"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Использование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ПредставлениеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление поля"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВысотаСтроки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Высота строки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ШиринаКолонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Ширина колонки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 12,
+ "name": "СвойстваЗаголовка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 13,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ДоступныеЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "СнятьФильтрПоУсловию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 14,
+ "name": "ИндексыГруппИЭлементов",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "КоличествоСтрокВРазделеОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ВыведеныВсеЗначенияРазделаОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "КоличествоПервыхЧитаемыхСтрок",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "АдресДанныхРасшифровки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 19,
+ "name": "Документ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "343b979a-97e3-4eac-a314-3bd3eea9c15c",
+ "name": "ОписаниеНовойВозможностиПоВыводуОписаний",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ОписаниеНовойВозможностиПоВыводуОписаний",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ОписаниеНовойВозможностиПоВыводуОписаний"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Описание новой возможности по выводу описаний"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ОписаниеНовойВозможностиПоВыводуОписаний/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[8]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ОписаниеНовойВозможностиПоВыводуОписаний/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вывод описаний к отчетам"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "BeforeClose",
+ "name": "ПередЗакрытием"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 1,
+ "name": "Декорация1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Теперь к отчетам выводятся их подробные описания>.\n\nДля того чтобы включить или отключить эту возможность позже\nвыберите Настроить> - Показывать описания к отчетам>."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 8,
+ "name": "Декорация2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "ОтключитьОписания",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "b2f17ef1-3f6f-4029-b3e2-28d6b79c5b76",
+ "name": "ПанельДругихОтчетов",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ПанельДругихОтчетов",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ПанельДругихОтчетов"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Панель других отчетов"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ПанельДругихОтчетов/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[9]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ПанельДругихОтчетов/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Другие отчеты"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "СтраницаДругиеОтчеты",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница другие отчеты"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 3,
+ "name": "ГруппаДругиеВариантыОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 5,
+ "name": "ГруппаПодвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Подвал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 7,
+ "name": "ЗакрыватьПослеВыбора",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЗакрыватьПослеВыбора",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 10,
+ "name": "ГруппаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 12,
+ "name": "Закрыть",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 14,
+ "name": "ФормаСправка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ВариантСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПодсистемаСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ОтчетСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ГруппыПодсистем",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ЕстьДругиеОтчеты",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ВариантыПанели",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВариантыПанелиНомерЭлемента",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ВариантыПанелиКлючТекущегоВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ЗакрыватьПослеВыбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Закрывать это окно после перехода к отчету"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ОтчетНаименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "7adced5f-3a5f-419a-926c-0452aad86c86",
+ "name": "РасширеннаяНастройкаФильтраОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.РасширеннаяНастройкаФильтраОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.РасширеннаяНастройкаФильтраОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Расширенная настройка фильтра отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/РасширеннаяНастройкаФильтраОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[10]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/РасширеннаяНастройкаФильтраОтчета/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтровать по"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 1,
+ "name": "ЭлементОтбора1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Элемент отбора 1"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 44,
+ "name": "Использование1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Использование1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 58,
+ "name": "ГруппаЛевоеЗначение1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 1"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 24,
+ "name": "ЛевоеЗначение1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЛевоеЗначение1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 60,
+ "name": "ПредставлениеЛевогоЗначения1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеЛевогоЗначения1",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 5,
+ "name": "ВидСравнения1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВидСравнения1",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "ПравоеЗначение1",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПравоеЗначение1",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 30,
+ "name": "Дополнительно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 47,
+ "name": "ИспользованиеГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользованиеГруппы",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ТипГруппыЭлементовФильтра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Условие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ТипГруппыЭлементовФильтра",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 3,
+ "name": "ЭлементОтбора2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Элемент отбора 2"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 63,
+ "name": "ГруппаЛевоеЗначение2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 2"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 27,
+ "name": "ЛевоеЗначение2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ЛевоеЗначение2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 65,
+ "name": "ПредставлениеЛевогоЗначения2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПредставлениеЛевогоЗначения2",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 11,
+ "name": "ВидСравнения2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВидСравнения2",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 14,
+ "name": "ПравоеЗначение2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ПравоеЗначение2",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 68,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Hyperlink",
+ "id": 72,
+ "name": "ПерейтиКРасширеннымНастройкам",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 70,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 56,
+ "name": "ФильтроватьИСформировать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 54,
+ "name": "Фильтровать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 52,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ВидСравнения1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид сравнения 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПравоеЗначение1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВидСравнения2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вид сравнения 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПравоеЗначение2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ТипГруппыЭлементовФильтра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип группы элементов фильтра"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ЛевоеЗначение1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ЛевоеЗначение2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "Использование1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "Использование2",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "СвойстваЗаголовка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 12,
+ "name": "ПредставлениеЛевогоЗначения1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление левого значения 1"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ПредставлениеЛевогоЗначения2",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Представление левого значения 2"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ТипЗначенияФильтра",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "ДоступныеЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "КлючТекущегоВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ИспользованиеГруппы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование группы"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "364cbfe2-bc44-4387-aa7e-6b4aa086c9e9",
+ "name": "СохранениеВариантаОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.СохранениеВариантаОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.СохранениеВариантаОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сохранение варианта отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[11]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчета/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "FillCheckProcessingAtServer",
+ "name": "ОбработкаПроверкиЗаполненияНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Pages",
+ "id": 24,
+ "name": "Страницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страницы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 25,
+ "name": "Основное",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основное"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 52,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "RadioButtonField",
+ "id": 98,
+ "name": "Доступен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Доступен",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 206,
+ "name": "ПользователиВарианта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователи варианта"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользователиВарианта",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 236,
+ "name": "ПользователиВариантаПометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользователиВарианта.Check",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 219,
+ "name": "ПользователиВариантаЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользователиВарианта.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 247,
+ "name": "УведомитьПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "УведомитьПользователей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 250,
+ "name": "ГруппаОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Описание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Объект.Описание",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 190,
+ "name": "Страница1Подвал",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Страница 1 подвал"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Pages",
+ "id": 86,
+ "name": "ЧтоБудетДальше",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Что будет дальше"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 88,
+ "name": "Новый",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Новый"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 187,
+ "name": "ДекорацияЧтоБудетДальшеНовый",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Будет сохранен новый вариант отчета.\nНажмите \"Далее\" для размещения варианта отчета в разделах программы."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 87,
+ "name": "Перезапись",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перезапись"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 184,
+ "name": "ДекорацияЧтоБудетДальшеПерезапись",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Будет перезаписан существующий вариант отчета.\nНажмите \"Далее\" для размещения варианта отчета в разделах программы."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 201,
+ "name": "ПерезаписьНевозможна",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перезапись невозможна"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "Label",
+ "id": 203,
+ "name": "ДекорацияЧтоБудетДальшеПерезаписьНевозможна",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование занято другим вариантом отчета.\nВведите другое наименование или выберите вариант из списка."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 26,
+ "name": "Дополнительно",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительно"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 225,
+ "name": "СброситьНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "СброситьНастройки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 74,
+ "name": "ДеревоПодсистем",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево подсистем"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 77,
+ "name": "ГруппаКолонок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Колонок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 78,
+ "name": "ДеревоПодсистемИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.Использование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 80,
+ "name": "ДеревоПодсистемПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.Представление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 82,
+ "name": "ДеревоПодсистемВажность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 137,
+ "name": "ДеревоПодсистемПользователиПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ДеревоПодсистем.ПользователиПредставление",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 145,
+ "name": "ГруппаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBar",
+ "id": 147,
+ "name": "ГруппаКоманднаяПанельЛевая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель левая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 23,
+ "name": "Назад",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 149,
+ "name": "ГруппаКоманднаяПанельПравая",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель правая"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 15,
+ "name": "Далее",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 55,
+ "name": "Сохранить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 16,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 151,
+ "name": "ГруппаКоманднаяПанельСправка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ПрототипКлюч",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "ВариантыОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ВариантСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ВариантКлючВарианта",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ПрототипСсылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 16,
+ "name": "ИдентификаторТекущейСтроки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 15,
+ "name": "Доступен",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доступен"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ДеревоПодсистем",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Размещение в панелях отчетов"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 19,
+ "name": "Контекст",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 20,
+ "name": "СброситьНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сбросить настройки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 21,
+ "name": "ОписаниеМодифицировано",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 22,
+ "name": "НаименованиеМодифицировано",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 23,
+ "name": "ПрототипПредопределенный",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 24,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПользователиВарианта",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользователи варианта"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "ИспользоватьВнешнихПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ИспользоватьГруппыПользователей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ЭтоКонтекстныйВариантОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "ВариантыКонтекста",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 10,
+ "name": "УведомитьПользователей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уведомить в чате об этом варианте отчета"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "7433b2a9-f634-4af7-ac85-6aa1280ea239",
+ "name": "СохранениеВариантаОтчетаВФайл",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.СохранениеВариантаОтчетаВФайл",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.СохранениеВариантаОтчетаВФайл"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Сохранение варианта отчета в файл"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчетаВФайл/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[12]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/СохранениеВариантаОтчетаВФайл/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnOpen",
+ "name": "ПриОткрытии"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "Pages",
+ "id": 29,
+ "name": "ВариантыСохранения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты сохранения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 31,
+ "name": "ОдинВариантОтчета",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один вариант отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "ИмяФайла",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИмяФайла",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 4,
+ "name": "ПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пользовательские настройки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользовательскиеНастройки",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 20,
+ "name": "ПользовательскиеНастройкиПометка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Пометка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользовательскиеНастройки.Check",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 17,
+ "name": "ПользовательскиеНастройкиЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ПользовательскиеНастройки.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 33,
+ "name": "НесколькоВариантовОтчетов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Несколько вариантов отчетов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 35,
+ "name": "ИмяКаталога",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИмяКаталога",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 38,
+ "name": "ОписаниеВариантовОтчетов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание вариантов отчетов"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОписаниеВариантовОтчетов",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 51,
+ "name": "ОписаниеВариантовОтчетовСсылка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вариант отчета"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ОписаниеВариантовОтчетов.Ссылка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 72,
+ "name": "ОписаниеВариантовОтчетовИмяФайлаКраткое",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ОписаниеВариантовОтчетов.ИмяФайлаКраткое",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "ИмяФайла",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Имя файла"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПользовательскиеНастройки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Настройки"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ХранилищеПользовательскихНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 11,
+ "name": "ИмяКаталога",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Каталог"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ОписаниеВариантовОтчетов",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание вариантов отчетов"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9f32e85c-2ed6-41db-b0ec-6d8596940e80",
+ "name": "УсловияОтборовОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.УсловияОтборовОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.УсловияОтборовОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Условия отборов отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/УсловияОтборовОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[13]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/УсловияОтборовОтчета/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Условия фильтров отчета"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 28,
+ "name": "Отборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Отборы",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "ОтборыПредставлениеПользовательскойНастройки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Отборы.ПредставлениеПользовательскойНастройки",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 44,
+ "name": "ОтборыВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Отборы.ВидСравнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 47,
+ "name": "ГруппаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 26,
+ "name": "ФормаВыбрать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 49,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 51,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ИмяТаблицы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "Картинки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 7,
+ "name": "Режим",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "Отборы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "f259b6b4-d582-429f-a16f-027a6bcb7438",
+ "name": "ЭлементУсловногоОформленияОтчета",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "SettingsStorage.ХранилищеВариантовОтчетов.Form.ЭлементУсловногоОформленияОтчета",
+ "mdoRefRu": "ХранилищеНастроек.ХранилищеВариантовОтчетов.Форма.ЭлементУсловногоОформленияОтчета"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Элемент условного оформления отчета"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ЭлементУсловногоОформленияОтчета/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm[14]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/Forms/ЭлементУсловногоОформленияОтчета/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 337,
+ "name": "ГруппаОформляемыеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемые поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 354,
+ "name": "ГруппаОформляемыеПоляВариантыВыбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты выбора"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 356,
+ "name": "ВариантВыбораОформляемыхПолей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ВариантВыбораОформляемыхПолей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Pages",
+ "id": 362,
+ "name": "ОформляемыеПоляСтраницы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемые поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Page",
+ "id": 364,
+ "name": "СтраницаОформляемоеПоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемое поле"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 359,
+ "name": "ОформляемоеПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ОформляемоеПоле",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "Page",
+ "id": 366,
+ "name": "СтраницаКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBar",
+ "id": 368,
+ "name": "ОформляемыеПоляКомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 265,
+ "name": "ОформляемыеПоляДобавить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 257,
+ "name": "ОформляемыеПоляГруппаИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 259,
+ "name": "ОформляемыеПоляУстановитьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 261,
+ "name": "ОформляемыеПоляСнятьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 275,
+ "name": "ОформляемыеПоляГруппаПереместить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Переместить"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 277,
+ "name": "ОформляемыеПоляПереместитьВверх",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 279,
+ "name": "ОформляемыеПоляПереместитьВниз",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 30,
+ "name": "ОформляемыеПоля",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемые поля"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 206,
+ "name": "ОформляемыеПоляГруппаКолонокПоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поле"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 203,
+ "name": "ОформляемыеПоляИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Use",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 211,
+ "name": "ОформляемыеПоляПоле",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Fields.Field",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 333,
+ "name": "ГруппаОформление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 72,
+ "name": "Оформление",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформление"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 201,
+ "name": "ОформлениеГруппаИспользованиеПараметра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Использование параметра"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 96,
+ "name": "ОформлениеИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Use",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 105,
+ "name": "ОформлениеПараметр",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Parameter",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 108,
+ "name": "ОформлениеГруппаКолонокЗначениеПараметра",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 110,
+ "name": "ОформлениеКартинкаЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.ValuePicture",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 113,
+ "name": "ОформлениеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Appearance.Value",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 335,
+ "name": "ГруппаОтбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 345,
+ "name": "ОтборКоманднаяПанель1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 347,
+ "name": "ОтборЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Условие:"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 350,
+ "name": "ОтборКомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 293,
+ "name": "ОтборДобавитьЭлементОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Добавить"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 285,
+ "name": "ОтборГруппаИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 295,
+ "name": "ОтборУстановитьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 297,
+ "name": "ОтборСнятьФлажки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 291,
+ "name": "ОтборГруппаПереместить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Переместить"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 299,
+ "name": "ОтборПереместитьВверх",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 301,
+ "name": "ОтборПереместитьВниз",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 51,
+ "name": "Отбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтры"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 214,
+ "name": "ОтборИспользование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Use",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 217,
+ "name": "ОтборГруппаКолонокОтбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 224,
+ "name": "ОтборГруппаКолонокОсновныеЭлементыОтбора",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основные элементы фильтра"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 229,
+ "name": "ОтборГруппаКолонокЛевоеЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левое значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 231,
+ "name": "ОтборКартинкаЛевогоЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValuePicture",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 234,
+ "name": "ОтборЛевоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.LeftValue",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 237,
+ "name": "ОтборВидСравнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ComparisonType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 240,
+ "name": "ОтборГруппаКолонокПравоеЗначение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правое значение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 242,
+ "name": "ОтборКартинкаПравогоЗначения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValuePicture",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 245,
+ "name": "ОтборПравоеЗначение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.RightValue",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 248,
+ "name": "ОтборДата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 226,
+ "name": "ОтборТипГруппы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.GroupType",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 329,
+ "name": "ОтборГруппа6",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Фильтр группа 6"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 219,
+ "name": "ОтборГруппаКолонокПрименение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Применение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 251,
+ "name": "ОтборПрименение",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Application",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 254,
+ "name": "ОтборРежимОтображения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.ViewMode",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 221,
+ "name": "ОтборПредставление",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "КомпоновщикНастроек.Settings.ConditionalAppearance[0].Filter.Presentation",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 93,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "Наименование",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 339,
+ "name": "КоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 341,
+ "name": "ВариантыИспользования",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Еще"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 156,
+ "name": "ВариантыИспользованияКоманды",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты использования (команды)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 153,
+ "name": "ДекорацияПоказывать",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать: "
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 199,
+ "name": "КомандыИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 343,
+ "name": "ГруппаИзменитьФлажки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Изменить флажки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 190,
+ "name": "Показывать_УстановитьПометки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 188,
+ "name": "Показывать_СнятьПометки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 160,
+ "name": "ВариантыИспользованияПометки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Варианты использования (пометки)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 185,
+ "name": "ИспользоватьВГруппировке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВГруппировке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 176,
+ "name": "ИспользоватьВИерархическойГруппировке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВИерархическойГруппировке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 173,
+ "name": "ИспользоватьВОбщемИтоге",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВОбщемИтоге",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 179,
+ "name": "ИспользоватьВЗаголовкеПолей",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВЗаголовкеПолей",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 182,
+ "name": "ИспользоватьВЗаголовке",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВЗаголовке",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 167,
+ "name": "ИспользоватьВПараметрах",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВПараметрах",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 170,
+ "name": "ИспользоватьВОтборе",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "segments": "ИспользоватьВОтборе",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBar",
+ "id": 323,
+ "name": "КомандыОсновные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Команды основные"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 26,
+ "name": "ФормаВыбрать",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 325,
+ "name": "Отмена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 327,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "КомпоновщикНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 3,
+ "name": "НастройкиОтчета",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИдентификаторЭлементаСтруктурыНастроек",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ИдентификаторКД",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 6,
+ "name": "НаименованиеПоУмолчанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 8,
+ "name": "Наименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 9,
+ "name": "ИспользоватьВГруппировке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В группировке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 10,
+ "name": "ИспользоватьВПараметрах",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В параметрах"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ИспользоватьВОтборе",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В фильтрах"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 12,
+ "name": "ИспользоватьВОбщемИтоге",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В общем итоге"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 13,
+ "name": "ИспользоватьВИерархическойГруппировке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В иерархической группировке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 14,
+ "name": "ИспользоватьВЗаголовкеПолей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В заголовке полей"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 15,
+ "name": "ИспользоватьВЗаголовке",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "В заголовке"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 16,
+ "name": "ФлажкиОбластиОтображения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 17,
+ "name": "ТребуетсяОбновлениеНаименованияПоУмолчанию",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 18,
+ "name": "ЭтоНовый",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ВариантВыбораОформляемыхПолей",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Вариант выбора оформляемых полей"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 7,
+ "name": "ОформляемоеПоле",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Оформляемое поле"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/SettingsStorages/ХранилищеВариантовОтчетов/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.SettingsStorage/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ХранилищеВариантовОтчетов",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Хранилище вариантов отчетов"
+ ]
+ ]
+ },
+ "templates": [],
+ "uuid": "14512818-58b0-44cc-b00d-d37913c57aad"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/StyleItems.\320\222\320\260\320\266\320\275\320\260\321\217\320\235\320\260\320\264\320\277\320\270\321\201\321\214\320\250\321\200\320\270\321\204\321\202.json" "b/src/test/resources/fixtures/ssl_3_1/StyleItems.\320\222\320\260\320\266\320\275\320\260\321\217\320\235\320\260\320\264\320\277\320\270\321\201\321\214\320\250\321\200\320\270\321\204\321\202.json"
new file mode 100644
index 000000000..df1d95ccc
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/StyleItems.\320\222\320\260\320\266\320\275\320\260\321\217\320\235\320\260\320\264\320\277\320\270\321\201\321\214\320\250\321\200\320\270\321\204\321\202.json"
@@ -0,0 +1,20 @@
+{"com.github._1c_syntax.bsl.mdo.StyleItem": {
+ "comment": "",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ВажнаяНадписьШрифт",
+ "mdoRefRu": "ЭлементСтиля.ВажнаяНадписьШрифт"
+ },
+ "name": "ВажнаяНадписьШрифт",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важная надпись шрифт"
+ ]
+ ]
+ },
+ "uuid": "fa2a9ef2-00a1-44f4-a82c-6c7288dd62dc"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/StyleItems.\320\222\320\270\320\264\320\224\320\275\321\217\320\237\321\200\320\276\320\270\320\267\320\262\320\276\320\264\321\201\321\202\320\262\320\265\320\275\320\275\320\276\320\263\320\276\320\232\320\260\320\273\320\265\320\275\320\264\320\260\321\200\321\217\320\222\320\276\321\201\320\272\321\200\320\265\321\201\320\265\320\275\321\214\320\265\320\246\320\262\320\265\321\202.json" "b/src/test/resources/fixtures/ssl_3_1/StyleItems.\320\222\320\270\320\264\320\224\320\275\321\217\320\237\321\200\320\276\320\270\320\267\320\262\320\276\320\264\321\201\321\202\320\262\320\265\320\275\320\275\320\276\320\263\320\276\320\232\320\260\320\273\320\265\320\275\320\264\320\260\321\200\321\217\320\222\320\276\321\201\320\272\321\200\320\265\321\201\320\265\320\275\321\214\320\265\320\246\320\262\320\265\321\202.json"
new file mode 100644
index 000000000..2f3546903
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/StyleItems.\320\222\320\270\320\264\320\224\320\275\321\217\320\237\321\200\320\276\320\270\320\267\320\262\320\276\320\264\321\201\321\202\320\262\320\265\320\275\320\275\320\276\320\263\320\276\320\232\320\260\320\273\320\265\320\275\320\264\320\260\321\200\321\217\320\222\320\276\321\201\320\272\321\200\320\265\321\201\320\265\320\275\321\214\320\265\320\246\320\262\320\265\321\202.json"
@@ -0,0 +1,20 @@
+{"com.github._1c_syntax.bsl.mdo.StyleItem": {
+ "comment": "",
+ "mdoReference": {
+ "type": "STYLE_ITEM",
+ "mdoRef": "StyleItem.ВидДняПроизводственногоКалендаряВоскресеньеЦвет",
+ "mdoRefRu": "ЭлементСтиля.ВидДняПроизводственногоКалендаряВоскресеньеЦвет"
+ },
+ "name": "ВидДняПроизводственногоКалендаряВоскресеньеЦвет",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Вид дня производственного календаря «Воскресенье»"
+ ]
+ ]
+ },
+ "uuid": "b7e435a9-6107-4d02-a949-cff793462e31"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Subsystems.\320\220\320\264\320\274\320\270\320\275\320\270\321\201\321\202\321\200\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265.json" "b/src/test/resources/fixtures/ssl_3_1/Subsystems.\320\220\320\264\320\274\320\270\320\275\320\270\321\201\321\202\321\200\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265.json"
new file mode 100644
index 000000000..56929a86f
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Subsystems.\320\220\320\264\320\274\320\270\320\275\320\270\321\201\321\202\321\200\320\270\321\200\320\276\320\262\320\260\320\275\320\270\320\265.json"
@@ -0,0 +1,514 @@
+{"com.github._1c_syntax.bsl.mdo.Subsystem": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 0
+ }
+ ],
+ "comment": "",
+ "content": [
+ [
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.НастройкаСистемнойУчетнойЗаписиЭлектроннойПочты",
+ "mdoRefRu": "ОбщаяКоманда.НастройкаСистемнойУчетнойЗаписиЭлектроннойПочты"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.АктивныеПользователи",
+ "mdoRefRu": "Обработка.АктивныеПользователи"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.БлокировкаРаботыПользователей",
+ "mdoRefRu": "Обработка.БлокировкаРаботыПользователей"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ЖурналРегистрации",
+ "mdoRefRu": "Обработка.ЖурналРегистрации"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.РегламентныеИФоновыеЗадания",
+ "mdoRefRu": "Обработка.РегламентныеИФоновыеЗадания"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.УдалениеПомеченныхОбъектов",
+ "mdoRefRu": "Обработка.УдалениеПомеченныхОбъектов"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.НастройкиПользователей",
+ "mdoRefRu": "Обработка.НастройкиПользователей"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Пользователи",
+ "mdoRefRu": "Справочник.Пользователи"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыДоступа",
+ "mdoRefRu": "Справочник.ГруппыДоступа"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыПользователей",
+ "mdoRefRu": "Справочник.ГруппыПользователей"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВнешниеПользователи",
+ "mdoRefRu": "Справочник.ВнешниеПользователи"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ГруппыВнешнихПользователей",
+ "mdoRefRu": "Справочник.ГруппыВнешнихПользователей"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ТомаХраненияФайлов",
+ "mdoRefRu": "Справочник.ТомаХраненияФайлов"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВидыКонтактнойИнформации",
+ "mdoRefRu": "Справочник.ВидыКонтактнойИнформации"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.НаборыДополнительныхРеквизитовИСведений",
+ "mdoRefRu": "Справочник.НаборыДополнительныхРеквизитовИСведений"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПользовательскиеМакетыПечати",
+ "mdoRefRu": "РегистрСведений.ПользовательскиеМакетыПечати"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.УчетныеЗаписиЭлектроннойПочты",
+ "mdoRefRu": "Справочник.УчетныеЗаписиЭлектроннойПочты"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрофилиГруппДоступа",
+ "mdoRefRu": "Справочник.ПрофилиГруппДоступа"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ДополнительныеОтчетыИОбработки",
+ "mdoRefRu": "Справочник.ДополнительныеОтчетыИОбработки"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.ОписаниеИзмененийПрограммы",
+ "mdoRefRu": "ОбщаяФорма.ОписаниеИзмененийПрограммы"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ИсполнителиЗадач",
+ "mdoRefRu": "РегистрСведений.ИсполнителиЗадач"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.УстановкаОбновлений",
+ "mdoRefRu": "Обработка.УстановкаОбновлений"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.АвтоматическоеИзвлечениеТекстов",
+ "mdoRefRu": "Обработка.АвтоматическоеИзвлечениеТекстов"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.УправлениеИтогамиИАгрегатами",
+ "mdoRefRu": "Обработка.УправлениеИтогамиИАгрегатами"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.НастройкиСинхронизацииДанных",
+ "mdoRefRu": "ОбщаяКоманда.НастройкиСинхронизацииДанных"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СценарииОбменовДанными",
+ "mdoRefRu": "Справочник.СценарииОбменовДанными"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВариантыОтчетов",
+ "mdoRefRu": "Справочник.ВариантыОтчетов"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ДатыЗапретаИзменения",
+ "mdoRefRu": "РегистрСведений.ДатыЗапретаИзменения"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.РезервноеКопированиеИБ",
+ "mdoRefRu": "Обработка.РезервноеКопированиеИБ"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.НастройкаРезервногоКопированияИБ",
+ "mdoRefRu": "Обработка.НастройкаРезервногоКопированияИБ"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ЗащитаПерсональныхДанных",
+ "mdoRefRu": "Обработка.ЗащитаПерсональныхДанных"
+ },
+ {
+ "type": "COMMON_PICTURE",
+ "mdoRef": "CommonPicture.РазделАдминистрирование48",
+ "mdoRefRu": "ОбщаяКартинка.РазделАдминистрирование48"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.РассылкиОтчетов",
+ "mdoRefRu": "Справочник.РассылкиОтчетов"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.АнализЖурналаРегистрации",
+ "mdoRefRu": "Отчет.АнализЖурналаРегистрации"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.АвтономнаяРаботаВМоделиСервиса",
+ "mdoRefRu": "ОбщаяКоманда.АвтономнаяРаботаВМоделиСервиса"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.АвтономнаяРабота",
+ "mdoRefRu": "ОбщаяКоманда.АвтономнаяРабота"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ИнформацияПриЗапуске",
+ "mdoRefRu": "Обработка.ИнформацияПриЗапуске"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.НастройкиСинхронизацииДанныхВМоделиСервиса",
+ "mdoRefRu": "ОбщаяКоманда.НастройкиСинхронизацииДанныхВМоделиСервиса"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ПанельАдминистрированияБСП",
+ "mdoRefRu": "Обработка.ПанельАдминистрированияБСП"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.ПараметрыПроксиСервера",
+ "mdoRefRu": "ОбщаяФорма.ПараметрыПроксиСервера"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НомераОтсканированныхФайлов",
+ "mdoRefRu": "РегистрСведений.НомераОтсканированныхФайлов"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.Валюты",
+ "mdoRefRu": "Справочник.Валюты"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ОценкаПроизводительности",
+ "mdoRefRu": "Обработка.ОценкаПроизводительности"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкаОтправкиSMS",
+ "mdoRefRu": "ОбщаяФорма.НастройкаОтправкиSMS"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкиРегистрацииСобытийДоступаКПерсональнымДанным",
+ "mdoRefRu": "ОбщаяФорма.НастройкиРегистрацииСобытийДоступаКПерсональнымДанным"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ЗагрузкаКурсовВалют",
+ "mdoRefRu": "Обработка.ЗагрузкаКурсовВалют"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлассификаторБанков",
+ "mdoRefRu": "Справочник.КлассификаторБанков"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ДобавитьПользователейСервиса",
+ "mdoRefRu": "ОбщаяКоманда.ДобавитьПользователейСервиса"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ВерсииПодсистемОбластейДанных",
+ "mdoRefRu": "РегистрСведений.ВерсииПодсистемОбластейДанных"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.ДатыЗапретаЗагрузки",
+ "mdoRefRu": "Отчет.ДатыЗапретаЗагрузки"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.ДатыЗапретаИзменения",
+ "mdoRefRu": "Отчет.ДатыЗапретаИзменения"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ГрупповоеИзменениеРеквизитов",
+ "mdoRefRu": "Обработка.ГрупповоеИзменениеРеквизитов"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.РезультатыОбновленияПрограммы",
+ "mdoRefRu": "Обработка.РезультатыОбновленияПрограммы"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.КлючевыеОперации",
+ "mdoRefRu": "Справочник.КлючевыеОперации"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.УниверсальныйОбменДаннымиXML",
+ "mdoRefRu": "Обработка.УниверсальныйОбменДаннымиXML"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.СведенияОПользователях",
+ "mdoRefRu": "Отчет.СведенияОПользователях"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ПанельОтчетовАдминистрирование",
+ "mdoRefRu": "ОбщаяКоманда.ПанельОтчетовАдминистрирование"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ЗагрузкаДанныхИзФайла",
+ "mdoRefRu": "Обработка.ЗагрузкаДанныхИзФайла"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ДополнительныеОбработкиАдминистрирование",
+ "mdoRefRu": "ОбщаяКоманда.ДополнительныеОбработкиАдминистрирование"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ДополнительныеОтчетыАдминистрирование",
+ "mdoRefRu": "ОбщаяКоманда.ДополнительныеОтчетыАдминистрирование"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиВерсионированияОбъектов",
+ "mdoRefRu": "РегистрСведений.НастройкиВерсионированияОбъектов"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.СдвигГраницыИтогов",
+ "mdoRefRu": "Обработка.СдвигГраницыИтогов"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ПереносФайлов",
+ "mdoRefRu": "Обработка.ПереносФайлов"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.ОбъемНенужныхФайлов",
+ "mdoRefRu": "Отчет.ОбъемНенужныхФайлов"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ПоискИУдалениеДублей",
+ "mdoRefRu": "Обработка.ПоискИУдалениеДублей"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.ПравилаДляОбменаДанными",
+ "mdoRefRu": "РегистрСведений.ПравилаДляОбменаДанными"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.ПрогрессОтложенногоОбновления",
+ "mdoRefRu": "Отчет.ПрогрессОтложенногоОбновления"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкиЭлектроннойПодписиИШифрования",
+ "mdoRefRu": "ОбщаяФорма.НастройкиЭлектроннойПодписиИШифрования"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.УниверсальныйОтчет",
+ "mdoRefRu": "Отчет.УниверсальныйОтчет"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкаДоступаКСервисуMorpher",
+ "mdoRefRu": "ОбщаяФорма.НастройкаДоступаКСервисуMorpher"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкаОнлайнПоддержки",
+ "mdoRefRu": "ОбщаяФорма.НастройкаОнлайнПоддержки"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкаКомандПечати",
+ "mdoRefRu": "ОбщаяФорма.НастройкаКомандПечати"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ПредупрежденияПриСинхронизацииДанных",
+ "mdoRefRu": "ОбщаяКоманда.ПредупрежденияПриСинхронизацииДанных"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.Расширения",
+ "mdoRefRu": "ОбщаяФорма.Расширения"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.НастройкиОчисткиФайлов",
+ "mdoRefRu": "РегистрСведений.НастройкиОчисткиФайлов"
+ },
+ {
+ "type": "COMMON_COMMAND",
+ "mdoRef": "CommonCommand.ВремяТекущегоСеанса",
+ "mdoRefRu": "ОбщаяКоманда.ВремяТекущегоСеанса"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.НастройкиВходаПользователей",
+ "mdoRefRu": "ОбщаяФорма.НастройкиВходаПользователей"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ВыгрузкаЗагрузкаEnterpriseData",
+ "mdoRefRu": "Обработка.ВыгрузкаЗагрузкаEnterpriseData"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПрофилиКлючевыхОпераций",
+ "mdoRefRu": "Справочник.ПрофилиКлючевыхОпераций"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.ОценкаПроизводительности",
+ "mdoRefRu": "Отчет.ОценкаПроизводительности"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.ПодключениеОбсуждений",
+ "mdoRefRu": "Обработка.ПодключениеОбсуждений"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.НастройкиЦентраМониторинга",
+ "mdoRefRu": "Обработка.НастройкиЦентраМониторинга"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ПравилаПроверкиУчета",
+ "mdoRefRu": "Справочник.ПравилаПроверкиУчета"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.ИспользуемыеВнешниеРесурсы",
+ "mdoRefRu": "Отчет.ИспользуемыеВнешниеРесурсы"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.РезультатыПроверкиУчета",
+ "mdoRefRu": "Отчет.РезультатыПроверкиУчета"
+ },
+ {
+ "type": "INFORMATION_REGISTER",
+ "mdoRef": "InformationRegister.АдресныеОбъекты",
+ "mdoRefRu": "РегистрСведений.АдресныеОбъекты"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.УстановленныеИсправления",
+ "mdoRefRu": "ОбщаяФорма.УстановленныеИсправления"
+ },
+ {
+ "type": "DATA_PROCESSOR",
+ "mdoRef": "DataProcessor.НастройкаСтандартногоИнтерфейсаOData",
+ "mdoRefRu": "Обработка.НастройкаСтандартногоИнтерфейсаOData"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ВнешниеКомпоненты",
+ "mdoRefRu": "Справочник.ВнешниеКомпоненты"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.ШаблоныСообщений",
+ "mdoRefRu": "Справочник.ШаблоныСообщений"
+ },
+ {
+ "type": "REPORT",
+ "mdoRef": "Report.АнализПравДоступа",
+ "mdoRefRu": "Отчет.АнализПравДоступа"
+ },
+ {
+ "type": "CATALOG",
+ "mdoRef": "Catalog.СостоянияОригиналовПервичныхДокументов",
+ "mdoRefRu": "Справочник.СостоянияОригиналовПервичныхДокументов"
+ },
+ {
+ "type": "COMMON_FORM",
+ "mdoRef": "CommonForm.ВосстановлениеПаролей",
+ "mdoRefRu": "ОбщаяФорма.ВосстановлениеПаролей"
+ }
+ ],
+ []
+ ],
+ "explanation": {
+ "content": [
+ [
+ "ru",
+ "Администрирование, настройка, сервисные функции"
+ ]
+ ]
+ },
+ "includeHelpInContents": true,
+ "includeInCommandInterface": true,
+ "mdoReference": {
+ "type": "SUBSYSTEM",
+ "mdoRef": "Subsystem.Администрирование",
+ "mdoRefRu": "Подсистема.Администрирование"
+ },
+ "name": "Администрирование",
+ "objectBelonging": "OWN",
+ "parentSubsystem": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ },
+ "subsystems": [],
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Администрирование"
+ ]
+ ]
+ },
+ "uuid": "9233322b-dfdb-4c66-91fe-1299292d40a5"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json" "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json"
new file mode 100644
index 000000000..f7d1c5df2
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217.json"
@@ -0,0 +1,5745 @@
+{"com.github._1c_syntax.bsl.mdo.Task": {
+ "addressingAttributes": [
+ [
+ {
+ "uuid": "0408002c-9255-43a2-8022-82f02ee0e8f4",
+ "name": "ДополнительныйОбъектАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.ДополнительныйОбъектАдресации",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.ДополнительныйОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "TASK",
+ "mdoRef": "Task.ЗадачаИсполнителя",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации, если задача адресована роли исполнителя"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ }
+ },
+ {
+ "uuid": "88f44c9b-216d-4d7e-bc88-1e6b253ed01e",
+ "name": "Исполнитель",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.Исполнитель",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.Исполнитель"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Пользователь, которому поручено выполнение задачи"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/choiceForm"
+ }
+ },
+ {
+ "uuid": "1851afd4-5324-45c1-b754-54e65943f945",
+ "name": "ОсновнойОбъектАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.ОсновнойОбъектАдресации",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.ОсновнойОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации, если задача адресована роли исполнителя"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/choiceForm"
+ }
+ },
+ {
+ "uuid": "bc5eca9b-32d8-44e0-a127-8ad1f47d7957",
+ "name": "РольИсполнителя",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.РольИсполнителя",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.РольИсполнителя"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Роль исполнителя"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Роль исполнителя, которой адресована задача"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/choiceForm"
+ }
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "uuid": "fd96c8ab-602a-4735-b168-52b501e80351",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Автор",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Автор бизнес-процесса, который сформировал задачу",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "b1dc619d-8d91-4f7a-aa50-1d07ff9aebdc",
+ "name": "Важность",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Важность",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Важность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Для упорядочивания исполнителем своих задач по приоритету",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "370f0c75-d2c5-4be5-a633-4bcc77998ece",
+ "name": "ГруппаИсполнителейЗадач",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ГруппаИсполнителейЗадач",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ГруппаИсполнителейЗадач"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа исполнителей задач"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f80b505f-b4ff-45fb-bd88-74b274ae9d2b",
+ "name": "ДатаИсполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ДатаИсполнения",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ДатаИсполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Дата и время фактического выполнения задачи",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнена"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2139532c-f6cb-4393-936e-cc912e5adca9",
+ "name": "ДатаНачала",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ДатаНачала",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ДатаНачала"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Для упорядочивания исполнителем своих задач",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата начала"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "755c3eca-4956-4a44-9b38-c11dae00b87f",
+ "name": "ДатаПринятияКИсполнению",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ДатаПринятияКИсполнению",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ДатаПринятияКИсполнению"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата принятия к исполнению"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f57c558c-2c94-4b9d-8697-448d0548ab1a",
+ "name": "Описание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Описание",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Описание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Описание постановки задачи для исполнителя",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "a310c09f-4d3a-4d3a-9ad5-7a5735a33a1d",
+ "name": "Предмет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Предмет",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Предмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Предмет задачи",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c32db021-eca1-4b67-aa85-3d6e28c51b53",
+ "name": "ПредметСтрокой",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ПредметСтрокой",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ПредметСтрокой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Строковое представление предмета",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "e9ed0ee4-3fbe-4093-9078-cb265ed6842c",
+ "name": "ПринятаКИсполнению",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ПринятаКИсполнению",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ПринятаКИсполнению"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Принята к исполнению"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "02466dcf-02a1-4853-814f-a913a9baba45",
+ "name": "РезультатВыполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.РезультатВыполнения",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.РезультатВыполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Описание результата выполнения",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c4a40dc9-b619-4219-9d9a-e11f49a14fb1",
+ "name": "СостояниеБизнесПроцесса",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.СостояниеБизнесПроцесса",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.СостояниеБизнесПроцесса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Состояние бизнес процесса"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "62b75eb2-42e1-4484-a77f-b676dd36f3d4",
+ "name": "СрокИсполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.СрокИсполнения",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.СрокИсполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Плановый срок исполнения задачи",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5e28e22a-dd6e-4703-92bd-13f5cb0dc023",
+ "name": "АвторСтрокой",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.АвторСтрокой",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.АвторСтрокой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор строкой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "children": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[8]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[9]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[10]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[11]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[12]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[13]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]"
+ },
+ {
+ "uuid": "6e5307ea-8fbf-4177-bcc8-f163a6ce1b40",
+ "name": "ВсеЗадачи",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.ВсеЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.ВсеЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Все задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Commands/ВсеЗадачи/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "0fa77ef7-a836-4459-9bca-6010d0bdfc7f",
+ "name": "Выполнено",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.Выполнено",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.Выполнено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Commands/Выполнено/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "c322dc4a-30f3-4d23-9824-4a01c496408d",
+ "name": "МоиЗадачи",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.МоиЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.МоиЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Commands/МоиЗадачи/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "dcff004c-1b61-4a19-b977-ea21bf688614",
+ "name": "Перенаправить",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.Перенаправить",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.Перенаправить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перенаправить..."
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Commands/Перенаправить/Ext/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "856510ee-74f5-44e9-a3c0-1c60cfb7a787",
+ "name": "Дополнительно",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.Дополнительно",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.Дополнительно"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительно"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/Дополнительно/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/Дополнительно/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительно"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 99,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 63,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения задачи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 64,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Executed",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "ДатаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 51,
+ "name": "ГруппаБизнесПроцесс",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Бизнес-процесс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 52,
+ "name": "БизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.BusinessProcess",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 54,
+ "name": "ТочкаМаршрута",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.RoutePoint",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 69,
+ "name": "ГруппаАдресация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача адресована"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 27,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 29,
+ "name": "РольИсполнителя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РольИсполнителя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 92,
+ "name": "ГруппаУточнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уточнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 96,
+ "name": "Отступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаОбъектыАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объекты адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 31,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 33,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 56,
+ "name": "ГруппаВходящие",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Входящие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 57,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 71,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 45,
+ "name": "ГруппаСправа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Справа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 43,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "28b761c6-c286-4125-a4ed-da602e49950f",
+ "name": "ЗадачиПоБизнесПроцессу",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ЗадачиПоБизнесПроцессу",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ЗадачиПоБизнесПроцессу"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоБизнесПроцессу/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоБизнесПроцессу/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задачи бизнес-процесса"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 85,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 52,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 23,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Предмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 82,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 25,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 40,
+ "name": "ДеревоЗадачВажность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 49,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Выполнена",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 42,
+ "name": "ДеревоЗадачОстановлен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Остановлен",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 46,
+ "name": "ТипИНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип и наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 44,
+ "name": "ДеревоЗадачТип",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Тип",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 30,
+ "name": "ДеревоЗадачНаименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Наименование",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "ДеревоЗадачИсполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 47,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 21,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьВыполненные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать выполненные"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "4ac66a22-c736-4e06-a8aa-ef4a71788c65",
+ "name": "ЗадачиПоПредмету",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ЗадачиПоПредмету",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ЗадачиПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задачи по предмету"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоПредмету/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоПредмету/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задачи по предмету"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 130,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 50,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "ButtonGroup",
+ "id": 120,
+ "name": "ГруппаПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Принять к исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 122,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "К исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 124,
+ "name": "ОтменитьПринятиеКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 126,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 128,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 99,
+ "name": "ГруппаВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 52,
+ "name": "ВажностьКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 56,
+ "name": "Остановлена",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Остановлена"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Остановлена",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 103,
+ "name": "ГруппаОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 101,
+ "name": "ГруппаНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "Наименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 107,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 105,
+ "name": "ГруппаАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 110,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 113,
+ "name": "ГруппаИсполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 64,
+ "name": "ГруппаИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 58,
+ "name": "РольИсполнителя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.РольИсполнителя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 60,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 62,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 115,
+ "name": "ГруппаСрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 23,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 54,
+ "name": "ЗадачаВыполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Executed",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 117,
+ "name": "ДатаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 96,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 21,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьВыполненные",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "Table",
+ "id": 25,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 28,
+ "name": "ДеревоЗадачВажность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 30,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Выполнена",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 32,
+ "name": "ДеревоЗадачОстановлен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Остановлен",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 34,
+ "name": "ТипИНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип и наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 35,
+ "name": "ДеревоЗадачТип",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Тип",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 37,
+ "name": "ДеревоЗадачНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Наименование",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 39,
+ "name": "ДеревоЗадачИсполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "СрокИсполнения1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать выполненные задачи"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9cfe9281-8840-4077-824d-a2c9cbb0b730",
+ "name": "МоиЗадачи",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.МоиЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.МоиЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачи/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачи/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 126,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 1,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Popup",
+ "id": 51,
+ "name": "СгруппироватьПо",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сгруппировать по"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 132,
+ "name": "СписокСгруппироватьПоСроку",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 52,
+ "name": "СписокСгруппироватьПоВажности",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 53,
+ "name": "СписокСгруппироватьПоТочкеМаршрута",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 61,
+ "name": "СписокСгруппироватьПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 62,
+ "name": "СписокСгруппироватьПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 54,
+ "name": "СписокСгруппироватьСгруппироватьПоБезГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 140,
+ "name": "ГруппаОткрыть",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Открыть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 138,
+ "name": "ФормаИзменить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Открыть задачу"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 134,
+ "name": "ОткрытьПредметЗадачи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 136,
+ "name": "ОткрытьБизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 48,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 128,
+ "name": "ФормаНайти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 130,
+ "name": "ФормаОтменитьПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 80,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "К исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 82,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 83,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 81,
+ "name": "ОтменитьПринятиеКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 8,
+ "name": "КоманднаяПанельФормы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель формы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 65,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 9,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 24,
+ "name": "Важность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 46,
+ "name": "ДатаНачала",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата начала"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 36,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 40,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 63,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 66,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 123,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 38,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьВыполненные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать выполненные"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "РежимГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПараметрыОтбораФормы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "76389fa9-b9e0-492e-9c93-24b5f3bf094c",
+ "name": "МоиЗадачиДляРабочегоСтола",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.МоиЗадачиДляРабочегоСтола",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.МоиЗадачиДляРабочегоСтола"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачиДляРабочегоСтола/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачиДляРабочегоСтола/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 140,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 163,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 165,
+ "name": "Изменить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Открыть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 167,
+ "name": "ОбновитьСписокЗадач",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 169,
+ "name": "СгруппироватьПо",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сгруппировать по"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 171,
+ "name": "СписокСгруппироватьПоСроку",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 173,
+ "name": "СписокСгруппироватьПоВажности",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 175,
+ "name": "СписокСгруппироватьПоТочкеМаршрута",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 177,
+ "name": "СписокСгруппироватьПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 179,
+ "name": "СписокСгруппироватьПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 181,
+ "name": "СгруппироватьПодгруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сгруппировать подгруппа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "CommandBarButton",
+ "id": 183,
+ "name": "СписокСгруппироватьСгруппироватьПоБезГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 185,
+ "name": "КоманднаяПанельФормы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель формы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 187,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 189,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 191,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 9,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 161,
+ "name": "ГруппаКолонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Колонки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 155,
+ "name": "ЛеваяГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левая группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 153,
+ "name": "ВажностьИАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность и автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 24,
+ "name": "Важность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 40,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 157,
+ "name": "ПраваяГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правая группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 65,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана / Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 36,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 159,
+ "name": "ГруппаПрочее",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Прочее"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 46,
+ "name": "ДатаНачала",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата начала"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 137,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "РежимГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "23e3de37-9315-45e6-bbfd-60aae28c25ae",
+ "name": "ПеренаправитьЗадачи",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ПеренаправитьЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ПеренаправитьЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перенаправить задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ПеренаправитьЗадачи/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ПеренаправитьЗадачи/Ext/Form.xml",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбрать исполнителя"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "FillCheckProcessingAtServer",
+ "name": "ОбработкаПроверкиЗаполненияНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 5,
+ "name": "ДекорацияЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбранная задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 72,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 11,
+ "name": "ГруппаАдресация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Адресация"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 12,
+ "name": "ГруппаАдресацияИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Адресация исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 9,
+ "name": "ТипАдресацииИсполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ТипАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 67,
+ "name": "ГруппаАдресацияРоль",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Адресация роль"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 69,
+ "name": "ТипАдресацииРоль",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ТипАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "Роль",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Роль",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 60,
+ "name": "ГруппаОбъектыАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объекты адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 62,
+ "name": "Отступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 65,
+ "name": "ОбъектыАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объекты адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 33,
+ "name": "ГруппаОдинОбъектАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один объект адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 34,
+ "name": "ОдинОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 36,
+ "name": "ГруппаДваОбъектаАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Два объекта адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 37,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 39,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Комментарий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Комментарий",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 41,
+ "name": "ИгнорироватьПредупреждения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ИгнорироватьПредупреждения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "Комментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ТипАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип адресации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Роль",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Роль"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИспользуетсяБезОбъектовАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ИспользуетсяСОбъектамиАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ТипыДополнительногоОбъектаАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ТипыОсновногоОбъектаАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доп. объект адресации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ИгнорироватьПредупреждения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Игнорировать предупреждения"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "a9957f43-8b6f-4d98-a2d8-77b78047494c",
+ "name": "ФормаЗадачи",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ФормаЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ФормаЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Форма выполнения задачи по умолчанию",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ФормаЗадачи/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ФормаЗадачи/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "AfterWriteAtServer",
+ "name": "ПослеЗаписиНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnReadAtServer",
+ "name": "ПриЧтенииНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 170,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 93,
+ "name": "ГруппаФормаВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Форма выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelDecoration",
+ "id": 94,
+ "name": "ДекорацияТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выведены общие сведения о задаче.\nДля выполнения задачи необходимо перейти в специальную форму задачи."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "LabelDecoration",
+ "id": 97,
+ "name": "ДекорацияОткрытьФормуЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перейти в форму для выполнения задачи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 99,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 168,
+ "name": "ГруппаЗадача",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 124,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 83,
+ "name": "ГруппаАвторИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 78,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 165,
+ "name": "АвторСтрокой",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "АвторСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 125,
+ "name": "ГруппаДатаИСрок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата и срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 113,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 126,
+ "name": "ГруппаНомерИВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер и важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 115,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 88,
+ "name": "ГруппаПриоритет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приоритет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 85,
+ "name": "СрокНачалаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 110,
+ "name": "СрокНачалаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 117,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 77,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 106,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Описание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Описание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 87,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 119,
+ "name": "ДатаИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 121,
+ "name": "ДатаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакВыполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "АвторСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "e470e15d-1b06-43cb-a9f9-ba489e2f596f",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ФормаСписка",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ФормаСписка/Ext/Form/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[8]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Forms/ФормаСписка/Ext/Form.xml",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnSaveDataInSettingsAtServer",
+ "name": "ПриСохраненииДанныхВНастройкахНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "NavigationProcessing",
+ "name": "ОбработкаПерехода"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "ГруппаЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 55,
+ "name": "СтрокаБизнесПроцесса",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Бизнес-процесс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СтрокаБизнесПроцесса",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "СтрокаЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Точка маршрута"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СтрокаЗадачи",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаОтбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отбор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 49,
+ "name": "ПоказыватьЗадачи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьЗадачи",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоАвтору",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "ПоИсполнителю",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоИсполнителю",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 141,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 47,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 155,
+ "name": "Изменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 147,
+ "name": "ОткрытьБизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 149,
+ "name": "ОткрытьПредметЗадачи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 159,
+ "name": "ГруппаПоиск",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поиск"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 151,
+ "name": "Найти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 153,
+ "name": "ОтменитьПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 45,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 157,
+ "name": "ГруппаПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Принять к исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CommandBarButton",
+ "id": 61,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "К исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 62,
+ "name": "ОтменитьПринятиеКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 76,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 77,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ButtonGroup",
+ "id": 46,
+ "name": "КоманднаяПанельФормы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель формы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBarButton",
+ "id": 139,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "Table",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 161,
+ "name": "ГруппаВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 81,
+ "name": "ВажностьКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность (признак)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 59,
+ "name": "Остановлена",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Остановлена"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Остановлена",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 85,
+ "name": "ГруппаОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание задачи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 165,
+ "name": "ГруппаНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 51,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 163,
+ "name": "ГруппаАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 83,
+ "name": "Описание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Описание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 167,
+ "name": "ГруппаИсполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 80,
+ "name": "ГруппаИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 24,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 34,
+ "name": "РольИсполнителя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.РольИсполнителя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 40,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 38,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 169,
+ "name": "ГруппаСрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 30,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 10,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Executed",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "ДатаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 134,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоАвтору",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПоИсполнителю",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоказыватьЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "СтрокаБизнесПроцесса",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строка бизнес процесса"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "СтрокаЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строка задачи"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[4]"
+ }
+ ],
+ "commands": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[4]"
+ }
+ ],
+ []
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[8]"
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЗадачаИсполнителя",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "3ad08f4a-6202-4099-b6cc-bc116e6731a0"
+}}
\ No newline at end of file
diff --git "a/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json" "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json"
new file mode 100644
index 000000000..2273c0edf
--- /dev/null
+++ "b/src/test/resources/fixtures/ssl_3_1/Tasks.\320\227\320\260\320\264\320\260\321\207\320\260\320\230\321\201\320\277\320\276\320\273\320\275\320\270\321\202\320\265\320\273\321\217_edt.json"
@@ -0,0 +1,5726 @@
+{"com.github._1c_syntax.bsl.mdo.Task": {
+ "addressingAttributes": [
+ [
+ {
+ "uuid": "0408002c-9255-43a2-8022-82f02ee0e8f4",
+ "name": "ДополнительныйОбъектАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.ДополнительныйОбъектАдресации",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.ДополнительныйОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "TASK",
+ "mdoRef": "Task.ЗадачаИсполнителя",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "content": []
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Дополнительный объект адресации, если задача адресована роли исполнителя"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "type": "UNKNOWN",
+ "mdoRef": "",
+ "mdoRefRu": ""
+ }
+ },
+ {
+ "uuid": "88f44c9b-216d-4d7e-bc88-1e6b253ed01e",
+ "name": "Исполнитель",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.Исполнитель",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.Исполнитель"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Пользователь, которому поручено выполнение задачи"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/choiceForm"
+ }
+ },
+ {
+ "uuid": "1851afd4-5324-45c1-b754-54e65943f945",
+ "name": "ОсновнойОбъектАдресации",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.ОсновнойОбъектАдресации",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.ОсновнойОбъектАдресации"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации, если задача адресована роли исполнителя"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/choiceForm"
+ }
+ },
+ {
+ "uuid": "bc5eca9b-32d8-44e0-a127-8ad1f47d7957",
+ "name": "РольИсполнителя",
+ "mdoReference": {
+ "type": "TASK_ADDRESSING_ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.AddressingAttribute.РольИсполнителя",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.РеквизитАдресации.РольИсполнителя"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Роль исполнителя"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "toolTip": {
+ "content": [
+ [
+ "ru",
+ "Роль исполнителя, которой адресована задача"
+ ]
+ ]
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false,
+ "choiceForm": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/choiceForm"
+ }
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "uuid": "fd96c8ab-602a-4735-b168-52b501e80351",
+ "name": "Автор",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Автор",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Автор"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Автор бизнес-процесса, который сформировал задачу",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "b1dc619d-8d91-4f7a-aa50-1d07ff9aebdc",
+ "name": "Важность",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Важность",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Важность"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Для упорядочивания исполнителем своих задач по приоритету",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "370f0c75-d2c5-4be5-a633-4bcc77998ece",
+ "name": "ГруппаИсполнителейЗадач",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ГруппаИсполнителейЗадач",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ГруппаИсполнителейЗадач"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Группа исполнителей задач"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f80b505f-b4ff-45fb-bd88-74b274ae9d2b",
+ "name": "ДатаИсполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ДатаИсполнения",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ДатаИсполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Дата и время фактического выполнения задачи",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнена"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "2139532c-f6cb-4393-936e-cc912e5adca9",
+ "name": "ДатаНачала",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ДатаНачала",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ДатаНачала"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Для упорядочивания исполнителем своих задач",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата начала"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "755c3eca-4956-4a44-9b38-c11dae00b87f",
+ "name": "ДатаПринятияКИсполнению",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ДатаПринятияКИсполнению",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ДатаПринятияКИсполнению"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дата принятия к исполнению"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "f57c558c-2c94-4b9d-8697-448d0548ab1a",
+ "name": "Описание",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Описание",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Описание"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Описание постановки задачи для исполнителя",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": true
+ },
+ {
+ "uuid": "a310c09f-4d3a-4d3a-9ad5-7a5735a33a1d",
+ "name": "Предмет",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.Предмет",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.Предмет"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Предмет задачи",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c32db021-eca1-4b67-aa85-3d6e28c51b53",
+ "name": "ПредметСтрокой",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ПредметСтрокой",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ПредметСтрокой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Строковое представление предмета",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "e9ed0ee4-3fbe-4093-9078-cb265ed6842c",
+ "name": "ПринятаКИсполнению",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.ПринятаКИсполнению",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.ПринятаКИсполнению"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Принята к исполнению"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "02466dcf-02a1-4853-814f-a913a9baba45",
+ "name": "РезультатВыполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.РезультатВыполнения",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.РезультатВыполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Описание результата выполнения",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": true,
+ "extendedEdit": true,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "c4a40dc9-b619-4219-9d9a-e11f49a14fb1",
+ "name": "СостояниеБизнесПроцесса",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.СостояниеБизнесПроцесса",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.СостояниеБизнесПроцесса"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Состояние бизнес процесса"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "62b75eb2-42e1-4484-a77f-b676dd36f3d4",
+ "name": "СрокИсполнения",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.СрокИсполнения",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.СрокИсполнения"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Плановый срок исполнения задачи",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ },
+ {
+ "uuid": "5e28e22a-dd6e-4703-92bd-13f5cb0dc023",
+ "name": "АвторСтрокой",
+ "mdoReference": {
+ "type": "ATTRIBUTE",
+ "mdoRef": "Task.ЗадачаИсполнителя.Attribute.АвторСтрокой",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Реквизит.АвторСтрокой"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Автор строкой"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "passwordMode": false,
+ "kind": "CUSTOM",
+ "indexing": "DONT_INDEX",
+ "format": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "editFormat": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "markNegatives": false,
+ "mask": "",
+ "multiLine": false,
+ "extendedEdit": false,
+ "fillFromFillingValue": false
+ }
+ ],
+ []
+ ],
+ "children": [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[8]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[9]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[10]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[11]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[12]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[13]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute[14]"
+ },
+ {
+ "uuid": "6e5307ea-8fbf-4177-bcc8-f163a6ce1b40",
+ "name": "ВсеЗадачи",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.ВсеЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.ВсеЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Все задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Commands/ВсеЗадачи/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "0fa77ef7-a836-4459-9bca-6010d0bdfc7f",
+ "name": "Выполнено",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.Выполнено",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.Выполнено"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Выполнено"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Commands/Выполнено/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "c322dc4a-30f3-4d23-9824-4a01c496408d",
+ "name": "МоиЗадачи",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.МоиЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.МоиЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Commands/МоиЗадачи/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "dcff004c-1b61-4a19-b977-ea21bf688614",
+ "name": "Перенаправить",
+ "mdoReference": {
+ "type": "COMMAND",
+ "mdoRef": "Task.ЗадачаИсполнителя.Command.Перенаправить",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Команда.Перенаправить"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перенаправить..."
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "CommandModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Commands/Перенаправить/CommandModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ }
+ },
+ {
+ "uuid": "856510ee-74f5-44e9-a3c0-1c60cfb7a787",
+ "name": "Дополнительно",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.Дополнительно",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.Дополнительно"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Дополнительно"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/Дополнительно/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/Дополнительно/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дополнительно"
+ ]
+ ]
+ },
+ "handlers": [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 99,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "",
+ "empty": true
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 63,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения задачи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "CheckBoxField",
+ "id": 64,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Executed",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 66,
+ "name": "ДатаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 51,
+ "name": "ГруппаБизнесПроцесс",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Бизнес-процесс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 52,
+ "name": "БизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.BusinessProcess",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 54,
+ "name": "ТочкаМаршрута",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.RoutePoint",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 69,
+ "name": "ГруппаАдресация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача адресована"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 27,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 29,
+ "name": "РольИсполнителя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.РольИсполнителя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 92,
+ "name": "ГруппаУточнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Уточнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 96,
+ "name": "Отступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 94,
+ "name": "ГруппаОбъектыАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объекты адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 31,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 33,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 56,
+ "name": "ГруппаВходящие",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Входящие"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 57,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 71,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 45,
+ "name": "ГруппаСправа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Справа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 43,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ }
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "28b761c6-c286-4125-a4ed-da602e49950f",
+ "name": "ЗадачиПоБизнесПроцессу",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ЗадачиПоБизнесПроцессу",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ЗадачиПоБизнесПроцессу"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоБизнесПроцессу/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоБизнесПроцессу/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задачи бизнес-процесса"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 85,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 52,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 23,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Предмет",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 82,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 25,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 40,
+ "name": "ДеревоЗадачВажность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 49,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Выполнена",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 42,
+ "name": "ДеревоЗадачОстановлен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Остановлен",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 46,
+ "name": "ТипИНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип и наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 44,
+ "name": "ДеревоЗадачТип",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Тип",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 30,
+ "name": "ДеревоЗадачНаименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Наименование",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "ДеревоЗадачИсполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 47,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 21,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьВыполненные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать выполненные"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "4ac66a22-c736-4e06-a8aa-ef4a71788c65",
+ "name": "ЗадачиПоПредмету",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ЗадачиПоПредмету",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ЗадачиПоПредмету"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задачи по предмету"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоПредмету/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ЗадачиПоПредмету/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задачи по предмету"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 130,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 50,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 120,
+ "name": "ГруппаПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Принять к исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 122,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "К исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 124,
+ "name": "ОтменитьПринятиеКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 126,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 128,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 99,
+ "name": "ГруппаВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 52,
+ "name": "ВажностьКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 56,
+ "name": "Остановлена",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Остановлена"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Остановлена",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 103,
+ "name": "ГруппаОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 101,
+ "name": "ГруппаНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "Наименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 107,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 105,
+ "name": "ГруппаАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 110,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 113,
+ "name": "ГруппаИсполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 64,
+ "name": "ГруппаИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 58,
+ "name": "РольИсполнителя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.РольИсполнителя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 60,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 62,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 115,
+ "name": "ГруппаСрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 23,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 54,
+ "name": "ЗадачаВыполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Executed",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 117,
+ "name": "ДатаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 96,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 21,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьВыполненные",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 25,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 28,
+ "name": "ДеревоЗадачВажность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Важность",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 30,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Выполнена",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 32,
+ "name": "ДеревоЗадачОстановлен",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Остановлен",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 34,
+ "name": "ТипИНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип и наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 35,
+ "name": "ДеревоЗадачТип",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Тип",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 37,
+ "name": "ДеревоЗадачНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Наименование",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 39,
+ "name": "ДеревоЗадачИсполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 41,
+ "name": "СрокИсполнения1",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "ДеревоЗадач.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать выполненные задачи"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ДеревоЗадач",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дерево задач"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "9cfe9281-8840-4077-824d-a2c9cbb0b730",
+ "name": "МоиЗадачи",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.МоиЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.МоиЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачи/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачи/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 126,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 1,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Popup",
+ "id": 51,
+ "name": "СгруппироватьПо",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сгруппировать по"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 132,
+ "name": "СписокСгруппироватьПоСроку",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 52,
+ "name": "СписокСгруппироватьПоВажности",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 53,
+ "name": "СписокСгруппироватьПоТочкеМаршрута",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 61,
+ "name": "СписокСгруппироватьПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 62,
+ "name": "СписокСгруппироватьПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 54,
+ "name": "СписокСгруппироватьСгруппироватьПоБезГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 140,
+ "name": "ГруппаОткрыть",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Открыть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 138,
+ "name": "ФормаИзменить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Открыть задачу"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 134,
+ "name": "ОткрытьПредметЗадачи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 136,
+ "name": "ОткрытьБизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 48,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 128,
+ "name": "ФормаНайти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 130,
+ "name": "ФормаОтменитьПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 80,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "К исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 82,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 83,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 81,
+ "name": "ОтменитьПринятиеКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 8,
+ "name": "КоманднаяПанельФормы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель формы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 65,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 9,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 24,
+ "name": "Важность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 46,
+ "name": "ДатаНачала",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата начала"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 36,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 40,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 63,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 66,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 123,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 38,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьВыполненные",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать выполненные"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "РежимГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПараметрыОтбораФормы",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "76389fa9-b9e0-492e-9c93-24b5f3bf094c",
+ "name": "МоиЗадачиДляРабочегоСтола",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.МоиЗадачиДляРабочегоСтола",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.МоиЗадачиДляРабочегоСтола"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачиДляРабочегоСтола/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/МоиЗадачиДляРабочегоСтола/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Мои задачи"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПриЗагрузкеДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 140,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 163,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 165,
+ "name": "Изменить",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Открыть"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 167,
+ "name": "ОбновитьСписокЗадач",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Popup",
+ "id": 169,
+ "name": "СгруппироватьПо",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сгруппировать по"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 171,
+ "name": "СписокСгруппироватьПоСроку",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 173,
+ "name": "СписокСгруппироватьПоВажности",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 175,
+ "name": "СписокСгруппироватьПоТочкеМаршрута",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 177,
+ "name": "СписокСгруппироватьПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 179,
+ "name": "СписокСгруппироватьПоПредмету",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 181,
+ "name": "СгруппироватьПодгруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Сгруппировать подгруппа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "",
+ "id": 183,
+ "name": "СписокСгруппироватьСгруппироватьПоБезГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 185,
+ "name": "КоманднаяПанельФормы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель формы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 187,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 189,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 191,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 9,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ {
+ "type": "ColumnGroup",
+ "id": 161,
+ "name": "ГруппаКолонки",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Колонки"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 155,
+ "name": "ЛеваяГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Левая группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 153,
+ "name": "ВажностьИАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность и автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 24,
+ "name": "Важность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 40,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 157,
+ "name": "ПраваяГруппа",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Правая группа"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 65,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана / Срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 36,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 159,
+ "name": "ГруппаПрочее",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Прочее"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 46,
+ "name": "ДатаНачала",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата начала"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 137,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоказыватьВыполненные",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 3,
+ "name": "РежимГруппировки",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "23e3de37-9315-45e6-bbfd-60aae28c25ae",
+ "name": "ПеренаправитьЗадачи",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ПеренаправитьЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ПеренаправитьЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Перенаправить задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ПеренаправитьЗадачи/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ПеренаправитьЗадачи/Form.form",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбрать исполнителя"
+ ]
+ ]
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "FillCheckProcessingAtServer",
+ "name": "ОбработкаПроверкиЗаполненияНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 5,
+ "name": "ДекорацияЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выбранная задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 72,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 11,
+ "name": "ГруппаАдресация",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Адресация"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 12,
+ "name": "ГруппаАдресацияИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Адресация исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 9,
+ "name": "ТипАдресацииИсполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ТипАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 1,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 67,
+ "name": "ГруппаАдресацияРоль",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Адресация роль"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "RadioButtonField",
+ "id": 69,
+ "name": "ТипАдресацииРоль",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ТипАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 13,
+ "name": "Роль",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Роль",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 60,
+ "name": "ГруппаОбъектыАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объекты адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 62,
+ "name": "Отступ",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 65,
+ "name": "ОбъектыАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Объекты адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 33,
+ "name": "ГруппаОдинОбъектАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Один объект адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ {
+ "type": "InputField",
+ "id": 34,
+ "name": "ОдинОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 36,
+ "name": "ГруппаДваОбъектаАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Два объекта адресации"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 37,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 39,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 7,
+ "name": "Комментарий",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Комментарий",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 41,
+ "name": "ИгнорироватьПредупреждения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ИгнорироватьПредупреждения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2,
+ "name": "Комментарий",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Комментарий"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ТипАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Тип адресации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "Роль",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Роль"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "ИспользуетсяБезОбъектовАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 6,
+ "name": "ИспользуетсяСОбъектамиАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 7,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основной объект адресации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 8,
+ "name": "ТипыДополнительногоОбъектаАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 9,
+ "name": "ТипыОсновногоОбъектаАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 10,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Доп. объект адресации"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 11,
+ "name": "ИгнорироватьПредупреждения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Игнорировать предупреждения"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "a9957f43-8b6f-4d98-a2d8-77b78047494c",
+ "name": "ФормаЗадачи",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ФормаЗадачи",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ФормаЗадачи"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Форма выполнения задачи по умолчанию",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма задачи"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ФормаЗадачи/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ФормаЗадачи/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ {
+ "type": "UsualGroup",
+ "id": 170,
+ "name": "Документ",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Документ"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 93,
+ "name": "ГруппаФормаВыполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Форма выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "Label",
+ "id": 94,
+ "name": "ДекорацияТекст",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Выведены общие сведения о задаче.\nДля выполнения задачи необходимо перейти в специальную форму задачи."
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "Label",
+ "id": 97,
+ "name": "ДекорацияОткрытьФормуЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Перейти в форму для выполнения задачи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 99,
+ "name": "ГруппаСостояние",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Состояние"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "UsualGroup",
+ "id": 168,
+ "name": "ГруппаЗадача",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 124,
+ "name": "Шапка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Шапка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 83,
+ "name": "ГруппаАвторИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 78,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Автор",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 165,
+ "name": "АвторСтрокой",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "АвторСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "Исполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 125,
+ "name": "ГруппаДатаИСрок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата и срок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 113,
+ "name": "Дата",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 12,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 126,
+ "name": "ГруппаНомерИВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Номер и важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 115,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Number",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 16,
+ "name": "Важность",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Важность",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 88,
+ "name": "ГруппаПриоритет",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Приоритет"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 85,
+ "name": "СрокНачалаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 110,
+ "name": "СрокНачалаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаНачала",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 117,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Description",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 77,
+ "name": "ГруппаСодержание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Содержание"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 106,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "Описание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.Описание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 27,
+ "name": "ГруппаРезультат",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Результат выполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "UsualButton",
+ "id": 87,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 119,
+ "name": "ДатаИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Дата"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 121,
+ "name": "ДатаИсполненияВремя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Объект.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Объект",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "НачальныйПризнакВыполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 5,
+ "name": "ПредметСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Предмет"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "АвторСтрокой",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "uuid": "e470e15d-1b06-43cb-a9f9-ba489e2f596f",
+ "name": "ФормаСписка",
+ "mdoReference": {
+ "type": "FORM",
+ "mdoRef": "Task.ЗадачаИсполнителя.Form.ФормаСписка",
+ "mdoRefRu": "Задача.ЗадачаИсполнителя.Форма.ФормаСписка"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Форма списка"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "modules": [
+ {
+ "moduleType": "FormModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ФормаСписка/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[8]/mdoReference"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "formType": "MANAGED",
+ "data": {
+ "@class": "com.github._1c_syntax.bsl.mdo.storage.ManagedFormData",
+ "dataPath": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/Forms/ФормаСписка/Form.form",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "handlers": [
+ [
+ {
+ "event": "OnSaveDataInSettingsAtServer",
+ "name": "ПриСохраненииДанныхВНастройкахНаСервере"
+ },
+ {
+ "event": "NotificationProcessing",
+ "name": "ОбработкаОповещения"
+ },
+ {
+ "event": "NavigationProcessing",
+ "name": "ОбработкаПерехода"
+ },
+ {
+ "event": "OnCreateAtServer",
+ "name": "ПриСозданииНаСервере"
+ },
+ {
+ "event": "BeforeLoadDataFromSettingsAtServer",
+ "name": "ПередЗагрузкойДанныхИзНастроекНаСервере"
+ }
+ ],
+ []
+ ],
+ "items": [
+ [
+ {
+ "type": "UsualGroup",
+ "id": 54,
+ "name": "ГруппаЗаголовок",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Заголовок"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "LabelField",
+ "id": 55,
+ "name": "СтрокаБизнесПроцесса",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Бизнес-процесс"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СтрокаБизнесПроцесса",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "LabelField",
+ "id": 57,
+ "name": "СтрокаЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Точка маршрута"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "СтрокаЗадачи",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 43,
+ "name": "ГруппаОтбор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Отбор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 49,
+ "name": "ПоказыватьЗадачи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоказыватьЗадачи",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 18,
+ "name": "ПоАвтору",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоАвтору",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 20,
+ "name": "ПоИсполнителю",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "ПоИсполнителю",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "UsualGroup",
+ "id": 141,
+ "name": "ГруппаПользовательскихНастроек",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Группа пользовательских настроек"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "CommandBar",
+ "id": 47,
+ "name": "ОсновнаяКоманднаяПанель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Основная командная панель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 155,
+ "name": "Изменить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 147,
+ "name": "ОткрытьБизнесПроцесс",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 149,
+ "name": "ОткрытьПредметЗадачи",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 159,
+ "name": "ГруппаПоиск",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Поиск"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 151,
+ "name": "Найти",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 153,
+ "name": "ОтменитьПоиск",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 45,
+ "name": "КоманднаяПанельСписка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель списка"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 157,
+ "name": "ГруппаПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Принять к исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "",
+ "id": 61,
+ "name": "ПринятьКИсполнению",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "К исполнению"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 62,
+ "name": "ОтменитьПринятиеКИсполнению",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 76,
+ "name": "ЗадачаЗадачаИсполнителяВыполнено",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 77,
+ "name": "ЗадачаЗадачаИсполнителяПеренаправить",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Items.Список.CurrentData.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 46,
+ "name": "КоманднаяПанельФормы",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Командная панель формы"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ },
+ {
+ "type": "",
+ "id": 139,
+ "name": "Справка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "",
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Список"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список",
+ "empty": false
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 161,
+ "name": "ГруппаВажность",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "PictureField",
+ "id": 81,
+ "name": "ВажностьКартинка",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Важность (признак)"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.ВажностьКартинка",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "PictureField",
+ "id": 59,
+ "name": "Остановлена",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Остановлена"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Остановлена",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 85,
+ "name": "ГруппаОписание",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Описание задачи"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 165,
+ "name": "ГруппаНаименование",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Наименование"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 6,
+ "name": "Наименование",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Description",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 22,
+ "name": "Автор",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Автор",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 51,
+ "name": "Предмет",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ПредметСтрокой",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 163,
+ "name": "ГруппаАвтор",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 8,
+ "name": "Дата",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Записана"
+ ]
+ ]
+ },
+ "dataPath": {
+ "segments": "Список.Date",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 4,
+ "name": "Номер",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Number",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "InputField",
+ "id": 83,
+ "name": "Описание",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Описание",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 167,
+ "name": "ГруппаИсполнение",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнение"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "ColumnGroup",
+ "id": 80,
+ "name": "ГруппаИсполнитель",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 24,
+ "name": "Исполнитель",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Исполнитель",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 34,
+ "name": "РольИсполнителя",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.РольИсполнителя",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 40,
+ "name": "ОсновнойОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ОсновнойОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 38,
+ "name": "ДополнительныйОбъектАдресации",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДополнительныйОбъектАдресации",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "ColumnGroup",
+ "id": 169,
+ "name": "ГруппаСрокИсполнения",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Срок исполнения"
+ ]
+ ]
+ },
+ "dataPath": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/items/c/com.github._1c_syntax.bsl.mdo.storage.form.SimpleFormItem/dataPath"
+ },
+ "items": [
+ [
+ {
+ "type": "InputField",
+ "id": 30,
+ "name": "СрокИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.СрокИсполнения",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "CheckBoxField",
+ "id": 10,
+ "name": "Выполнена",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Executed",
+ "empty": false
+ },
+ "items": []
+ },
+ {
+ "type": "InputField",
+ "id": 32,
+ "name": "ДатаИсполнения",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.ДатаИсполнения",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "type": "LabelField",
+ "id": 134,
+ "name": "Ссылка",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ },
+ "dataPath": {
+ "segments": "Список.Ref",
+ "empty": false
+ },
+ "items": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "attributes": [
+ [
+ {
+ "id": 1,
+ "name": "Список",
+ "title": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format"
+ }
+ },
+ {
+ "id": 2,
+ "name": "ПоАвтору",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Автор"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 3,
+ "name": "ПоИсполнителю",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Исполнитель"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 4,
+ "name": "ПоказыватьЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Показывать"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 5,
+ "name": "СтрокаБизнесПроцесса",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строка бизнес процесса"
+ ]
+ ]
+ }
+ },
+ {
+ "id": 6,
+ "name": "СтрокаЗадачи",
+ "title": {
+ "content": [
+ [
+ "ru",
+ "Строка задачи"
+ ]
+ ]
+ }
+ }
+ ],
+ []
+ ]
+ },
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "usePurposes": [
+ [
+ "PLATFORM_APPLICATION",
+ "MOBILE_PLATFORM_APPLICATION"
+ ],
+ []
+ ]
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute[4]"
+ }
+ ],
+ "commands": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectCommand[4]"
+ }
+ ],
+ []
+ ],
+ "comment": "",
+ "forms": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/children/com.github._1c_syntax.bsl.mdo.children.ObjectForm[8]"
+ }
+ ],
+ []
+ ],
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "ManagerModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/ManagerModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ },
+ {
+ "moduleType": "ObjectModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/ObjectModule.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "ЗадачаИсполнителя",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Задача"
+ ]
+ ]
+ },
+ "tabularSections": [],
+ "templates": [],
+ "uuid": "3ad08f4a-6202-4099-b6cc-bc116e6731a0"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/ssl_3_1/WebServices.EnterpriseDataExchange_1_0_1_1.json b/src/test/resources/fixtures/ssl_3_1/WebServices.EnterpriseDataExchange_1_0_1_1.json
new file mode 100644
index 000000000..485d795a7
--- /dev/null
+++ b/src/test/resources/fixtures/ssl_3_1/WebServices.EnterpriseDataExchange_1_0_1_1.json
@@ -0,0 +1,1034 @@
+{"com.github._1c_syntax.bsl.mdo.WebService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 9,
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "e6fe7103-4dfa-4302-a58e-ccd7fac19c9d",
+ "name": "Ping",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.Ping",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.Ping"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Проверка соединения с информационной базой",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ping"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1"
+ },
+ "procedureName": "Ping",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": []
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "bb3a9973-67ce-479e-8668-c2f3bb20301e",
+ "name": "TestConnection",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Проверка подключения к информационной базе",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Test connection"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПроверкаПодключения",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "e5250dfe-dda2-4547-9b9e-2470ea1be1ab",
+ "name": "ExchangePlanName",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection.Parameter.ExchangePlanName",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection.Параметр.ExchangePlanName"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Exchange plan name"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "2c3fccc6-c4c0-49ec-bfc2-05ce05f27ea9",
+ "name": "PeerCode",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection.Parameter.PeerCode",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection.Параметр.PeerCode"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Peer code"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "37169451-1464-4f24-8ca6-802963ffb636",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "c3a958b1-590f-4418-a74f-5982b478cf52",
+ "name": "PrepareDataForGetting",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Выгрузить данные из информационной базы, согласно настроек узла плана обмена и подготовить их для отправки",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Prepare data for getting"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПодготовитьДанныеКПолучению",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "ef0e618d-0942-460a-ac65-9aca2fed976e",
+ "name": "ExchangePlanName",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.ExchangePlanName",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.ExchangePlanName"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Exchange plan name"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "fd1ed7ec-d848-41cd-8ce3-2e5a682abcf0",
+ "name": "PeerCode",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.PeerCode",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.PeerCode"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Peer code"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "2ac8bd69-9fbf-4f15-b58d-397d9e903532",
+ "name": "PartSize",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.PartSize",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.PartSize"
+ },
+ "objectBelonging": "OWN",
+ "comment": "В КБ, 0 не разделять",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part size"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "2ff35814-7eaa-4ae5-bbac-f46bebb36c9d",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ },
+ {
+ "uuid": "5b460b92-2c74-4f59-88b2-18d9aac42c04",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "db05d35b-5f53-4c27-ba80-b477b9a98299",
+ "name": "PrepareDataActionResult",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataActionResult",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataActionResult"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Получить результат выполнения операции подготовки данных для выгрузки из информационной базы",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Prepare data action result"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПолучитьРезультатПодготовкиДанныхКВыгрузке",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "fa872ae1-b699-46fe-9d6a-e42e1388752b",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataActionResult.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataActionResult.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[4]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "1acf34e6-c428-4130-82f0-5160dfcc0858",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataActionResult.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataActionResult.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[4]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "57046262-b9ce-4670-9cf5-6db9e58dd0d5",
+ "name": "GetDataPart",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Получить часть сформированного файла с данными, из временного хранилища",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Get data part"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ВыгрузитьЧастьФайла",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "a9824176-36d5-4be5-9984-f4312ff48515",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "8e980ca0-1627-45e8-bd27-5dd1ac199459",
+ "name": "PartNumber",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart.Parameter.PartNumber",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart.Параметр.PartNumber"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part number"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "8b653beb-af9f-4f39-b691-ae14f80b7cd6",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "77559c11-713f-454d-aff4-56649e1350e9",
+ "name": "ConfirmGettingFile",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Подтвердить получение файла",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Confirm getting file"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПодтвердитьПолучениеДанных",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "0c965703-c1d0-48b7-80f9-b8d869ff98f5",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "51f8d5ff-aec5-4c0a-ad02-df8c6cb1b4ad",
+ "name": "ClearDataPool",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile.Parameter.ClearDataPool",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile.Параметр.ClearDataPool"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Clear data pool"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "7ba42162-557b-4e34-8aca-0cdee8cb2452",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "eee99b8e-29b6-4b7a-81f1-3d91d740c0d7",
+ "name": "PutFilePart",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Поместить часть файла с данными во временное хранилище",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Put file part"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ЗагрузитьЧастьФайла",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "ad4f2d1f-1e6f-4f6a-8061-202c0e42a8e4",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "dd577924-c6cb-4aa9-9db5-366d8958d00f",
+ "name": "PartNumber",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.PartNumber",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.PartNumber"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part number"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "8ed8f72e-404a-4be4-a44d-ddebbad5f411",
+ "name": "PartData",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.PartData",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.PartData"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part data"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "e919bc4c-86e6-44f6-be27-5a729b63d042",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "ec580e4f-1518-4923-a10e-bc1da8688b37",
+ "name": "PutData",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Поместить данные в информационную базу",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Put data"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ЗагрузитьДанныеВИнформационнуюБазу",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "91c3902a-314f-4d40-8bcc-8dd131fed2f4",
+ "name": "ExchangePlanName",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.ExchangePlanName",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.ExchangePlanName"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Exchange plan name"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "ae2b21c5-9349-49e8-9627-26f05c21f43a",
+ "name": "PeerCode",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.PeerCode",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.PeerCode"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Peer code"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "7e4c0b74-e807-4aa9-ad69-3c85b147bb61",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "917a19d7-73db-4247-b892-397598d67879",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ },
+ {
+ "uuid": "1f866dc3-a4bc-4e8d-96a3-a26ee073926f",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "d8066600-c669-449d-a187-fdd3af8f7afa",
+ "name": "PutDataActionResult",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutDataActionResult",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutDataActionResult"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Получить результат выполнения операции помещения данных в информационную базу",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Put data action result"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПолучитьРезультатЗагрузкиДанных",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "dadf86a6-c118-4827-b1b9-6cfee731242f",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutDataActionResult.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutDataActionResult.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[9]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "45bf7b20-f048-491a-a989-e50bea13d028",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutDataActionResult.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutDataActionResult.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[9]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ }
+ }
+ ],
+ "comment": "",
+ "descriptorFileName": "EnterpriseDataExchange_1_0_1_1.1cws",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "WEBServiceModule",
+ "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/WebServices/EnterpriseDataExchange_1_0_1_1/Ext/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "EnterpriseDataExchange_1_0_1_1",
+ "namespace": "http://www.1c.ru/SSL/EnterpriseDataExchange_1_0_1_1",
+ "objectBelonging": "OWN",
+ "operations": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[9]"
+ }
+ ],
+ []
+ ],
+ "reuseSessions": "DONT_USE",
+ "sessionMaxAge": 20,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Enterprise Data Exchange 1.0.1.1"
+ ]
+ ]
+ },
+ "uuid": "cb3a5c5b-7bdc-4e12-96f1-11b1213b6853"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/ssl_3_1/WebServices.EnterpriseDataExchange_1_0_1_1_edt.json b/src/test/resources/fixtures/ssl_3_1/WebServices.EnterpriseDataExchange_1_0_1_1_edt.json
new file mode 100644
index 000000000..1f410df0c
--- /dev/null
+++ b/src/test/resources/fixtures/ssl_3_1/WebServices.EnterpriseDataExchange_1_0_1_1_edt.json
@@ -0,0 +1,1034 @@
+{"com.github._1c_syntax.bsl.mdo.WebService": {
+ "children": [
+ {
+ "default": {
+ "tag": 4
+ },
+ "int": 9,
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "e6fe7103-4dfa-4302-a58e-ccd7fac19c9d",
+ "name": "Ping",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.Ping",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.Ping"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Проверка соединения с информационной базой",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Ping"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "type": "WEB_SERVICE",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1"
+ },
+ "procedureName": "Ping",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": []
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "bb3a9973-67ce-479e-8668-c2f3bb20301e",
+ "name": "TestConnection",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Проверка подключения к информационной базе",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Test connection"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПроверкаПодключения",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "e5250dfe-dda2-4547-9b9e-2470ea1be1ab",
+ "name": "ExchangePlanName",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection.Parameter.ExchangePlanName",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection.Параметр.ExchangePlanName"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Exchange plan name"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "2c3fccc6-c4c0-49ec-bfc2-05ce05f27ea9",
+ "name": "PeerCode",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection.Parameter.PeerCode",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection.Параметр.PeerCode"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Peer code"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "37169451-1464-4f24-8ca6-802963ffb636",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.TestConnection.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.TestConnection.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "c3a958b1-590f-4418-a74f-5982b478cf52",
+ "name": "PrepareDataForGetting",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Выгрузить данные из информационной базы, согласно настроек узла плана обмена и подготовить их для отправки",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Prepare data for getting"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПодготовитьДанныеКПолучению",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "ef0e618d-0942-460a-ac65-9aca2fed976e",
+ "name": "ExchangePlanName",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.ExchangePlanName",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.ExchangePlanName"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Exchange plan name"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "fd1ed7ec-d848-41cd-8ce3-2e5a682abcf0",
+ "name": "PeerCode",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.PeerCode",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.PeerCode"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Peer code"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "2ac8bd69-9fbf-4f15-b58d-397d9e903532",
+ "name": "PartSize",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.PartSize",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.PartSize"
+ },
+ "objectBelonging": "OWN",
+ "comment": "В КБ, 0 не разделять",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part size"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "2ff35814-7eaa-4ae5-bbac-f46bebb36c9d",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ },
+ {
+ "uuid": "5b460b92-2c74-4f59-88b2-18d9aac42c04",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataForGetting.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataForGetting.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "db05d35b-5f53-4c27-ba80-b477b9a98299",
+ "name": "PrepareDataActionResult",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataActionResult",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataActionResult"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Получить результат выполнения операции подготовки данных для выгрузки из информационной базы",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Prepare data action result"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПолучитьРезультатПодготовкиДанныхКВыгрузке",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "fa872ae1-b699-46fe-9d6a-e42e1388752b",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataActionResult.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataActionResult.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[4]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "1acf34e6-c428-4130-82f0-5160dfcc0858",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PrepareDataActionResult.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PrepareDataActionResult.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[4]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "57046262-b9ce-4670-9cf5-6db9e58dd0d5",
+ "name": "GetDataPart",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Получить часть сформированного файла с данными, из временного хранилища",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Get data part"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ВыгрузитьЧастьФайла",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "a9824176-36d5-4be5-9984-f4312ff48515",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "8e980ca0-1627-45e8-bd27-5dd1ac199459",
+ "name": "PartNumber",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart.Parameter.PartNumber",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart.Параметр.PartNumber"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part number"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "8b653beb-af9f-4f39-b691-ae14f80b7cd6",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.GetDataPart.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.GetDataPart.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "77559c11-713f-454d-aff4-56649e1350e9",
+ "name": "ConfirmGettingFile",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Подтвердить получение файла",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Confirm getting file"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПодтвердитьПолучениеДанных",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "0c965703-c1d0-48b7-80f9-b8d869ff98f5",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "51f8d5ff-aec5-4c0a-ad02-df8c6cb1b4ad",
+ "name": "ClearDataPool",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile.Parameter.ClearDataPool",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile.Параметр.ClearDataPool"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Clear data pool"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "7ba42162-557b-4e34-8aca-0cdee8cb2452",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.ConfirmGettingFile.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.ConfirmGettingFile.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "eee99b8e-29b6-4b7a-81f1-3d91d740c0d7",
+ "name": "PutFilePart",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Поместить часть файла с данными во временное хранилище",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Put file part"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ЗагрузитьЧастьФайла",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "ad4f2d1f-1e6f-4f6a-8061-202c0e42a8e4",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "dd577924-c6cb-4aa9-9db5-366d8958d00f",
+ "name": "PartNumber",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.PartNumber",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.PartNumber"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part number"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "8ed8f72e-404a-4be4-a44d-ddebbad5f411",
+ "name": "PartData",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.PartData",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.PartData"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Part data"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "e919bc4c-86e6-44f6-be27-5a729b63d042",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutFilePart.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutFilePart.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "ec580e4f-1518-4923-a10e-bc1da8688b37",
+ "name": "PutData",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Поместить данные в информационную базу",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Put data"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ЗагрузитьДанныеВИнформационнуюБазу",
+ "nillable": true,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "91c3902a-314f-4d40-8bcc-8dd131fed2f4",
+ "name": "ExchangePlanName",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.ExchangePlanName",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.ExchangePlanName"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Exchange plan name"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "ae2b21c5-9349-49e8-9627-26f05c21f43a",
+ "name": "PeerCode",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.PeerCode",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.PeerCode"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Peer code"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "7e4c0b74-e807-4aa9-ad69-3c85b147bb61",
+ "name": "FileID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.FileID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.FileID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "File ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "917a19d7-73db-4247-b892-397598d67879",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ },
+ {
+ "uuid": "1f866dc3-a4bc-4e8d-96a3-a26ee073926f",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutData.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutData.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ },
+ "com.github._1c_syntax.bsl.mdo.children.WebServiceOperation": {
+ "uuid": "d8066600-c669-449d-a187-fdd3af8f7afa",
+ "name": "PutDataActionResult",
+ "mdoReference": {
+ "type": "WS_OPERATION",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutDataActionResult",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutDataActionResult"
+ },
+ "objectBelonging": "OWN",
+ "comment": "Получить результат выполнения операции помещения данных в информационную базу",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Put data action result"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "procedureName": "ПолучитьРезультатЗагрузкиДанных",
+ "nillable": false,
+ "transactioned": false,
+ "dataLockControlMode": "MANAGED",
+ "parameters": [
+ [
+ {
+ "uuid": "dadf86a6-c118-4827-b1b9-6cfee731242f",
+ "name": "OperationID",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutDataActionResult.Parameter.OperationID",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutDataActionResult.Параметр.OperationID"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Operation ID"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[9]/mdoReference"
+ },
+ "nillable": false,
+ "transferDirection": "IN"
+ },
+ {
+ "uuid": "45bf7b20-f048-491a-a989-e50bea13d028",
+ "name": "ErrorMessage",
+ "mdoReference": {
+ "type": "WS_OPERATION_PARAMETER",
+ "mdoRef": "WebService.EnterpriseDataExchange_1_0_1_1.Operation.PutDataActionResult.Parameter.ErrorMessage",
+ "mdoRefRu": "WebСервис.EnterpriseDataExchange_1_0_1_1.Операция.PutDataActionResult.Параметр.ErrorMessage"
+ },
+ "objectBelonging": "OWN",
+ "comment": "",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Error message"
+ ]
+ ]
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[9]/mdoReference"
+ },
+ "nillable": true,
+ "transferDirection": "OUT"
+ }
+ ],
+ []
+ ]
+ }
+ }
+ ],
+ "comment": "",
+ "descriptorFileName": "EnterpriseDataExchange_1_0_1_1.1cws",
+ "mdoReference": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "modules": [
+ {
+ "moduleType": "WEBServiceModule",
+ "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/WebServices/EnterpriseDataExchange_1_0_1_1/Module.bsl",
+ "owner": {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation/owner"
+ },
+ "supportVariant": "NOT_EDITABLE",
+ "isProtected": false
+ }
+ ],
+ "name": "EnterpriseDataExchange_1_0_1_1",
+ "namespace": "http://www.1c.ru/SSL/EnterpriseDataExchange_1_0_1_1",
+ "objectBelonging": "OWN",
+ "operations": [
+ [
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[2]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[3]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[4]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[5]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[6]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[7]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[8]"
+ },
+ {
+ "@reference": "/com.github._1c_syntax.bsl.mdo.WebService/children/java.util.CollSer/com.github._1c_syntax.bsl.mdo.children.WebServiceOperation[9]"
+ }
+ ],
+ []
+ ],
+ "reuseSessions": "DONT_USE",
+ "sessionMaxAge": 20,
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Enterprise Data Exchange 1.0.1.1"
+ ]
+ ]
+ },
+ "uuid": "cb3a5c5b-7bdc-4e12-96f1-11b1213b6853"
+}}
\ No newline at end of file
diff --git a/src/test/resources/fixtures/ssl_3_1/XDTOPackages.ApdexExport_1_0_0_4.json b/src/test/resources/fixtures/ssl_3_1/XDTOPackages.ApdexExport_1_0_0_4.json
new file mode 100644
index 000000000..d6f707c46
--- /dev/null
+++ b/src/test/resources/fixtures/ssl_3_1/XDTOPackages.ApdexExport_1_0_0_4.json
@@ -0,0 +1,231 @@
+{"com.github._1c_syntax.bsl.mdo.XDTOPackage": {
+ "comment": "",
+ "data": {
+ "targetNamespace": "www.v8.1c.ru/ssl/performace-assessment/apdexExport/1.0.0.4",
+ "imports": [],
+ "valueTypes": [],
+ "objectTypes": [
+ [
+ {
+ "name": "Performance",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "version",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "period",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "keyOperation",
+ "type": "d3p1:KeyOperation",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "KeyOperation",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "uid",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "name",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "comment",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "priority",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "targetValue",
+ "type": "xs:float",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "measurement",
+ "type": "d3p1:Measurement",
+ "lowerBound": 0,
+ "upperBound": -1,
+ "nillable": true,
+ "form": "",
+ "typeDef": []
+ },
+ {
+ "name": "nameFull",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "long",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ },
+ {
+ "name": "Measurement",
+ "base": "",
+ "properties": [
+ [
+ {
+ "name": "value",
+ "type": "xs:double",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "weight",
+ "type": "xs:double",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "tUtc",
+ "type": "xs:float",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "userName",
+ "type": "xs:string",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "tSaveUTC",
+ "type": "xs:dateTime",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "sessionNumber",
+ "type": "xs:integer",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ },
+ {
+ "name": "runningError",
+ "type": "xs:boolean",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "Attribute",
+ "typeDef": []
+ }
+ ],
+ []
+ ]
+ }
+ ],
+ []
+ ],
+ "properties": [
+ {
+ "name": "performance",
+ "type": "d2p1:Performance",
+ "lowerBound": 0,
+ "upperBound": 0,
+ "nillable": false,
+ "form": "",
+ "typeDef": []
+ }
+ ]
+ },
+ "mdoReference": {
+ "type": "XDTO_PACKAGE",
+ "mdoRef": "XDTOPackage.ApdexExport_1_0_0_4",
+ "mdoRefRu": "ПакетXDTO.ApdexExport_1_0_0_4"
+ },
+ "name": "ApdexExport_1_0_0_4",
+ "namespace": "www.v8.1c.ru/ssl/performace-assessment/apdexExport/1.0.0.4",
+ "objectBelonging": "OWN",
+ "supportVariant": "NOT_EDITABLE",
+ "synonym": {
+ "content": [
+ [
+ "ru",
+ "Apdex export 1 0 0 4"
+ ]
+ ]
+ },
+ "uuid": "5c45e96f-e245-4d16-9c47-836505582aef"
+}}
\ No newline at end of file
diff --git a/src/test/resources/metadata/edt/.project b/src/test/resources/metadata/edt/.project
deleted file mode 100644
index d1fe6475d..000000000
--- a/src/test/resources/metadata/edt/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- edt
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextBuilder
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextNature
- com._1c.g5.v8.dt.core.V8ConfigurationNature
-
-
diff --git a/src/test/resources/metadata/edt/DT-INF/PROJECT.PMF b/src/test/resources/metadata/edt/DT-INF/PROJECT.PMF
deleted file mode 100644
index 8d622a22b..000000000
--- a/src/test/resources/metadata/edt/DT-INF/PROJECT.PMF
+++ /dev/null
@@ -1,2 +0,0 @@
-Manifest-Version: 1.0
-Runtime-Version: 8.3.10
diff --git "a/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo" "b/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo"
deleted file mode 100644
index 4543a4078..000000000
--- "a/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.mdo"
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- РегистрБухгалтерии2
-
- ru
- Регистр бухгалтерии
-
- true
- Managed
- true
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
- true
-
-
- Ресурс1
-
- Number
-
- 10
-
-
-
-
- Use
- true
-
-
diff --git "a/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703.mdo" "b/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703.mdo"
deleted file mode 100644
index 9bd1002a0..000000000
--- "a/src/test/resources/metadata/edt/src/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703.mdo"
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- РегистрБухгалтерии3
- true
- Managed
- true
-
- Измерение1
-
- String
-
- 10
-
-
-
-
- Use
- true
-
-
- Ресурс1
-
- Number
-
- 10
-
-
-
-
- Use
- true
-
-
diff --git "a/src/test/resources/metadata/edt/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/BusinessProcesses/\320\221\320\270\320\267\320\275\320\265\321\201\320\237\321\200\320\276\321\206\320\265\321\201\321\2011/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/RecordSetModule.bsl" "b/src/test/resources/metadata/edt/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/RecordSetModule.bsl"
deleted file mode 100644
index 858093087..000000000
--- "a/src/test/resources/metadata/edt/src/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/RecordSetModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-#Область СлужебныйПрограммныйИнтерфейс
-
-Процедура ТестовыйВызов() Экспорт
- Возврат;
-КонецПроцедуры
-
-#КонецОбласти
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
deleted file mode 100644
index 326a88707..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-
-&НаКлиенте
-Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
- //Вставить содержимое обработчика.
- //ПараметрыФормы = Новый Структура("", );
- //ОткрытьФорму("Справочник.Справочник1.ФормаСписка", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
deleted file mode 100644
index 7293ca43a..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
+++ /dev/null
@@ -1,695 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
-
- Список.Description
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- Список.Code
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- Список.Predefined
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- Список.PredefinedDataName
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- ExternalEvent
- ВнешнееСобытие
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Catalog.Справочник1
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
deleted file mode 100644
index e6d5d434a..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ВнешнееСобытие(Источник, Событие, Данные)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index db9c44fa9..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,693 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
-
- Список.Description
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- Список.Code
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- Список.Predefined
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- Список.PredefinedDataName
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- OnReopen
- ПриПовторномОткрытии
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Catalog.Справочник1
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
deleted file mode 100644
index 7e7f72887..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ПриПовторномОткрытии()
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index 685c2c76f..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,472 +0,0 @@
-
-
-
- Ссылка
- 1
- true
- true
-
- true
-
-
- Объект.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Код
- 4
- true
- true
-
- true
-
-
- Объект.Code
-
-
- КодРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Наименование
- 7
- true
- true
-
- true
-
-
- Объект.Description
-
-
- НаименованиеРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ПометкаУдаления
- 10
- true
- true
-
- true
-
-
- Объект.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- Предопределенный
- 13
- true
- true
-
- true
-
-
- Объект.Predefined
-
-
- ПредопределенныйРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 16
- true
- true
-
- true
-
-
- Объект.PredefinedDataName
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 19
- true
- true
-
- true
-
-
- Объект.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 22
- true
- true
-
- true
-
-
- Объект.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 25
- true
- true
-
- true
-
-
- Объект.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- CatalogObject.Справочник1
-
-
- true
-
-
- true
-
- true
- true
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/ChartsOfAccounts/\320\237\320\273\320\260\320\275\320\241\321\207\320\265\321\202\320\276\320\2621/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/ChartsOfCharacteristicTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\245\320\260\321\200\320\260\320\272\321\202\320\265\321\200\320\270\321\201\321\202\320\270\320\2721/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl" "b/src/test/resources/metadata/edt/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
deleted file mode 100644
index 1a50b1d30..000000000
--- "a/src/test/resources/metadata/edt/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214/Module.bsl"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-Процедура ПодпискаНаСобытие1ПередЗаписью(Источник, Отказ) Экспорт
- // Вставить содержимое обработчика.
-КонецПроцедуры
-
-Процедура РегламентноеЗадание1() Экспорт
- // Вставить содержимое обработчика.
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme" "b/src/test/resources/metadata/edt/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
deleted file mode 100644
index 2000237bc..000000000
--- "a/src/test/resources/metadata/edt/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
- style:FieldBackColor
- true
- Lines
- 20
- 20
-
- 10
- 10
- 10
- 10
- false
- Auto
-
-
-
\ No newline at end of file
diff --git a/src/test/resources/metadata/edt/src/Configuration/ClientApplicationInterface.cai b/src/test/resources/metadata/edt/src/Configuration/ClientApplicationInterface.cai
deleted file mode 100644
index 08599ad81..000000000
--- a/src/test/resources/metadata/edt/src/Configuration/ClientApplicationInterface.cai
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/test/resources/metadata/edt/src/Configuration/ExternalConnectionModule.bsl b/src/test/resources/metadata/edt/src/Configuration/ExternalConnectionModule.bsl
deleted file mode 100644
index 9fe1445d7..000000000
--- a/src/test/resources/metadata/edt/src/Configuration/ExternalConnectionModule.bsl
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-Процедура ПриНачалеРаботыСистемы()
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git a/src/test/resources/metadata/edt/src/Configuration/ManagedApplicationModule.bsl b/src/test/resources/metadata/edt/src/Configuration/ManagedApplicationModule.bsl
deleted file mode 100644
index 99a809136..000000000
--- a/src/test/resources/metadata/edt/src/Configuration/ManagedApplicationModule.bsl
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/src/test/resources/metadata/edt/src/Configuration/SessionModule.bsl b/src/test/resources/metadata/edt/src/Configuration/SessionModule.bsl
deleted file mode 100644
index 16ffe515e..000000000
--- a/src/test/resources/metadata/edt/src/Configuration/SessionModule.bsl
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-Процедура УстановкаПараметровСеанса(ТребуемыеПараметры)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ManagerModule.bsl"
deleted file mode 100644
index 8d5ea353d..000000000
--- "a/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ManagerModule.bsl"
+++ /dev/null
@@ -1,3 +0,0 @@
-Процедура ПередЗаписью(Отказ)
- Сообщить(Отказ);
-КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ValueManagerModule.bsl" "b/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ValueManagerModule.bsl"
deleted file mode 100644
index 5fe2935ba..000000000
--- "a/src/test/resources/metadata/edt/src/Constants/\320\232\320\276\320\275\321\201\321\202\320\260\320\275\321\202\320\2601/ValueManagerModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-Процедура ПередЗаписью(Отказ)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form" "b/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form"
deleted file mode 100644
index cc8437f47..000000000
--- "a/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Form.form"
+++ /dev/null
@@ -1,323 +0,0 @@
-
-
-
- Реквизит1
- 1
- true
- true
-
- true
-
-
- Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- HTMLDocumentField
- Enter
- true
- Left
- true
-
- 50
- true
- 10
- true
- true
- true
-
-
-
- Реквизит3
- 4
- true
- true
-
- true
-
-
- Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 7
- true
- true
-
- true
-
-
- Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит4
- 10
- true
- true
-
- true
-
-
- Реквизит4
-
-
- Реквизит4РасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит4КонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- SpreadsheetDocumentField
- Enter
- true
- Left
- true
-
- 50
- true
- 10
- true
- true
- true
- Special
- ScrollAuto
- ScrollAuto
- Always
- true
- true
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- DataProcessorObject.Обработка1
-
-
- true
-
-
- true
-
- true
-
-
- Реквизит1
- 2
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Реквизит2
- 3
-
- Date
-
- Date
-
-
-
- true
-
-
- true
-
-
-
- Реквизит3
- 4
-
- String
- Date
- Boolean
- UUID
- FormattedString
- DocumentRef
-
-
- Date
-
-
-
- true
-
-
- true
-
-
-
- Реквизит4
- 5
-
- SpreadsheetDocument
-
-
- true
-
-
- true
-
-
-
-
- Реквизит5
- 6
-
- EnumRef.Перечисление1
-
-
- true
-
-
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo" "b/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
deleted file mode 100644
index 3f29e997e..000000000
--- "a/src/test/resources/metadata/edt/src/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601.mdo"
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
- Обработка1
- true
- DataProcessor.Обработка1.Form.Форма
-
- Форма
-
- ru
- Форма
-
- PersonalComputer
- MobileDevice
-
-
diff --git "a/src/test/resources/metadata/edt/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
deleted file mode 100644
index 97a634ba2..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
+++ /dev/null
@@ -1,648 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
-
- Список.Date
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- Список.Number
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- Список.Posted
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Document.Документ1
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index 7b1bf6f86..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,631 +0,0 @@
-
-
-
- Номер
- 1
- true
- true
-
- true
-
-
- Объект.Number
-
-
- НомерРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Дата
- 4
- true
- true
-
- true
-
-
- Объект.Date
-
-
- ДатаРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 7
- true
- true
-
- true
-
-
- Объект.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 10
- true
- true
-
- true
-
-
- Объект.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 13
- true
- true
-
- true
-
-
- Объект.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1
- 16
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1
-
- None
-
- ТабличнаяЧасть1НомерСтроки
- 29
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1.LineNumber
-
-
- ТабличнаяЧасть1НомерСтрокиРасширеннаяПодсказка
- 31
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1НомерСтрокиКонтекстноеМеню
- 30
- true
- true
-
- true
-
- true
-
- LabelField
- EnterOnInput
- true
- Left
- true
-
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит1
- 32
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1.Реквизит1
-
-
- ТабличнаяЧасть1Реквизит1РасширеннаяПодсказка
- 34
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит1КонтекстноеМеню
- 33
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит2
- 35
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1.Реквизит2
-
-
- ТабличнаяЧасть1Реквизит2РасширеннаяПодсказка
- 37
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит2КонтекстноеМеню
- 36
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1КоманднаяПанель
- 18
- true
- true
-
- true
-
- Left
- true
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СтрокаПоиска
- 20
-
- ТабличнаяЧасть1СтрокаПоискаРасширеннаяПодсказка
- 22
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СтрокаПоискаКонтекстноеМеню
- 21
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СостояниеПросмотра
- 23
-
- ТабличнаяЧасть1СостояниеПросмотраРасширеннаяПодсказка
- 25
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СостояниеПросмотраКонтекстноеМеню
- 24
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1УправлениеПоиском
- 26
-
- ТабличнаяЧасть1УправлениеПоискомРасширеннаяПодсказка
- 28
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1УправлениеПоискомКонтекстноеМеню
- 27
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ТабличнаяЧасть1РасширеннаяПодсказка
- 19
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1КонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- true
- true
- true
- true
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- NewWriteProcessing
- ОбработкаЗаписиНового
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- DocumentObject.Документ1
-
-
- true
-
-
- true
-
-
- Объект.RegisterRecords
-
- true
- true
-
-
-
-
-
-
- true
-
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
deleted file mode 100644
index f3608fbfd..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ОбработкаЗаписиНового(НовыйОбъект, Источник, СтандартнаяОбработка)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index fbada803b..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,646 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
-
- Список.Date
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- Список.Number
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- Список.Posted
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Document.Документ1
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Enums/\320\237\320\265\321\200\320\265\321\207\320\270\321\201\320\273\320\265\320\275\320\270\320\2651/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/FilterCriteria/\320\232\321\200\320\270\321\202\320\265\321\200\320\270\320\271\320\236\321\202\320\261\320\276\321\200\320\2601/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl" "b/src/test/resources/metadata/edt/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
deleted file mode 100644
index d3956a54c..000000000
--- "a/src/test/resources/metadata/edt/src/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
+++ /dev/null
@@ -1,14 +0,0 @@
-Процедура Метод()
-КонецПроцедуры
-
-
-
-Функция ШаблонURLМетод(Запрос)
- Ответ = Новый HTTPСервисОтвет(200);
- Возврат Ответ;
-КонецФункции
-
-Функция ШаблонURLМетод1(Запрос)
- Ответ = Новый HTTPСервисОтвет(200);
- Возврат Ответ;
-КонецФункции
diff --git "a/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/RecordSetModule.bsl" "b/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/RecordSetModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711/RecordSetModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ObjectModule.bsl" "b/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ObjectModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/ObjectModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Template.mxlx" "b/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Template.mxlx"
deleted file mode 100644
index e96f859e1..000000000
--- "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/Templates/\320\234\320\260\320\272\320\265\321\202\320\236\321\202\321\207\320\265\321\202\320\260/Template.mxlx"
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
- ru
- ru
-
- ru
- Русский
- Русский
-
-
- Alb
- Албанский
-
-
-
- 2
-
-
- 2
-
-
- 1
-
- 0
-
- Comment
- 0
- 1
-
-
- ru
-
-
-
- 1
- -20
- 0
- 50
- 1
- 20
- 0
- 22
- true
-
-
-
-
-
- true
- 3
-
- Top
- #FFFAD9
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo" "b/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
deleted file mode 100644
index c012df8ff..000000000
--- "a/src/test/resources/metadata/edt/src/Reports/\320\236\321\202\321\207\320\265\321\2021/\320\236\321\202\321\207\320\265\321\2021.mdo"
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
- Отчет1
- true
-
- МакетОтчета
-
- ru
- Макет отчета
-
-
-
diff --git "a/src/test/resources/metadata/edt/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/RecordSetModule.bsl" "b/src/test/resources/metadata/edt/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/RecordSetModule.bsl"
deleted file mode 100644
index 8f60e4e1e..000000000
--- "a/src/test/resources/metadata/edt/src/Sequences/\320\237\320\276\321\201\320\273\320\265\320\264\320\276\320\262\320\260\321\202\320\265\320\273\321\214\320\275\320\276\321\201\321\202\321\2141/RecordSetModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-Процедура ПередЗаписью(Отказ, Замещение)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/ManagerModule.bsl" "b/src/test/resources/metadata/edt/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/ManagerModule.bsl"
deleted file mode 100644
index 99a809136..000000000
--- "a/src/test/resources/metadata/edt/src/SettingsStorages/\320\245\321\200\320\260\320\275\320\270\320\273\320\270\321\211\320\265\320\235\320\260\321\201\321\202\321\200\320\276\320\265\320\2721/ManagerModule.bsl"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Styles/\320\241\321\202\320\270\320\273\321\214/Style.style" "b/src/test/resources/metadata/edt/src/Styles/\320\241\321\202\320\270\320\273\321\214/Style.style"
deleted file mode 100644
index fec5b93f0..000000000
--- "a/src/test/resources/metadata/edt/src/Styles/\320\241\321\202\320\270\320\273\321\214/Style.style"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Styles/\320\241\321\202\320\270\320\273\321\214/\320\241\321\202\320\270\320\273\321\214.mdo" "b/src/test/resources/metadata/edt/src/Styles/\320\241\321\202\320\270\320\273\321\214/\320\241\321\202\320\270\320\273\321\214.mdo"
deleted file mode 100644
index f9a477fa8..000000000
--- "a/src/test/resources/metadata/edt/src/Styles/\320\241\321\202\320\270\320\273\321\214/\320\241\321\202\320\270\320\273\321\214.mdo"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
- Стиль
-
- ru
- Стиль
-
-
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/CommandInterface.cmi" "b/src/test/resources/metadata/edt/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/CommandInterface.cmi"
deleted file mode 100644
index 113d92462..000000000
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\222\321\202\320\276\321\200\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/CommandInterface.cmi"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
deleted file mode 100644
index 33eddb60c..000000000
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- ПодчиненнаяПодсистема
-
- ru
- Подчиненная подсистема
-
- true
- true
- Catalog.Справочник1
- DataProcessor.Обработка1
- Subsystem.ПерваяПодсистема
-
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/CommandInterface.cmi" "b/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/CommandInterface.cmi"
deleted file mode 100644
index 113d92462..000000000
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/CommandInterface.cmi"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/CommandInterface.cmi" "b/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/CommandInterface.cmi"
deleted file mode 100644
index 113d92462..000000000
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2603\320\243\321\200\320\276\320\262\320\275\321\217/CommandInterface.cmi"
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo" "b/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
deleted file mode 100644
index 9b584fbd2..000000000
--- "a/src/test/resources/metadata/edt/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
- ПочиненнаяСистема2
-
- ru
- Починенная система2
-
- true
- true
- ChartOfAccounts.ПланСчетов1
- BusinessProcess.БизнесПроцесс1
- ПодчиненнаяПодсистема3Уровня
- Subsystem.ПерваяПодсистема
-
diff --git "a/src/test/resources/metadata/edt/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl" "b/src/test/resources/metadata/edt/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
deleted file mode 100644
index ec2862432..000000000
--- "a/src/test/resources/metadata/edt/src/WebServices/Web\320\241\320\265\321\200\320\262\320\270\321\2011/Module.bsl"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-Функция Операция1()
- // Вставить содержимое обработчика.
-КонецФункции
-
-Функция Операция11()
- // Вставить содержимое обработчика.
-КонецФункции
diff --git a/src/test/resources/metadata/edt2/.project b/src/test/resources/metadata/edt2/.project
deleted file mode 100644
index 6e1c8b063..000000000
--- a/src/test/resources/metadata/edt2/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- edt
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextBuilder
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextNature
- com._1c.g5.v8.dt.core.V8ConfigurationNature
-
-
diff --git a/src/test/resources/metadata/edt_3_18/.project b/src/test/resources/metadata/edt_3_18/.project
deleted file mode 100644
index 80a8614c5..000000000
--- a/src/test/resources/metadata/edt_3_18/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- edt2
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextBuilder
-
-
-
-
-
- com._1c.g5.v8.dt.core.V8ConfigurationNature
- org.eclipse.xtext.ui.shared.xtextNature
-
-
diff --git a/src/test/resources/metadata/edt_3_18/DT-INF/PROJECT.PMF b/src/test/resources/metadata/edt_3_18/DT-INF/PROJECT.PMF
deleted file mode 100644
index 2d8afcb9d..000000000
--- a/src/test/resources/metadata/edt_3_18/DT-INF/PROJECT.PMF
+++ /dev/null
@@ -1,2 +0,0 @@
-Runtime-Version: 8.3.18
-Manifest-Version: 1.0
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index c0920b153..000000000
--- "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
- Код
- 1
- true
- true
-
- true
-
-
-
- Объект.Code
-
-
-
- КодРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Наименование
- 4
- true
- true
-
- true
-
-
-
- Объект.Description
-
-
-
- НаименованиеРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 7
- true
- true
-
- true
-
-
-
- Объект.Реквизит1
-
-
-
- Реквизит1РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- FillCheckProcessingAtServer
- ОбработкаПроверкиЗаполненияНаСервере
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- CatalogObject.Справочник1
-
-
- true
-
-
- true
-
- true
- true
-
-
-
-
-
-
-
- BeforeWrite
- ПередЗаписью
-
-
- BeforeWriteAtServer
- ПередЗаписьюНаСервере
-
-
-
diff --git "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index 37402b014..000000000
--- "a/src/test/resources/metadata/edt_3_18/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\272\320\221\320\265\320\267\320\241\320\270\320\275\320\276\320\275\320\270\320\274\320\260/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
- Код
- 1
- true
- true
-
- true
-
-
-
- Объект.Code
-
-
-
- КодРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Наименование
- 4
- true
- true
-
- true
-
-
-
- Объект.Description
-
-
-
- НаименованиеРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Команда1
- 7
- true
- true
-
- true
-
-
- Команда1РасширеннаяПодсказка
- 8
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualButton
- Form.Command.Команда1
- Auto
- true
- true
- UserCmds
- Auto
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- OnCreateAtServer
- ПриСозданииНаСервере
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- CatalogObject.СправочникБезСинонима
-
-
- true
-
-
- true
-
- true
- true
-
-
- Команда1
- 1
-
-
-
- Команда1
-
-
- Auto
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme" "b/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
deleted file mode 100644
index 2000237bc..000000000
--- "a/src/test/resources/metadata/edt_3_18/src/CommonTemplates/\320\223\321\200\320\260\321\204\320\270\321\207\320\265\321\201\320\272\320\260\321\217\320\241\321\205\320\265\320\274\320\260/Template.scheme"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
- style:FieldBackColor
- true
- Lines
- 20
- 20
-
- 10
- 10
- 10
- 10
- false
- Auto
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index 59cfabc73..000000000
--- "a/src/test/resources/metadata/edt_3_18/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
- Номер
- 1
- true
- true
-
- true
-
-
-
- Объект.Number
-
-
-
- НомерРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 7
- true
- true
-
- true
-
-
-
- Объект.Реквизит1
-
-
-
- Реквизит1РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Дата
- 4
- true
- true
-
- true
-
-
-
- Объект.Date
-
-
-
- ДатаРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- OnCreateAtServer
- ПриСозданииНаСервере
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- DocumentObject.Документ1
-
-
- true
-
-
- true
-
-
- Объект.RegisterRecords
-
- true
- true
-
-
-
-
-
-
- true
-
-
diff --git a/src/test/resources/metadata/edt_ext/.project b/src/test/resources/metadata/edt_ext/.project
deleted file mode 100644
index c8820149e..000000000
--- a/src/test/resources/metadata/edt_ext/.project
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
- edt_ext
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextBuilder
-
-
-
-
-
- org.eclipse.xtext.ui.shared.xtextNature
- com._1c.g5.v8.dt.core.V8ExtensionNature
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/BaseForm/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/BaseForm/Form.form"
deleted file mode 100644
index d6cd761dd..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/BaseForm/Form.form"
+++ /dev/null
@@ -1,639 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
deleted file mode 100644
index d6cd761dd..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
+++ /dev/null
@@ -1,639 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/BaseForm/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/BaseForm/Form.form"
deleted file mode 100644
index 8b44e2196..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/BaseForm/Form.form"
+++ /dev/null
@@ -1,637 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index 8b44e2196..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,637 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/BaseForm/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/BaseForm/Form.form"
deleted file mode 100644
index a6dbebbd2..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/BaseForm/Form.form"
+++ /dev/null
@@ -1,438 +0,0 @@
-
-
-
- Ссылка
- 1
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Код
- 4
- true
- true
-
- true
-
-
- КодРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Наименование
- 7
- true
- true
-
- true
-
-
- НаименованиеРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ПометкаУдаления
- 10
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- Предопределенный
- 13
- true
- true
-
- true
-
-
- ПредопределенныйРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 16
- true
- true
-
- true
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 19
- true
- true
-
- true
-
-
- 1/0:3d9083e0-ec15-4758-8a00-4e6391dbab33
-
-
- Реквизит1РасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 22
- true
- true
-
- true
-
-
- 1/0:7e7cb901-559b-41ad-8de3-059a02b0ea05
-
-
- Реквизит2РасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 25
- true
- true
-
- true
-
-
- 1/0:a20ec92d-fdcf-43e8-88af-d45ac395c01d
-
-
- Реквизит3РасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index a6dbebbd2..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,438 +0,0 @@
-
-
-
- Ссылка
- 1
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Код
- 4
- true
- true
-
- true
-
-
- КодРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Наименование
- 7
- true
- true
-
- true
-
-
- НаименованиеРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ПометкаУдаления
- 10
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- Предопределенный
- 13
- true
- true
-
- true
-
-
- ПредопределенныйРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 16
- true
- true
-
- true
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 19
- true
- true
-
- true
-
-
- 1/0:3d9083e0-ec15-4758-8a00-4e6391dbab33
-
-
- Реквизит1РасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 22
- true
- true
-
- true
-
-
- 1/0:7e7cb901-559b-41ad-8de3-059a02b0ea05
-
-
- Реквизит2РасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 25
- true
- true
-
- true
-
-
- 1/0:a20ec92d-fdcf-43e8-88af-d45ac395c01d
-
-
- Реквизит3РасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
deleted file mode 100644
index 326a88707..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Commands/\320\232\320\276\320\274\320\260\320\275\320\264\320\2601/CommandModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-
-&НаКлиенте
-Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
- //Вставить содержимое обработчика.
- //ПараметрыФормы = Новый Структура("", );
- //ОткрытьФорму("Справочник.Справочник1.ФормаСписка", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
deleted file mode 100644
index ee001b114..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
+++ /dev/null
@@ -1,691 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
-
- Список.Description
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- Список.Code
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- Список.Predefined
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- Список.PredefinedDataName
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Catalog.Справочник2
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
deleted file mode 100644
index e6d5d434a..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ВнешнееСобытие(Источник, Событие, Данные)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index e119b70a7..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,689 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Наименование
- 19
- true
- true
-
- true
-
-
- Список.Description
-
- true
-
- НаименованиеРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Код
- 22
- true
- true
-
- true
-
-
- Список.Code
-
-
- КодРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- ПометкаУдаления
- 25
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Предопределенный
- 28
- true
- true
-
- true
-
-
- Список.Predefined
-
-
- ПредопределенныйРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 31
- true
- true
-
- true
-
-
- Список.PredefinedDataName
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит1
- 34
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 37
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 40
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 42
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 41
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Catalog.Справочник2
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index d0ea56eb8..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2722/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,472 +0,0 @@
-
-
-
- Ссылка
- 1
- true
- true
-
- true
-
-
- Объект.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Код
- 4
- true
- true
-
- true
-
-
- Объект.Code
-
-
- КодРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КодКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Наименование
- 7
- true
- true
-
- true
-
-
- Объект.Description
-
-
- НаименованиеРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НаименованиеКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ПометкаУдаления
- 10
- true
- true
-
- true
-
-
- Объект.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- Предопределенный
- 13
- true
- true
-
- true
-
-
- Объект.Predefined
-
-
- ПредопределенныйРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредопределенныйКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
- ИмяПредопределенныхДанных
- 16
- true
- true
-
- true
-
-
- Объект.PredefinedDataName
-
-
- ИмяПредопределенныхДанныхРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПредопределенныхДанныхКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 19
- true
- true
-
- true
-
-
- Объект.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 22
- true
- true
-
- true
-
-
- Объект.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 25
- true
- true
-
- true
-
-
- Объект.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- EnterOnInput
- true
- Left
- true
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- CatalogObject.Справочник2
-
-
- true
-
-
- true
-
- true
- true
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl" "b/src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
deleted file mode 100644
index d81095b3c..000000000
--- "a/src/test/resources/metadata/edt_ext/src/CommonCommands/\320\236\320\261\321\211\320\260\321\217\320\232\320\276\320\274\320\260\320\275\320\264\320\2602/CommandModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-
-&НаКлиенте
-Процедура ОбработкаКоманды(ПараметрКоманды, ПараметрыВыполненияКоманды)
- //Вставить содержимое обработчика.
- //ПараметрыФормы = Новый Структура("", );
- //ОткрытьФорму("ОбщаяФорма.", ПараметрыФормы, ПараметрыВыполненияКоманды.Источник, ПараметрыВыполненияКоманды.Уникальность, ПараметрыВыполненияКоманды.Окно, ПараметрыВыполненияКоманды.НавигационнаяСсылка);
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
deleted file mode 100644
index 327711804..000000000
--- "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\260/Form.form"
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Form.form" "b/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Form.form"
deleted file mode 100644
index d8d8ecd26..000000000
--- "a/src/test/resources/metadata/edt_ext/src/CommonForms/\320\244\320\276\321\200\320\274\320\2601/Form.form"
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Module.bsl" "b/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Module.bsl"
deleted file mode 100644
index 1a50b1d30..000000000
--- "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\214\320\237\320\276\320\262\321\202\320\230\321\201\320\277\320\241\320\265\320\260\320\275\321\2011/Module.bsl"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-Процедура ПодпискаНаСобытие1ПередЗаписью(Источник, Отказ) Экспорт
- // Вставить содержимое обработчика.
-КонецПроцедуры
-
-Процедура РегламентноеЗадание1() Экспорт
- // Вставить содержимое обработчика.
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl" "b/src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
deleted file mode 100644
index 1a50b1d30..000000000
--- "a/src/test/resources/metadata/edt_ext/src/CommonModules/\320\237\321\200\320\276\321\201\321\202\320\276\320\271\320\236\320\261\321\211\320\270\320\271\320\234\320\276\320\264\321\203\320\273\321\2141/Module.bsl"
+++ /dev/null
@@ -1,8 +0,0 @@
-
-Процедура ПодпискаНаСобытие1ПередЗаписью(Источник, Отказ) Экспорт
- // Вставить содержимое обработчика.
-КонецПроцедуры
-
-Процедура РегламентноеЗадание1() Экспорт
- // Вставить содержимое обработчика.
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx" "b/src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
deleted file mode 100644
index 7eb28ca52..000000000
--- "a/src/test/resources/metadata/edt_ext/src/CommonTemplates/\320\234\320\260\320\272\320\265\321\202/Template.mxlx"
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 0
-
-
- 0
-
- true
-
-
- 1
- 0
-
- 72
-
-
-
- 0
-
-
- 0
-
- true
-
-
- 1
- 0
-
- 72
-
-
- Merge
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Forms/\320\240\320\260\321\201\321\210_\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Forms/\320\240\320\260\321\201\321\210_\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 992a40cc3..000000000
--- "a/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Forms/\320\240\320\260\321\201\321\210_\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- b21213f9-c255-440e-9609-7fa2f29cdcfe
-
-
- Normal
- f930c6b3-1cdf-4095-8718-dbfaed2b20dd
-
-
- Normal
- 29b96c18-4680-4b04-ab38-7f488787649a
-
- Normal
- 145ddfcc-e61c-4b3e-8fb1-16cbd47cc95e
-
diff --git "a/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Forms/\320\240\320\260\321\201\321\210_\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Forms/\320\240\320\260\321\201\321\210_\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index 18de15dc4..000000000
--- "a/src/test/resources/metadata/edt_ext/src/DocumentJournals/\320\226\321\203\321\200\320\275\320\260\320\273\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\276\320\2621/Forms/\320\240\320\260\321\201\321\210_\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,376 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- User settings group
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Дата
- 16
- true
- true
-
- true
-
-
- Список.Дата
-
- true
-
- ДатаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Тип
- 19
- true
- true
-
- true
-
-
- Список.Тип
-
-
- ТипРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТипКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- HierarchicalList
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- true
- true
- true
- true
- AsFileRef
-
- Список.СтандартнаяКартинка
-
-
- 60
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- DocumentJournal.ЖурналДокументов1
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/BaseForm/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/BaseForm/Form.form"
deleted file mode 100644
index bc77c043c..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/BaseForm/Form.form"
+++ /dev/null
@@ -1,599 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
deleted file mode 100644
index bc77c043c..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
+++ /dev/null
@@ -1,599 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/BaseForm/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/BaseForm/Form.form"
deleted file mode 100644
index 2f6776f6c..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/BaseForm/Form.form"
+++ /dev/null
@@ -1,600 +0,0 @@
-
-
-
- Номер
- 1
- true
- true
-
- true
-
-
- НомерРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Дата
- 4
- true
- true
-
- true
-
-
- ДатаРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 7
- true
- true
-
- true
-
-
- 1/0:a65beab2-02d0-45f6-9949-b1f65ca3ee34
-
-
- Реквизит1РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 10
- true
- true
-
- true
-
-
- 1/0:dcfa8e98-0e49-4aef-9d73-38f76146143a
-
-
- Реквизит2РасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 13
- true
- true
-
- true
-
-
- 1/0:4dc44f3c-d5a6-4e10-ab84-542705ca7ad0
-
-
- Реквизит3РасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1
- 16
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9
-
- None
-
- ТабличнаяЧасть1НомерСтроки
- 29
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9/-2
-
-
- ТабличнаяЧасть1НомерСтрокиРасширеннаяПодсказка
- 31
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1НомерСтрокиКонтекстноеМеню
- 30
- true
- true
-
- true
-
- true
-
- LabelField
- EnterOnInput
- true
- Left
- true
-
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит1
- 32
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9/0:f5fa6ecd-0ad1-4f8e-b6d6-b3ac6fbd2d61
-
-
- ТабличнаяЧасть1Реквизит1РасширеннаяПодсказка
- 34
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит1КонтекстноеМеню
- 33
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит2
- 35
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9/0:05d894be-afb7-4857-95a8-69bf212c9b9d
-
-
- ТабличнаяЧасть1Реквизит2РасширеннаяПодсказка
- 37
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит2КонтекстноеМеню
- 36
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1КоманднаяПанель
- 18
- true
- true
-
- true
-
- Left
- true
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СтрокаПоиска
- 20
-
- ТабличнаяЧасть1СтрокаПоискаРасширеннаяПодсказка
- 22
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СтрокаПоискаКонтекстноеМеню
- 21
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СостояниеПросмотра
- 23
-
- ТабличнаяЧасть1СостояниеПросмотраРасширеннаяПодсказка
- 25
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СостояниеПросмотраКонтекстноеМеню
- 24
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1УправлениеПоиском
- 26
-
- ТабличнаяЧасть1УправлениеПоискомРасширеннаяПодсказка
- 28
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1УправлениеПоискомКонтекстноеМеню
- 27
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ТабличнаяЧасть1РасширеннаяПодсказка
- 19
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1КонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- true
- true
- true
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index 2f6776f6c..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,600 +0,0 @@
-
-
-
- Номер
- 1
- true
- true
-
- true
-
-
- НомерРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Дата
- 4
- true
- true
-
- true
-
-
- ДатаРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 7
- true
- true
-
- true
-
-
- 1/0:a65beab2-02d0-45f6-9949-b1f65ca3ee34
-
-
- Реквизит1РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 10
- true
- true
-
- true
-
-
- 1/0:dcfa8e98-0e49-4aef-9d73-38f76146143a
-
-
- Реквизит2РасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 13
- true
- true
-
- true
-
-
- 1/0:4dc44f3c-d5a6-4e10-ab84-542705ca7ad0
-
-
- Реквизит3РасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1
- 16
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9
-
- None
-
- ТабличнаяЧасть1НомерСтроки
- 29
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9/-2
-
-
- ТабличнаяЧасть1НомерСтрокиРасширеннаяПодсказка
- 31
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1НомерСтрокиКонтекстноеМеню
- 30
- true
- true
-
- true
-
- true
-
- LabelField
- EnterOnInput
- true
- Left
- true
-
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит1
- 32
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9/0:f5fa6ecd-0ad1-4f8e-b6d6-b3ac6fbd2d61
-
-
- ТабличнаяЧасть1Реквизит1РасширеннаяПодсказка
- 34
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит1КонтекстноеМеню
- 33
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит2
- 35
- true
- true
-
- true
-
-
- 1/0:e2581b9c-6bf0-4500-963b-1fb6377034b9/0:05d894be-afb7-4857-95a8-69bf212c9b9d
-
-
- ТабличнаяЧасть1Реквизит2РасширеннаяПодсказка
- 37
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит2КонтекстноеМеню
- 36
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1КоманднаяПанель
- 18
- true
- true
-
- true
-
- Left
- true
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СтрокаПоиска
- 20
-
- ТабличнаяЧасть1СтрокаПоискаРасширеннаяПодсказка
- 22
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СтрокаПоискаКонтекстноеМеню
- 21
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СостояниеПросмотра
- 23
-
- ТабличнаяЧасть1СостояниеПросмотраРасширеннаяПодсказка
- 25
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СостояниеПросмотраКонтекстноеМеню
- 24
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1УправлениеПоиском
- 26
-
- ТабличнаяЧасть1УправлениеПоискомРасширеннаяПодсказка
- 28
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1УправлениеПоискомКонтекстноеМеню
- 27
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ТабличнаяЧасть1РасширеннаяПодсказка
- 19
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1КонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- true
- true
- true
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/BaseForm/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/BaseForm/Form.form"
deleted file mode 100644
index 784786815..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/BaseForm/Form.form"
+++ /dev/null
@@ -1,597 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index 784786815..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,597 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- 10000000
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Module.bsl"
deleted file mode 100644
index e69de29bb..000000000
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
deleted file mode 100644
index e172658d9..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Form.form"
+++ /dev/null
@@ -1,648 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
-
- Список.Date
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- Список.Number
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- Список.Posted
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- LockOwnerWindow
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Document.Документ2
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
deleted file mode 100644
index 3de4814ef..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Form.form"
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
- Номер
- 1
- true
- true
-
- true
-
-
- Объект.Number
-
-
- НомерРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Дата
- 4
- true
- true
-
- true
-
-
- Объект.Date
-
-
- ДатаРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит1
- 7
- true
- true
-
- true
-
-
- Объект.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит2
- 10
- true
- true
-
- true
-
-
- Объект.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Реквизит3
- 13
- true
- true
-
- true
-
-
- Объект.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1
- 16
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1
-
- None
-
- ТабличнаяЧасть1НомерСтроки
- 29
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1.LineNumber
-
-
- ТабличнаяЧасть1НомерСтрокиРасширеннаяПодсказка
- 31
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1НомерСтрокиКонтекстноеМеню
- 30
- true
- true
-
- true
-
- true
-
- LabelField
- EnterOnInput
- true
- Left
- true
-
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит1
- 32
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1.Реквизит1
-
-
- ТабличнаяЧасть1Реквизит1РасширеннаяПодсказка
- 34
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит1КонтекстноеМеню
- 33
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1Реквизит2
- 35
- true
- true
-
- true
-
-
- Объект.ТабличнаяЧасть1.Реквизит2
-
-
- ТабличнаяЧасть1Реквизит2РасширеннаяПодсказка
- 37
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1Реквизит2КонтекстноеМеню
- 36
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТабличнаяЧасть1КоманднаяПанель
- 18
- true
- true
-
- true
-
- Left
- true
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СтрокаПоиска
- 20
-
- ТабличнаяЧасть1СтрокаПоискаРасширеннаяПодсказка
- 22
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СтрокаПоискаКонтекстноеМеню
- 21
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1СостояниеПросмотра
- 23
-
- ТабличнаяЧасть1СостояниеПросмотраРасширеннаяПодсказка
- 25
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1СостояниеПросмотраКонтекстноеМеню
- 24
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- ТабличнаяЧасть1УправлениеПоиском
- 26
-
- ТабличнаяЧасть1УправлениеПоискомРасширеннаяПодсказка
- 28
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1УправлениеПоискомКонтекстноеМеню
- 27
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ТабличнаяЧасть1РасширеннаяПодсказка
- 19
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТабличнаяЧасть1КонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- true
- true
- true
- true
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- DocumentObject.Документ2
-
-
- true
-
-
- true
-
-
- Объект.RegisterRecords
-
- true
- true
-
-
-
-
-
-
- true
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
deleted file mode 100644
index 33136072e..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Attributes/\320\241\320\277\320\270\321\201\320\276\320\272/ExtInfo/ListSettings.dcss"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- Normal
- dfcece9d-5077-440b-b6b3-45a5cb4538eb
-
-
- Normal
- 88619765-ccb3-46c6-ac52-38e9c992ebd4
-
-
- Normal
- b75fecce-942b-4aed-abc9-e6a02e460fb3
-
- Normal
- 911b6018-f537-43e8-a417-da56b22f9aec
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form" "b/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
deleted file mode 100644
index b7964b509..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2022/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Form.form"
+++ /dev/null
@@ -1,646 +0,0 @@
-
-
-
- СписокКомпоновщикНастроекПользовательскиеНастройки
- 1
- true
- true
-
- true
-
-
- ru
- Группа пользовательских настроек
-
- false
-
- СписокКомпоновщикНастроекПользовательскиеНастройкиРасширеннаяПодсказка
- 2
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- Vertical
- WeakSeparation
- true
- true
- Auto
- DontUse
-
-
-
- Список
- 3
- true
- true
-
- true
-
-
- Список
-
- true
- None
-
- Ссылка
- 16
- true
- true
-
- true
-
-
- Список.Ref
-
-
- СсылкаРасширеннаяПодсказка
- 18
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СсылкаКонтекстноеМеню
- 17
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Дата
- 19
- true
- true
-
- true
-
-
- Список.Date
-
- true
-
- ДатаРасширеннаяПодсказка
- 21
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 20
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Номер
- 22
- true
- true
-
- true
-
-
- Список.Number
-
-
- НомерРасширеннаяПодсказка
- 24
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 23
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Проведен
- 25
- true
- true
-
- true
-
-
- Список.Posted
-
-
- ПроведенРасширеннаяПодсказка
- 27
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПроведенКонтекстноеМеню
- 26
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- ПометкаУдаления
- 28
- true
- true
-
- true
-
-
- Список.DeletionMark
-
-
- ПометкаУдаленияРасширеннаяПодсказка
- 30
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПометкаУдаленияКонтекстноеМеню
- 29
- true
- true
-
- true
-
- true
-
- CheckBoxField
- Enter
- true
- Left
- true
-
-
-
- Реквизит1
- 31
- true
- true
-
- true
-
-
- Список.Реквизит1
-
-
- Реквизит1РасширеннаяПодсказка
- 33
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит1КонтекстноеМеню
- 32
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит2
- 34
- true
- true
-
- true
-
-
- Список.Реквизит2
-
-
- Реквизит2РасширеннаяПодсказка
- 36
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит2КонтекстноеМеню
- 35
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
-
- Реквизит3
- 37
- true
- true
-
- true
-
-
- Список.Реквизит3
-
-
- Реквизит3РасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Реквизит3КонтекстноеМеню
- 38
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
-
- true
- true
-
-
- None
-
- СписокКоманднаяПанель
- 5
- true
- true
-
- true
-
- Left
-
-
- true
- true
-
- true
-
- СписокСтрокаПоиска
- 7
-
- СписокСтрокаПоискаРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСтрокаПоискаКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- СписокСостояниеПросмотра
- 10
-
- СписокСостояниеПросмотраРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокСостояниеПросмотраКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
- Left
-
-
-
- true
- true
-
- true
-
- СписокУправлениеПоиском
- 13
-
- СписокУправлениеПоискомРасширеннаяПодсказка
- 15
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокУправлениеПоискомКонтекстноеМеню
- 14
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- СписокРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СписокКонтекстноеМеню
- 4
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- Auto
- ExpandTopLevel
- true
- true
- true
-
- Список.DefaultPicture
-
-
- 60
-
- 0001-01-01T00:00:00
- 0001-01-01T00:00:00
-
-
- true
- СписокКомпоновщикНастроекПользовательскиеНастройки
-
-
-
-
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Список
- 1
-
- DynamicList
-
-
- true
-
-
- true
-
- true
-
- Document.Документ2
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
deleted file mode 100644
index 4b49958a3..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- ПодчиненнаяПодсистема
- Adopted
-
- true
- true
- Subsystem.ПерваяПодсистема
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo" "b/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
deleted file mode 100644
index f3b49e065..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
- ПочиненнаяСистема2
- Adopted
-
- true
- true
- Subsystem.ПерваяПодсистема
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo" "b/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
deleted file mode 100644
index 34ae48057..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260/\320\237\320\276\320\264\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\260.mdo"
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- ПодчиненнаяПодсистема
-
- ru
- Подчиненная подсистема
-
- true
- true
- Catalog.Справочник1
- DataProcessor.Обработка1
- Subsystem.ПерваяПодсистема1
-
diff --git "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo" "b/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
deleted file mode 100644
index bc2f1af9b..000000000
--- "a/src/test/resources/metadata/edt_ext/src/Subsystems/\320\237\320\265\321\200\320\262\320\260\321\217\320\237\320\276\320\264\321\201\320\270\321\201\321\202\320\265\320\274\320\2601/Subsystems/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602/\320\237\320\276\321\207\320\270\320\275\320\265\320\275\320\275\320\260\321\217\320\241\320\270\321\201\321\202\320\265\320\274\320\2602.mdo"
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- ПочиненнаяСистема2
-
- ru
- Починенная система2
-
- true
- true
- ChartOfAccounts.ПланСчетов1
- BusinessProcess.БизнесПроцесс1
- Subsystem.ПерваяПодсистема1
-
diff --git a/src/test/resources/metadata/formdata/dynamic_list/edt/Form.form b/src/test/resources/metadata/formdata/dynamic_list/edt/Form.form
deleted file mode 100644
index a3305add0..000000000
--- a/src/test/resources/metadata/formdata/dynamic_list/edt/Form.form
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
- true
- true
- Vertical
- true
- true
- true
- true
- true
-
- Объект
- 1
-
- DataProcessorObject.МояОбработка2
- DataProcessorObject.МояОбработка1
-
-
- true
-
-
- true
-
- true
-
-
- МойСписок
-
- ru
- Мой список
-
- 2
-
- DynamicList
-
-
- true
-
-
- true
-
-
- ВЫБРАТЬ
- МойСправочник.Ссылка КАК Ссылка,
- МойСправочник.ВерсияДанных КАК ВерсияДанных,
- МойСправочник.ПометкаУдаления КАК ПометкаУдаления,
- МойСправочник.Код КАК Код,
- МойСправочник.Наименование КАК Наименование,
- МойСправочник.Предопределенный КАК Предопределенный,
- МойСправочник.ИмяПредопределенныхДанных КАК ИмяПредопределенныхДанных
-ИЗ
- Справочник.МойСправочник КАК МойСправочник
- Catalog.МойСправочник
- true
- true
- true
- true
-
-
-
-
-
-
-
-
diff --git a/src/test/resources/metadata/formdata/dynamic_list/original/Form.xml b/src/test/resources/metadata/formdata/dynamic_list/original/Form.xml
deleted file mode 100644
index 69af02c58..000000000
--- a/src/test/resources/metadata/formdata/dynamic_list/original/Form.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/test/resources/metadata/formdata/edt/multiDataPath/Form.form b/src/test/resources/metadata/formdata/edt/multiDataPath/Form.form
deleted file mode 100644
index 6c8deed6b..000000000
--- a/src/test/resources/metadata/formdata/edt/multiDataPath/Form.form
+++ /dev/null
@@ -1,2810 +0,0 @@
-
-
-
- ГруппаНомерДата
- 38
-
- Номер
- 1
- true
- true
-
- true
-
-
- Объект.Номер
-
-
- НомерРасширеннаяПодсказка
- 3
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- НомерКонтекстноеМеню
- 2
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Дата
- 4
- true
- true
-
- true
-
-
- Объект.Дата
-
-
- ДатаРасширеннаяПодсказка
- 6
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 5
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- false
- true
- true
- true
- true
-
-
- true
- true
-
- true
-
-
- ru
- Группа номер дата
-
-
- ГруппаНомерДатаРасширеннаяПодсказка
- 39
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- AlwaysHorizontal
- true
- true
- Auto
- Auto
-
-
-
- ГруппаОрганизацияБлок
- 40
-
- Организация
- 7
- true
- true
-
- true
-
-
- Объект.Организация
-
-
- ОрганизацияРасширеннаяПодсказка
- 9
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ОрганизацияКонтекстноеМеню
- 8
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатель
- 10
- true
- true
-
- true
-
-
- Объект.Показатель
-
-
- OnChange
- ПоказательПриИзменении
-
-
- ПоказательРасширеннаяПодсказка
- 12
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПоказательКонтекстноеМеню
- 11
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
-
- StartChoice
- ПоказательНачалоВыбора
-
- true
- true
- true
- true
- true
- true
-
-
- true
- true
-
- true
-
-
- ru
- Группа организация блок
-
-
- ГруппаОрганизацияБлокРасширеннаяПодсказка
- 41
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- AlwaysHorizontal
- true
- true
- Auto
- Auto
-
-
-
- ГруппаСтраниц
- 186
-
- ГруппаКорпоративнойОтчетности
- 190
-
- ДеревоОбъектов
- 97
- true
- true
-
- true
-
-
- ДеревоОбъектов
-
- None
- Copy
-
- ГруппаПоказателя
- 153
-
- ДеревоОбъектовОбъектРасходов
- 113
- true
- true
-
- true
-
-
- 1
-
- ДеревоОбъектов.ОбъектРасходов
-
-
- ДеревоОбъектов.ОбъектРасходов
-
-
-
- ДеревоОбъектовОбъектРасходовРасширеннаяПодсказка
- 115
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовОбъектРасходовКонтекстноеМеню
- 114
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
- Отбор.Владелец
-
- Items.ДеревоОбъектов.CurrentData.Показатель
-
-
-
- Отбор.Организация
-
- Объект.Организация
-
-
-
-
-
- ДеревоОбъектовПредставлениеПоказателя
- 150
- true
- true
-
- true
-
-
- ДеревоОбъектов.ПредставлениеПоказателя
-
-
- ДеревоОбъектовПредставлениеПоказателяРасширеннаяПодсказка
- 152
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовПредставлениеПоказателяКонтекстноеМеню
- 151
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ГруппаКатегорияПоказателя
- 68
- true
- true
-
- true
-
-
- ru
- Категория показателя
-
- true
-
- ГруппаКатегорияПоказателяРасширеннаяПодсказка
- 69
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
- true
-
-
- true
- true
-
- true
-
-
- ru
- Показатель
-
-
- ГруппаПоказателяРасширеннаяПодсказка
- 154
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- InCell
- true
- true
-
-
-
- ГруппаЗначенийРасходов
- 134
-
- ГруппаЗначение_1
- 79
- true
- true
-
- true
-
-
- ГруппаЗначение_1РасширеннаяПодсказка
- 80
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
-
-
-
- ДеревоОбъектовТипПервойКолонкиЗначений
- 147
- true
- true
-
- true
-
-
- ДеревоОбъектов.ТипПервойКолонкиЗначений
-
-
- ДеревоОбъектовТипПервойКолонкиЗначенийРасширеннаяПодсказка
- 149
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовТипПервойКолонкиЗначенийКонтекстноеМеню
- 148
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ГруппаЗначение_2
- 89
- true
- true
-
- true
-
-
- ГруппаЗначение_2РасширеннаяПодсказка
- 90
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
-
-
-
- ДеревоОбъектовТипВторойКолонкиЗначений
- 144
- true
- true
-
- true
-
-
- ДеревоОбъектов.ТипВторойКолонкиЗначений
-
-
- ДеревоОбъектовТипВторойКолонкиЗначенийРасширеннаяПодсказка
- 146
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовТипВторойКолонкиЗначенийКонтекстноеМеню
- 145
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
- true
- true
-
- true
-
-
- ru
- Значения (тыс. руб.)
-
-
- ГруппаЗначенийРасходовРасширеннаяПодсказка
- 135
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- true
- true
-
-
-
- ДеревоОбъектовКоманднаяПанель
- 98
-
- ДеревоОбъектовДобавить
- 155
- true
- true
-
- true
-
-
- ДеревоОбъектовДобавитьРасширеннаяПодсказка
- 156
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Item.ДеревоОбъектов.StandardCommand.Add
- Auto
- true
- true
- UserCmds
- Auto
-
-
- ДеревоОбъектовПереместитьВверх
- 157
- true
- true
-
- true
-
-
- ДеревоОбъектовПереместитьВверхРасширеннаяПодсказка
- 158
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Item.ДеревоОбъектов.StandardCommand.MoveUp
- Auto
- true
- true
- UserCmds
- Auto
-
-
- ДеревоОбъектовПереместитьВниз
- 159
- true
- true
-
- true
-
-
- ДеревоОбъектовПереместитьВнизРасширеннаяПодсказка
- 160
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Item.ДеревоОбъектов.StandardCommand.MoveDown
- Auto
- true
- true
- UserCmds
- Auto
-
- true
- true
-
- true
-
- Left
- true
-
-
- ChoiceProcessing
- ДеревоОбъектовОбработкаВыбора
-
-
- OnActivateRow
- ДеревоОбъектовПриАктивизацииСтроки
-
-
- BeforeAddRow
- ДеревоОбъектовПередНачаломДобавления
-
-
- BeforeDeleteRow
- ДеревоОбъектовПередУдалением
-
-
- true
- true
-
- true
-
- ДеревоОбъектовСтрокаПоиска
- 101
-
- ДеревоОбъектовСтрокаПоискаРасширеннаяПодсказка
- 103
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовСтрокаПоискаКонтекстноеМеню
- 102
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ДеревоОбъектовСостояниеПросмотра
- 107
-
- ДеревоОбъектовСостояниеПросмотраРасширеннаяПодсказка
- 109
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовСостояниеПросмотраКонтекстноеМеню
- 108
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
-
-
-
- true
- true
-
- true
-
- ДеревоОбъектовУправлениеПоиском
- 104
-
- ДеревоОбъектовУправлениеПоискомРасширеннаяПодсказка
- 106
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовУправлениеПоискомКонтекстноеМеню
- 105
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ДеревоОбъектовРасширеннаяПодсказка
- 100
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДеревоОбъектовКонтекстноеМеню
- 99
- true
- true
-
- true
-
- true
-
- Tree
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- Auto
- Auto
- true
- true
- AsFileRef
-
- true
- true
-
- true
-
-
- ru
- Корпоративная отчетность
-
-
- ГруппаКорпоративнойОтчетностиРасширеннаяПодсказка
- 191
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Page
-
- Vertical
- true
-
-
-
- ГруппаГосударственнойОтчетности
- 188
-
- ТаблицаОбъектов
- 192
- true
- true
-
- true
-
-
- ТаблицаОбъектов
-
- None
-
- ТаблицаОбъектовОбъектРасходов
- 208
- true
- true
-
- true
-
-
- 1
-
- ТаблицаОбъектов.ОбъектРасходов
-
-
- ТаблицаОбъектов.ОбъектРасходов
-
-
-
- ТаблицаОбъектовОбъектРасходовРасширеннаяПодсказка
- 210
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовОбъектРасходовКонтекстноеМеню
- 209
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТаблицаОбъектовИтогДляКорпОтчета
- 211
- true
- true
-
- true
-
-
- 1
-
- ТаблицаОбъектов.ИтогДляКорпОтчета
-
-
- ТаблицаОбъектов.ИтогДляКорпОтчета
-
-
-
- ТаблицаОбъектовИтогДляКорпОтчетаРасширеннаяПодсказка
- 213
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовИтогДляКорпОтчетаКонтекстноеМеню
- 212
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТаблицаОбъектовИтогДляГосОтчета
- 214
- true
- true
-
- true
-
-
- 1
-
- ТаблицаОбъектов.ИтогДляГосОтчета
-
-
- ТаблицаОбъектов.ИтогДляГосОтчета
-
-
-
- ТаблицаОбъектовИтогДляГосОтчетаРасширеннаяПодсказка
- 216
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовИтогДляГосОтчетаКонтекстноеМеню
- 215
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТаблицаОбъектовРазница
- 217
- true
- true
-
- true
-
-
- 1
-
- ТаблицаОбъектов.Разница
-
-
- ТаблицаОбъектов.Разница
-
-
-
- ТаблицаОбъектовРазницаРасширеннаяПодсказка
- 219
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовРазницаКонтекстноеМеню
- 218
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТаблицаОбъектовКомментарий
- 220
- true
- true
-
- true
-
-
- 1
-
- ТаблицаОбъектов.Комментарий
-
-
- ТаблицаОбъектов.Комментарий
-
-
-
- ТаблицаОбъектовКомментарийРасширеннаяПодсказка
- 222
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовКомментарийКонтекстноеМеню
- 221
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ТаблицаОбъектовКоманднаяПанель
- 193
-
- ТаблицаОбъектовОбновитьТаблицуОбъектов
- 248
- true
- true
-
- true
-
-
- ТаблицаОбъектовОбновитьТаблицуОбъектовРасширеннаяПодсказка
- 249
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ОбновитьТаблицуОбъектов
- Auto
- true
- true
- UserCmds
- Auto
-
- true
- true
-
- true
-
- Left
- true
-
-
- OnActivateRow
- ТаблицаОбъектовПриАктивизацииСтроки
-
-
- true
- true
-
- true
-
- ТаблицаОбъектовСтрокаПоиска
- 196
-
- ТаблицаОбъектовСтрокаПоискаРасширеннаяПодсказка
- 198
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовСтрокаПоискаКонтекстноеМеню
- 197
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ТаблицаОбъектовСостояниеПросмотра
- 202
-
- ТаблицаОбъектовСостояниеПросмотраРасширеннаяПодсказка
- 204
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовСостояниеПросмотраКонтекстноеМеню
- 203
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
-
-
-
- true
- true
-
- true
-
- ТаблицаОбъектовУправлениеПоиском
- 199
-
- ТаблицаОбъектовУправлениеПоискомРасширеннаяПодсказка
- 201
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовУправлениеПоискомКонтекстноеМеню
- 200
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ТаблицаОбъектовРасширеннаяПодсказка
- 195
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТаблицаОбъектовКонтекстноеМеню
- 194
- true
- true
-
- true
-
- true
-
- true
- true
- true
- Row
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- Auto
- Auto
- true
- true
- AsFileRef
-
-
- Показатели4ОС
- 223
- true
- true
-
- true
-
-
- Объект.Показатели4ОС
-
- None
-
- Показатели4ОСПоказатель
- 242
- true
- true
-
- true
-
-
- 1
-
- Объект.Показатели4ОС.Показатель
-
-
- Объект.Показатели4ОС.Показатель
-
-
-
- Показатели4ОСПоказательРасширеннаяПодсказка
- 244
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели4ОСПоказательКонтекстноеМеню
- 243
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели4ОСЗначение
- 245
- true
- true
-
- true
-
-
- 1
-
- Объект.Показатели4ОС.Значение
-
-
- Объект.Показатели4ОС.Значение
-
-
-
- OnChange
- Показатели4ОСЗначениеПриИзменении
-
-
- Показатели4ОСЗначениеРасширеннаяПодсказка
- 247
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели4ОСЗначениеКонтекстноеМеню
- 246
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели4ОСКоманднаяПанель
- 224
- true
- true
-
- true
-
- Left
- true
-
-
- OnStartEdit
- Показатели4ОСПриНачалеРедактирования
-
-
- true
- true
-
- true
-
- Показатели4ОССтрокаПоиска
- 227
-
- Показатели4ОССтрокаПоискаРасширеннаяПодсказка
- 229
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели4ОССтрокаПоискаКонтекстноеМеню
- 228
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- Показатели4ОССостояниеПросмотра
- 233
-
- Показатели4ОССостояниеПросмотраРасширеннаяПодсказка
- 235
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели4ОССостояниеПросмотраКонтекстноеМеню
- 234
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
-
-
-
- true
- true
-
- true
-
- Показатели4ОСУправлениеПоиском
- 230
-
- Показатели4ОСУправлениеПоискомРасширеннаяПодсказка
- 232
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели4ОСУправлениеПоискомКонтекстноеМеню
- 231
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- Показатели4ОСРасширеннаяПодсказка
- 226
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели4ОСКонтекстноеМеню
- 225
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- Auto
- Auto
- true
- true
- AsFileRef
-
-
- Показатели18КС
- 250
- true
- true
-
- true
-
-
- Объект.Показатели18КС
-
- None
-
- Показатели18КСПоказатель
- 269
- true
- true
-
- true
-
-
- 1
-
- Объект.Показатели18КС.Показатель
-
-
- Объект.Показатели18КС.Показатель
-
-
-
- OnChange
- Показатели18КСПоказательПриИзменении
-
-
- Показатели18КСПоказательРасширеннаяПодсказка
- 271
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСПоказательКонтекстноеМеню
- 270
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели18КСНомерСтрокиОтчета
- 278
- true
- true
-
- true
-
-
- Объект.Показатели18КС.НомерСтрокиОтчета
-
-
- Показатели18КСНомерСтрокиОтчетаРасширеннаяПодсказка
- 280
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСНомерСтрокиОтчетаКонтекстноеМеню
- 279
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели18КСЕдиницаИзмерения
- 281
- true
- true
-
- true
-
-
- Объект.Показатели18КС.ЕдиницаИзмерения
-
-
- Показатели18КСЕдиницаИзмеренияРасширеннаяПодсказка
- 283
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСЕдиницаИзмеренияКонтекстноеМеню
- 282
- true
- true
-
- true
-
- true
-
- InputField
- true
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели18КСИсточникСредств
- 272
- true
- true
-
- true
-
-
- 1
-
- Объект.Показатели18КС.ИсточникСредств
-
-
- Объект.Показатели18КС.ИсточникСредств
-
-
-
- Показатели18КСИсточникСредствРасширеннаяПодсказка
- 274
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСИсточникСредствКонтекстноеМеню
- 273
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели18КСВводМощностей
- 284
- true
- true
-
- true
-
-
- Объект.Показатели18КС.ВводМощностей
-
-
- Показатели18КСВводМощностейРасширеннаяПодсказка
- 286
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСВводМощностейКонтекстноеМеню
- 285
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели18КСЗначение
- 275
- true
- true
-
- true
-
-
- 1
-
- Объект.Показатели18КС.Значение
-
-
- Объект.Показатели18КС.Значение
-
-
-
- OnChange
- Показатели18КСЗначениеПриИзменении
-
-
- Показатели18КСЗначениеРасширеннаяПодсказка
- 277
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСЗначениеКонтекстноеМеню
- 276
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- Показатели18КСКоманднаяПанель
- 251
- true
- true
-
- true
-
- Left
- true
-
-
- OnStartEdit
- Показатели18КСПриНачалеРедактирования
-
-
- true
- true
-
- true
-
- Показатели18КССтрокаПоиска
- 254
-
- Показатели18КССтрокаПоискаРасширеннаяПодсказка
- 256
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КССтрокаПоискаКонтекстноеМеню
- 255
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- Показатели18КССостояниеПросмотра
- 260
-
- Показатели18КССостояниеПросмотраРасширеннаяПодсказка
- 262
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КССостояниеПросмотраКонтекстноеМеню
- 261
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
-
-
-
- true
- true
-
- true
-
- Показатели18КСУправлениеПоиском
- 257
-
- Показатели18КСУправлениеПоискомРасширеннаяПодсказка
- 259
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСУправлениеПоискомКонтекстноеМеню
- 258
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- Показатели18КСРасширеннаяПодсказка
- 253
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- Показатели18КСКонтекстноеМеню
- 252
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- Auto
- Auto
- true
- true
- AsFileRef
-
- true
- true
-
- true
-
-
- ru
- Государственная отчетность
-
-
- ГруппаГосударственнойОтчетностиРасширеннаяПодсказка
- 189
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Page
-
- Vertical
- true
-
-
- true
- true
-
- true
-
-
- ru
- Группа страниц
-
-
- ГруппаСтраницРасширеннаяПодсказка
- 187
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Pages
-
- TabsOnTop
- Auto
-
-
-
- Комментарий
- 44
- true
- true
-
- true
-
-
- Объект.Комментарий
-
-
- КомментарийРасширеннаяПодсказка
- 46
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КомментарийКонтекстноеМеню
- 45
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
-
- StartChoice
- КомментарийНачалоВыбора
-
- true
- true
- true
- true
- true
- true
-
-
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
- true
-
-
- OnCreateAtServer
- ПриСозданииНаСервере
-
- true
- true
- Vertical
- true
- true
- true
- true
-
- Объект
- 1
-
- DocumentObject.интУчетРасходов
-
-
- true
-
-
- true
-
-
-
- Объект.Движения
-
-
- true
- true
-
-
- ДеревоОбъектов
-
- ru
- Дерево объектов
-
- 12
-
- ValueTree
-
-
- true
-
-
- true
-
- true
-
- Показатель
-
- ru
- Показатель
-
- 13
-
- CatalogRef.интРасходныеПоказатели
-
-
- true
-
-
- true
-
-
-
- ОбъектРасходов
-
- ru
- Объект расходов
-
- 16
-
- CatalogRef.интОбъектыРасходов
-
-
- true
-
-
- true
-
-
-
- ТипПервойКолонкиЗначений
-
- ru
- Тип первой колонки значений
-
- 17
-
- EnumRef.интТипыОтчетныхПоказателей
-
-
- true
-
-
- true
-
-
-
- ТипВторойКолонкиЗначений
-
- ru
- Тип второй колонки значений
-
- 18
-
- EnumRef.интТипыОтчетныхПоказателей
-
-
- true
-
-
- true
-
-
-
- ПредставлениеПоказателя
-
- ru
- Представление показателя
-
- 21
-
- String
-
-
-
- true
-
-
- true
-
-
-
- КоличествоКатегорий
-
- ru
- Количество категорий
-
- 22
-
- Number
-
- 10
-
-
-
- true
-
-
- true
-
-
-
- ЭтоГруппировочныйПоказатель
-
- ru
- Это группировочный показатель
-
- 24
-
- Boolean
-
-
- true
-
-
- true
-
-
-
- ИдентификаторСтроки
-
- ru
- Идентификатор строки
-
- 26
-
- UUID
-
-
- true
-
-
- true
-
-
-
-
- ТаблицаОбъектов
-
- ru
- Таблица объектов
-
- 28
-
- ValueTable
-
-
- true
-
-
- true
-
- true
-
- ИдентификаторСтроки
-
- ru
- Идентификатор строки
-
- 29
-
- UUID
-
-
- true
-
-
- true
-
-
-
- ОбъектРасходов
-
- ru
- Объект расходов
-
- 30
-
- CatalogRef.интОбъектыРасходов
-
-
- true
-
-
- true
-
-
-
- ИтогДляКорпОтчета
-
- ru
- Итого корп. отчет, тыс. руб.
-
- 31
-
- DefinedType.интЗначениеПоказателя
-
-
- true
-
-
- true
-
-
-
- ИтогДляГосОтчета
-
- ru
- Итого гос. отчет, тыс. руб.
-
- 32
-
- DefinedType.интЗначениеПоказателя
-
-
- true
-
-
- true
-
-
-
- Разница
-
- ru
- Разница
-
- 33
-
- DefinedType.интЗначениеПоказателя
-
-
- true
-
-
- true
-
-
-
- Комментарий
-
- ru
- Комментарий
-
- 34
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ФлагИзменений
-
- ru
- Флаг изменений
-
- 35
-
- Boolean
-
-
- true
-
-
- true
-
-
-
-
- ОбновитьТаблицуОбъектов
-
- ru
- Обновить
-
- 2
-
-
- StdPicture.Refresh
-
-
-
- ОбновитьТаблицуОбъектов
-
-
- TextPicture
- Auto
-
-
-
-
- AccumulationRegister.интЗначенияРасходныхПоказателей.StandardCommand.OpenByRecorder
-
- Объект.Ref
-
-
- true
-
-
-
- AccumulationRegister.интЗначенияПоказателей4ОС.StandardCommand.OpenByRecorder
-
- Объект.Ref
-
-
- true
-
-
-
- AccumulationRegister.интЗначенияПоказателей18КС.StandardCommand.OpenByRecorder
-
- Объект.Ref
-
-
- true
-
-
-
-
-
-
-
- BeforeWrite
- ПередЗаписью
-
- true
-
-
diff --git "a/src/test/resources/metadata/formdata/edt/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Attributes/\320\237\320\276\320\273\320\265\320\230\320\275\320\264\320\270\320\272\320\260\321\202\320\276\321\200\320\224\320\273\320\270\321\202\320\265\320\273\321\214\320\275\321\213\321\205\320\236\320\277\320\265\321\200\320\260\321\206\320\270\320\271/ExtInfo/SpreadsheetData.mxlx" "b/src/test/resources/metadata/formdata/edt/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Attributes/\320\237\320\276\320\273\320\265\320\230\320\275\320\264\320\270\320\272\320\260\321\202\320\276\321\200\320\224\320\273\320\270\321\202\320\265\320\273\321\214\320\275\321\213\321\205\320\236\320\277\320\265\321\200\320\260\321\206\320\270\320\271/ExtInfo/SpreadsheetData.mxlx"
deleted file mode 100644
index 7ec708792..000000000
--- "a/src/test/resources/metadata/formdata/edt/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Attributes/\320\237\320\276\320\273\320\265\320\230\320\275\320\264\320\270\320\272\320\260\321\202\320\276\321\200\320\224\320\273\320\270\321\202\320\265\320\273\321\214\320\275\321\213\321\205\320\236\320\277\320\265\321\200\320\260\321\206\320\270\320\271/ExtInfo/SpreadsheetData.mxlx"
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
- 0
-
-
- 0
-
- true
-
-
- 0
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/formdata/edt/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Form.form" "b/src/test/resources/metadata/formdata/edt/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Form.form"
deleted file mode 100644
index 676bfe7f9..000000000
--- "a/src/test/resources/metadata/formdata/edt/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Form.form"
+++ /dev/null
@@ -1,3424 +0,0 @@
-
-
-
-
- ru
- Журнал регистрации
-
-
- ГруппаОтбора
- 103
-
- КоличествоПоказываемыхСобытий
- 101
-
- ru
- Показывать
-
- true
- true
-
- true
-
-
-
- КоличествоПоказываемыхСобытий
-
-
-
- ru
- Количество последних событий, отбираемых из заданного интервала дат
-
-
- OnChange
- КоличествоПоказываемыхСобытийПриИзменении
-
-
- КоличествоПоказываемыхСобытийExtendedTooltip
- 136
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КоличествоПоказываемыхСобытийКонтекстноеМеню
- 102
- true
- true
-
- true
-
- true
-
- InputField
- Right
- Enter
- true
- Left
- true
-
- 8
- true
- true
- true
-
- ru
- ЧГ=0
-
- true
-
- 1
-
-
- 10000
-
-
-
- ru
- 200 событий
-
-
- 200
-
-
-
-
- ru
- 500 событий
-
-
- 500
-
-
-
-
- ru
- 1000 событий
-
-
- 1000
-
-
-
-
- ru
- 10000 событий
-
-
- 10000
-
-
-
- Style.BorderColor
-
-
-
-
- Критичность
- 170
- true
- true
-
- true
-
-
-
- Критичность
-
-
-
- OnChange
- КритичностьПриИзменении
-
-
- КритичностьРасширеннаяПодсказка
- 172
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КритичностьКонтекстноеМеню
- 171
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
-
- Clearing
- КритичностьОчистка
-
- 15
- true
- true
- false
- true
- true
- true
- true
- true
-
-
- ru
- Ошибка
-
-
- Ошибка
-
-
-
-
- ru
- Предупреждение
-
-
- Предупреждение
-
-
-
-
- ru
- Информация
-
-
- Информация
-
-
-
-
- ru
- Примечание
-
-
- Примечание
-
-
-
-
- ru
- Все события
-
-
- ВсеСобытия
-
-
-
-
-
- ПредставлениеОтбора
- 35
-
- ru
- Отбор
-
- true
- true
-
- true
-
-
-
- ПредставлениеОтбора
-
-
-
- ПредставлениеОтбораExtendedTooltip
- 137
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредставлениеОтбораКонтекстноеМеню
- 36
- true
- true
-
- true
-
- true
-
- LabelField
- Enter
- true
- Left
- true
- Left
-
-
- Click
- ПредставлениеОтбораНажатие
-
- true
- true
- true
-
-
- true
- true
-
- true
-
-
- ru
- Отбора
-
-
- ГруппаОтбораExtendedTooltip
- 135
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- UsualGroup
-
- HorizontalIfPossible
- true
- true
- Auto
- Auto
-
-
-
- Страницы
- 116
-
- ЖурналРегистрации
- 117
-
- Журнал
- 48
-
- ru
- Журнал
-
- true
- true
-
- true
-
-
- Журнал
-
- false
- None
- Add
- Change
- Copy
- CopyToClipboard
- EndEdit
- MoveDown
- MoveUp
-
- Дата
- 51
-
- ru
- Дата, время
-
- true
- true
-
- true
-
-
-
- Журнал.Дата
-
-
-
- ru
- Дата события в часовом поясе программы.
-
-
- ДатаExtendedTooltip
- 146
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаКонтекстноеМеню
- 52
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- true
- Left
- true
-
- 5
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- ПредставлениеРазделенияДанныхСеанса
- 119
- true
- true
-
- true
-
-
-
- Журнал.ПредставлениеРазделенияДанныхСеанса
-
-
-
- ПредставлениеРазделенияДанныхСеансаExtendedTooltip
- 147
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредставлениеРазделенияДанныхСеансаКонтекстноеМеню
- 120
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
-
-
- ГруппаПользовательКомпьютерПриложение
- 53
-
- ИмяПользователя
- 54
-
- ru
- Пользователь
-
- true
- true
-
- true
-
-
-
- Журнал.ИмяПользователя
-
-
-
- ИмяПользователяExtendedTooltip
- 149
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ИмяПользователяКонтекстноеМеню
- 55
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- 15
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- Компьютер
- 56
-
- ru
- Компьютер
-
- true
- true
-
- true
-
-
-
- Журнал.Компьютер
-
-
-
- КомпьютерExtendedTooltip
- 150
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КомпьютерКонтекстноеМеню
- 57
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- 15
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- ГруппаПриложениеСеанс
- 204
-
- ПредставлениеПриложения
- 59
-
- ru
- Приложение
-
- true
- true
-
- true
-
-
-
- Журнал.ПредставлениеПриложения
-
-
-
- ПредставлениеПриложенияExtendedTooltip
- 152
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредставлениеПриложенияКонтекстноеМеню
- 60
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- Сеанс
- 80
- true
- true
-
- true
-
-
-
- Журнал.Сеанс
-
-
-
- СеансExtendedTooltip
- 153
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СеансКонтекстноеМеню
- 81
- true
- true
-
- true
-
- true
-
- InputField
- Left
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
- true
- true
-
- true
-
-
- ru
- Приложение сеанс
-
- 15
-
- ГруппаПриложениеСеансРасширеннаяПодсказка
- 205
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- InCell
- true
-
-
- true
- true
-
- true
-
-
- ru
- Пользователь, компьютер, приложение, сеанс
-
- 15
-
- ГруппаПользовательКомпьютерПриложениеExtendedTooltip
- 148
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
- true
-
-
-
- ГруппаСобытиеИДанные
- 175
-
- ПредставлениеСобытия
- 64
-
- ru
- Событие
-
- true
- true
-
- true
-
-
-
- Журнал.ПредставлениеСобытия
-
-
-
- ПредставлениеСобытияExtendedTooltip
- 159
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредставлениеСобытияКонтекстноеМеню
- 65
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- ГруппаДанныеМетаданные
- 202
-
- Данные
- 76
- true
- true
-
- true
-
-
-
- Журнал.Данные
-
-
-
- ДанныеExtendedTooltip
- 166
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДанныеКонтекстноеМеню
- 77
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- ПредставлениеМетаданных
- 74
-
- ru
- Метаданные
-
- true
- true
-
- true
-
-
-
- Журнал.ПредставлениеМетаданных
-
-
-
- ПредставлениеМетаданныхExtendedTooltip
- 165
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПредставлениеМетаданныхКонтекстноеМеню
- 75
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
- true
- true
-
- true
-
-
- ru
- Данные метаданные
-
-
- ГруппаДанныеМетаданныеРасширеннаяПодсказка
- 203
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- InCell
- true
-
-
-
- Комментарий
- 66
-
- ru
- Комментарий
-
- true
- true
-
- true
-
-
-
- Журнал.Комментарий
-
-
-
- КомментарийExtendedTooltip
- 160
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- КомментарийКонтекстноеМеню
- 67
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
- true
- true
-
- true
-
-
- ru
- Событие, данные и метаданные, комментарий
-
-
- ГруппаСобытиеИДанныеРасширеннаяПодсказка
- 176
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
- true
-
-
-
- ГруппаСервер
- 84
-
- РабочийСервер
- 85
- true
- true
-
- true
-
-
-
- Журнал.РабочийСервер
-
-
-
- РабочийСерверExtendedTooltip
- 155
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- РабочийСерверКонтекстноеМеню
- 86
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- ОсновнойIPПорт
- 89
- true
- true
-
- true
-
-
-
- Журнал.ОсновнойIPПорт
-
-
-
- ОсновнойIPПортExtendedTooltip
- 156
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ОсновнойIPПортКонтекстноеМеню
- 90
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- ВспомогательныйIPПорт
- 91
- true
- true
-
- true
-
-
-
- Журнал.ВспомогательныйIPПорт
-
-
-
- ru
- Вспомогательный IP порт
-
-
- ВспомогательныйIPПортExtendedTooltip
- 157
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ВспомогательныйIPПортКонтекстноеМеню
- 92
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
- true
- true
-
-
- ru
- Рабочий сервер, IP порты
-
-
- ГруппаСерверExtendedTooltip
- 154
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
- true
-
-
-
- ГруппаТранзакция
- 68
-
- СтатусТранзакции
- 69
-
- ru
- Статус транзакции
-
- true
- true
-
- true
-
-
-
- Журнал.СтатусТранзакции
-
-
-
- СтатусТранзакцииExtendedTooltip
- 162
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- СтатусТранзакцииКонтекстноеМеню
- 70
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
-
- Транзакция
- 71
- true
- true
-
- true
-
-
-
- Журнал.Транзакция
-
-
-
- ТранзакцияExtendedTooltip
- 163
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ТранзакцияКонтекстноеМеню
- 72
- true
- true
-
- true
-
- true
-
- InputField
- Enter
- Left
- true
-
- true
- true
- true
- true
- true
-
- Style.BorderColor
-
-
-
- true
- true
-
-
- ru
- Транзакция
-
-
- ГруппаТранзакцияExtendedTooltip
- 161
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- ColumnGroup
-
- Vertical
- true
- true
-
-
-
- ДатаНаСервере
- 206
- true
- true
-
-
-
- Журнал.ДатаНаСервере
-
-
-
- ru
- Дата события в часовом поясе сервера.
-
-
- ДатаНаСервереРасширеннаяПодсказка
- 208
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ДатаНаСервереКонтекстноеМеню
- 207
- true
- true
-
- true
-
- true
-
- InputField
- EnterOnInput
- true
- Left
- true
-
- 5
- true
- true
- true
- true
- true
- true
-
-
-
- ЖурналКоманднаяПанель
- 50
-
- ЖурналВыгрузитьЖурналДляПередачиВТехподдержку
- 209
- true
- true
-
- true
-
-
- ЖурналВыгрузитьЖурналДляПередачиВТехподдержкуРасширеннаяПодсказка
- 210
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ВыгрузитьЖурналДляПередачиВТехподдержку
- Auto
- true
- true
- UserCmds
- Auto
- InCommandBarAndInAdditionalSubmenu
-
-
- ПросмотрТекущегоСобытияВОтдельномОкне
- 38
- true
- true
-
- true
-
- false
-
- ПросмотрТекущегоСобытияВОтдельномОкнеExtendedTooltip
- 126
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ПросмотрТекущегоСобытияВОтдельномОкне
- PictureAndText
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- ОткрытьДанныеДляПросмотра
- 40
- true
- true
-
- true
-
- false
-
- ОткрытьДанныеДляПросмотраExtendedTooltip
- 127
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ОткрытьДанныеДляПросмотра
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- КомандыОтбора
- 105
-
- УстановитьИнтервалДатДляПросмотра
- 108
- true
- true
-
- true
-
-
- УстановитьИнтервалДатДляПросмотраExtendedTooltip
- 122
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.УстановитьИнтервалДатДляПросмотра
- PictureAndText
- true
- true
- UserCmds
- Auto
-
-
- УстановитьОтбор
- 42
- true
- true
-
- true
-
- false
-
- УстановитьОтборExtendedTooltip
- 123
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.УстановитьОтбор
- PictureAndText
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- УстановитьОтборПоЗначениюВТекущейКолонке
- 43
- true
- true
-
- true
-
- false
-
- УстановитьОтборПоЗначениюВТекущейКолонкеExtendedTooltip
- 124
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.УстановитьОтборПоЗначениюВТекущейКолонке
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- ОтключитьОтбор
- 44
- true
- true
-
- true
-
- false
-
- ОтключитьОтборExtendedTooltip
- 125
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ОтключитьОтбор
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
- true
- true
-
- true
-
-
- ru
- Команды отбора
-
-
- КомандыОтбораExtendedTooltip
- 121
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
-
-
- КомандыПоиска
- 109
-
- ФормаНайти
- 110
- true
- true
-
- true
-
-
- ФормаНайтиExtendedTooltip
- 131
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Item.Журнал.StandardCommand.Find
- Auto
- true
- true
- UserCmds
- Auto
-
-
- ФормаОтменитьПоиск
- 111
- true
- true
-
- true
-
-
- ФормаОтменитьПоискExtendedTooltip
- 132
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Item.Журнал.StandardCommand.CancelSearch
- Auto
- true
- true
- UserCmds
- Auto
-
- true
- true
-
- true
-
-
- ru
- Команды поиска
-
-
- КомандыПоискаExtendedTooltip
- 130
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
-
-
- КомандаОбновить
- 106
-
- ОбновитьТекущийСписок
- 46
- true
- true
-
- true
-
- false
-
- ОбновитьТекущийСписокExtendedTooltip
- 129
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ОбновитьТекущийСписок
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
- true
- true
-
- true
-
-
- ru
- Команда обновить
-
-
- КомандаОбновитьExtendedTooltip
- 128
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
-
-
- ИзменитьФорму
- 104
- true
- true
-
- true
-
- false
-
- ИзменитьФормуExtendedTooltip
- 133
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.StandardCommand.CustomizeForm
- Auto
- true
- true
- UserCmds
- Auto
- InAdditionalSubmenu
-
-
- ВывестиСписок
- 82
- true
- true
-
- true
-
- false
-
- ВывестиСписокExtendedTooltip
- 134
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Item.Журнал.StandardCommand.OutputList
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- ЖурналСправка
- 173
- true
- true
-
- true
-
-
- ЖурналСправкаРасширеннаяПодсказка
- 174
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.StandardCommand.Help
- Auto
- true
- true
- UserCmds
- Auto
-
- true
- true
-
- true
-
- Left
-
-
- Selection
- ЖурналВыбор
-
-
- true
- true
-
- true
-
- ЖурналСтрокаПоиска
- 181
-
- ЖурналСтрокаПоискаРасширеннаяПодсказка
- 183
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ЖурналСтрокаПоискаКонтекстноеМеню
- 182
- true
- true
-
- true
-
- true
-
-
- true
-
-
-
- true
- true
-
- true
-
- ЖурналСостояниеПросмотра
- 184
-
- ЖурналСостояниеПросмотраРасширеннаяПодсказка
- 186
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ЖурналСостояниеПросмотраКонтекстноеМеню
- 185
- true
- true
-
- true
-
- true
-
- ViewStatusAddition
-
- true
-
-
-
- true
- true
-
- true
-
- ЖурналУправлениеПоиском
- 187
-
- ЖурналУправлениеПоискомРасширеннаяПодсказка
- 189
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ЖурналУправлениеПоискомКонтекстноеМеню
- 188
- true
- true
-
- true
-
- true
-
- SearchControlAddition
-
- true
-
-
-
- ЖурналExtendedTooltip
- 145
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ЖурналКонтекстноеМеню
- 49
-
- ОтборГруппаКонтекст
- 107
-
- УстановитьОтборПоЗначениюВТекущейКолонкеКонтекст
- 98
- true
- true
-
- true
-
- false
-
- УстановитьОтборПоЗначениюВТекущейКолонкеКонтекстExtendedTooltip
- 141
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.УстановитьОтборПоЗначениюВТекущейКолонке
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- ЖурналКонтекстноеМенюОтключитьОтбор
- 113
- true
- true
-
- true
-
-
- ЖурналКонтекстноеМенюОтключитьОтборExtendedTooltip
- 142
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ОтключитьОтбор
- Auto
- true
- true
- UserCmds
- Auto
-
- true
- true
-
- true
-
-
- ru
- Отбор группа контекст
-
-
- ОтборГруппаКонтекстExtendedTooltip
- 140
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
-
-
- ПросмотрТекущегоСобытияВОтдельномОкнеКонтекст
- 96
- true
- true
-
- true
-
- false
-
- ПросмотрТекущегоСобытияВОтдельномОкнеКонтекстExtendedTooltip
- 143
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ПросмотрТекущегоСобытияВОтдельномОкне
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
-
- ОткрытьДанныеДляПросмотраКонтекст
- 97
- true
- true
-
- true
-
- false
-
- ОткрытьДанныеДляПросмотраКонтекстExtendedTooltip
- 144
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Form.Command.ОткрытьДанныеДляПросмотра
- Auto
- true
- true
- UserCmds
-
- Style.ButtonTextColor
-
-
- Style.ButtonBackColor
-
-
- Style.BorderColor
-
- Auto
-
- true
- true
-
- true
-
- true
-
- true
- true
- true
- true
- MultiRow
-
- 1
- 1
- AutoUse
- AutoUse
- true
- true
- true
- Auto
- End
-
- true
- true
-
- Журнал.НомерРисунка
-
-
- CommonPicture.КоллекцияВидыСобытийЖурналаРегистрации
-
-
- Style.BorderColor
-
-
-
- true
- true
-
- true
-
-
- ru
- Журнал регистрации
-
-
- ЖурналРегистрацииExtendedTooltip
- 139
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Page
-
- Vertical
- true
-
-
-
- ИндикаторДлительныхОпераций
- 118
-
- ПолеИндикаторДлительныхОпераций
- 114
- true
- true
-
- true
-
-
-
- ПолеИндикаторДлительныхОпераций
-
-
- None
-
- ПолеИндикаторДлительныхОперацийExtendedTooltip
- 169
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
-
- ПолеИндикаторДлительныхОперацийКонтекстноеМеню
- 115
- true
- true
-
- true
-
- true
-
- SpreadsheetDocumentField
- Enter
- true
- Left
- true
-
- 50
- true
- 10
- true
- true
- true
- Special
- ScrollAlways
- ScrollAlways
- Always
- true
- true
- true
-
-
- true
- true
-
- true
-
-
- ru
- Индикатор длительных операций
-
-
- ИндикаторДлительныхОперацийExtendedTooltip
- 168
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Page
-
- Vertical
- true
-
-
- true
- true
-
- true
-
-
- ru
- Страницы
-
-
- СтраницыExtendedTooltip
- 138
- true
- true
-
- true
-
- Label
- true
- true
-
- Left
-
-
- Pages
-
- Auto
-
-
- Top
-
- ФормаКоманднаяПанель
- -1
- true
- true
-
- true
-
- Left
-
-
- ChoiceProcessing
- ОбработкаВыбора
-
-
- OnOpen
- ПриОткрытии
-
-
- OnCreateAtServer
- ПриСозданииНаСервере
-
- Abort
- Cancel
- Close
- Ignore
- No
- OK
- RestoreValues
- Retry
- SaveValues
- Yes
- true
- Vertical
- true
- true
- UseIfNecessary
- true
- true
-
- Объект
- 1
-
- DataProcessorObject.ЖурналРегистрации
-
-
- true
-
-
- true
-
- true
-
-
- ПредставлениеОтбора
-
- ru
- Представление отбора
-
- 3
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Журнал
-
- ru
- Журнал
-
- 4
-
- ValueTable
-
-
- true
-
-
- true
-
-
- ВспомогательныйIPПорт
-
- ru
- Вспомог. IP порт
-
- 1
-
- Number
-
- 10
-
-
-
- true
-
-
- true
-
-
-
- Данные
-
- ru
- Данные
-
- 2
-
- Boolean
- String
- Date
- AnyRef
-
-
-
-
- true
-
-
- true
-
-
-
- Дата
-
- ru
- Дата
-
- 3
-
- Date
-
-
-
- true
-
-
- true
-
-
-
- ИмяПользователя
-
- ru
- Имя пользователя
-
- 4
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ИмяПриложения
- 5
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Комментарий
-
- ru
- Комментарий
-
- 6
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Компьютер
-
- ru
- Компьютер
-
- 7
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Метаданные
- 8
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ОсновнойIPПорт
-
- ru
- Основной IP порт
-
- 9
-
- Number
-
- 10
-
-
-
- true
-
-
- true
-
-
-
- Пользователь
- 10
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ПредставлениеДанных
- 11
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ПредставлениеМетаданных
-
- ru
- Представление метаданных
-
- 12
-
- ValueList
- String
-
-
-
- true
-
-
- true
-
-
-
- ПредставлениеПриложения
-
- ru
- Представление приложения
-
- 13
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ПредставлениеСобытия
-
- ru
- Представление события
-
- 14
-
- String
-
-
-
- true
-
-
- true
-
-
-
- РабочийСервер
-
- ru
- Рабочий сервер
-
- 15
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Сеанс
-
- ru
- Сеанс
-
- 16
-
- Number
-
- 10
-
-
-
- true
-
-
- true
-
-
-
- Событие
- 17
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Соединение
- 18
-
- Number
-
- 10
-
-
-
- true
-
-
- true
-
-
-
- СтатусТранзакции
-
- ru
- Статус транзакции
-
- 19
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Транзакция
-
- ru
- Транзакция
-
- 20
-
- String
-
-
-
- true
-
-
- true
-
-
-
- Уровень
- 21
-
- String
-
-
-
- true
-
-
- true
-
-
-
- НомерРисунка
- 22
-
- Number
-
- 1
-
-
-
- true
-
-
- true
-
-
-
- АдресДанных
- 23
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ПредставлениеРазделенияДанныхСеанса
-
- ru
- Разделение данных сеанса
-
- 24
-
- String
-
-
-
- true
-
-
- true
-
-
-
- РазделениеДанныхСеанса
- 25
-
- ValueList
-
-
- true
-
-
- true
-
-
-
- ДатаНаСервере
-
- ru
- Дата на сервере
-
- 26
-
- Date
-
-
-
- true
-
-
- true
-
-
-
-
- ОтборЖурналаРегистрации
- 5
-
-
- true
-
-
- true
-
-
- ОтборЖурналаРегистрации
-
-
-
- КоличествоПоказываемыхСобытий
-
- ru
- Количество показываемых событий
-
- 7
-
- Number
-
- 10
- true
-
-
-
- true
-
-
- true
-
- ShowError
-
-
- ИнтервалДат
- 2
-
- StandardPeriod
-
-
- true
-
-
- true
-
-
-
- ПолеИндикаторДлительныхОпераций
-
- ru
- Поле индикатор длительных операций
-
- 6
-
- SpreadsheetDocument
-
-
- true
-
-
- true
-
-
-
-
- АдресХранилища
- 9
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ОтборЖурналаРегистрацииПоУмолчанию
- 11
-
-
- true
-
-
- true
-
-
-
- Критичность
-
- ru
- Критичность
-
- 13
-
- String
-
-
-
- true
-
-
- true
-
-
-
- ЗапускатьНеВФоне
- 14
-
- Boolean
-
-
- true
-
-
- true
-
-
-
- ИдентификаторЗадания
- 8
-
- UUID
-
-
- true
-
-
- true
-
-
-
- ПросмотрТекущегоСобытияВОтдельномОкне
-
- ru
- Открыть
-
- 1
-
- ru
- Просмотр текущего события в отдельном окне
-
-
-
- StdPicture.Properties
-
-
-
- ПросмотрТекущегоСобытияВОтдельномОкне
-
-
- DontUse
-
-
- ОткрытьДанныеДляПросмотра
-
- ru
- Открыть данные для просмотра
-
- 2
-
- ru
- Открыть данные для просмотра
-
-
-
- StdPicture.ShowData
-
-
-
- ОткрытьДанныеДляПросмотра
-
-
- DontUse
-
-
- УстановитьИнтервалДатДляПросмотра
-
- ru
- Интервал
-
- 3
-
- ru
- Установить интервал дат для просмотра
-
-
-
- StdPicture.SetDateInterval
-
-
-
- УстановитьИнтервалДатДляПросмотра
-
-
- DontUse
-
-
- УстановитьОтбор
-
- ru
- Установить отбор
-
- 4
-
- ru
- Установить отбор
-
-
-
- StdPicture.FilterCriterion
-
-
-
- УстановитьОтбор
-
-
- Picture
- DontUse
-
-
- УстановитьОтборПоЗначениюВТекущейКолонке
-
- ru
- Установить отбор по значению в текущей колонке
-
- 5
-
- ru
- Установить отбор по значению в текущей колонке
-
-
-
- StdPicture.FilterByCurrentValue
-
-
-
- УстановитьОтборПоЗначениюВТекущейКолонке
-
-
- DontUse
-
-
- ОтключитьОтбор
-
- ru
- Отключить отбор
-
- 6
-
- ru
- Отключить отбор
-
-
-
- StdPicture.ClearFilter
-
-
-
- ОтключитьОтбор
-
-
- DontUse
-
-
- ОбновитьТекущийСписок
-
- ru
- Обновить текущий список
-
- 8
-
- ru
- Обновить текущий список
-
-
- F5
-
- StdPicture.Refresh
-
-
-
- ОбновитьТекущийСписок
-
-
- DontUse
-
-
- ВыгрузитьЖурналДляПередачиВТехподдержку
-
- ru
- Выгрузить в файл...
-
- 7
-
-
-
- ВыгрузитьЖурналДляПередачиВТехподдержку
-
-
- Auto
-
-
- Пользователь
-
- String
-
-
-
-
- СобытиеЖурналаРегистрации
-
-
-
- ЗапускатьНеВФоне
-
- Boolean
-
-
-
- ДатаНачала
-
- Date
-
-
-
-
- ДатаОкончания
-
- Date
-
-
-
-
- Данные
-
-
-
- Сеанс
-
-
-
- Уровень
-
-
-
- ИмяПриложения
-
-
-
-
-
-
-
-
diff --git "a/src/test/resources/metadata/formdata/original/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270.xml" "b/src/test/resources/metadata/formdata/original/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270.xml"
deleted file mode 100644
index 88eb625b4..000000000
--- "a/src/test/resources/metadata/formdata/original/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270.xml"
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/formdata/original/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form.xml" "b/src/test/resources/metadata/formdata/original/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form.xml"
deleted file mode 100644
index fd2bd0afd..000000000
--- "a/src/test/resources/metadata/formdata/original/\320\226\321\203\321\200\320\275\320\260\320\273\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\260\321\206\320\270\320\270/Ext/Form.xml"
+++ /dev/null
@@ -1,1471 +0,0 @@
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml" "b/src/test/resources/metadata/original/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml"
deleted file mode 100644
index 3f82278ae..000000000
--- "a/src/test/resources/metadata/original/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2702.xml"
+++ /dev/null
@@ -1,136 +0,0 @@
-
-
-
-
-
- d833a3aa-844d-4d3b-b7ce-90cb3c3b2f10
- 2f137f49-d7b8-4bbc-9250-1536bea10663
-
-
- ffdf5693-64ea-4b78-a2b0-1388e855a2c8
- 7aefad2d-43a5-4d24-8c4a-13833e75f651
-
-
- 5eb2ba83-6f9b-4353-a932-c4b503aadc68
- ae4ef7fd-e676-415d-80db-276c24342974
-
-
- f765ef7c-2217-4c05-b330-ae620a0bd838
- 43c6c39d-32a8-47a6-a752-fc7f2ff4dc39
-
-
- 19c9961b-30ac-47ac-b941-e906baf0d32f
- 89ecc56d-2c67-4a07-aaee-2cdb00e3db4b
-
-
- 62afb9f9-2bb8-46fd-b637-bb5d6e43a471
- 63fa626f-d24c-4a9f-8f3f-db7197013122
-
-
- 83d47f84-dca3-4d8e-adff-d50165a63724
- 6ce4bffe-fcd8-4630-a313-f6bfd49e5e47
-
-
-
- РегистрБухгалтерии2
-
-
- ru
- Регистр бухгалтерии
-
-
-
- true
- false
- ChartOfAccounts.ПланСчетов1
- false
- 0
-
-
- Managed
- true
- DontUse
-
-
-
-
-
-
-
- Измерение1
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- true
-
- false
- DontIndex
- Use
-
-
-
-
- Ресурс1
-
-
-
- xs:decimal
-
- 10
- 0
- Any
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- true
-
-
- Use
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703.xml" "b/src/test/resources/metadata/original/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703.xml"
deleted file mode 100644
index feacf7c92..000000000
--- "a/src/test/resources/metadata/original/AccountingRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\221\321\203\321\205\320\263\320\260\320\273\321\202\320\265\321\200\320\270\320\2703.xml"
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
-
- d833a3aa-844d-4d3b-b7ce-90cb3c3b2f10
- 2f137f49-d7b8-4bbc-9250-1536bea10663
-
-
- ffdf5693-64ea-4b78-a2b0-1388e855a2c8
- 7aefad2d-43a5-4d24-8c4a-13833e75f651
-
-
- 5eb2ba83-6f9b-4353-a932-c4b503aadc68
- ae4ef7fd-e676-415d-80db-276c24342974
-
-
- f765ef7c-2217-4c05-b330-ae620a0bd838
- 43c6c39d-32a8-47a6-a752-fc7f2ff4dc39
-
-
- 19c9961b-30ac-47ac-b941-e906baf0d32f
- 89ecc56d-2c67-4a07-aaee-2cdb00e3db4b
-
-
- 62afb9f9-2bb8-46fd-b637-bb5d6e43a471
- 63fa626f-d24c-4a9f-8f3f-db7197013122
-
-
- 83d47f84-dca3-4d8e-adff-d50165a63724
- 6ce4bffe-fcd8-4630-a313-f6bfd49e5e47
-
-
-
- РегистрБухгалтерии3
-
-
- true
- false
- ChartOfAccounts.ПланСчетов1
- false
- 0
-
-
- Managed
- true
- DontUse
-
-
-
-
-
-
-
- Измерение1
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- true
-
- false
- DontIndex
- Use
-
-
-
-
- Ресурс1
-
-
-
- xs:decimal
-
- 10
- 0
- Any
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- true
-
-
- Use
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202.xml" "b/src/test/resources/metadata/original/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202.xml"
deleted file mode 100644
index 56ac29034..000000000
--- "a/src/test/resources/metadata/original/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202.xml"
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
- b1e7c1d2-ce84-450c-9bd3-f565866c6222
- c5bc63f6-bbdb-465c-b6af-509f74d6a3d9
-
-
- 084bbf7f-83c0-4bb8-bbc8-d82a63c3e812
- 5551c74d-3173-4b65-89ba-c77500c5f6b6
-
-
- 0a29c40f-279d-45cf-8398-525eddbea1e1
- 54522c4e-7bde-46cd-a583-5c3db9f04c22
-
-
-
- Перерасчет
-
-
- ru
- Перерасчет
-
-
-
- Automatic
-
-
-
-
- Измерение
-
-
- ru
- Измерение
-
-
-
- CalculationRegister.РегистрРасчета1.Dimension.Измерение1
-
- CalculationRegister.РегистрРасчета1.Dimension.Измерение
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/Ext/RecordSetModule.bsl" "b/src/test/resources/metadata/original/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/Ext/RecordSetModule.bsl"
deleted file mode 100644
index 735e44273..000000000
--- "a/src/test/resources/metadata/original/CalculationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\240\320\260\321\201\321\207\320\265\321\202\320\2601/Recalculations/\320\237\320\265\321\200\320\265\321\200\320\260\321\201\321\207\320\265\321\202/Ext/RecordSetModule.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-#Область СлужебныйПрограммныйИнтерфейс
-
-Процедура ТестовыйВызов() Экспорт
- Возврат;
-КонецПроцедуры
-
-#КонецОбласти
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
deleted file mode 100644
index 7f908c55c..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
deleted file mode 100644
index 9dfceb82b..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
deleted file mode 100644
index c5ac3aa22..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ВнешнееСобытие(Источник, Событие, Данные)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
deleted file mode 100644
index f24969d4c..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
deleted file mode 100644
index c5ac3aa22..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ВнешнееСобытие(Источник, Событие, Данные)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217.xml" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217.xml"
deleted file mode 100644
index b13ff5b95..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217.xml"
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217/Ext/Form.bin" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217/Ext/Form.bin"
deleted file mode 100644
index 8dd3dacc9..000000000
Binary files "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Forms/\320\244\320\276\321\200\320\274\320\260\320\255\320\273\320\265\320\274\320\265\320\275\321\202\320\260\320\236\320\261\321\213\321\207\320\275\320\260\321\217/Ext/Form.bin" and /dev/null differ
diff --git "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\2022.xml" "b/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\2022.xml"
deleted file mode 100644
index d0c14f1b1..000000000
--- "a/src/test/resources/metadata/original/Catalogs/\320\241\320\277\321\200\320\260\320\262\320\276\321\207\320\275\320\270\320\2721/Templates/\320\234\320\260\320\272\320\265\321\2022.xml"
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Макет2
-
-
- ru
- Макет с длинным синонимом, с запятыми
-
-
-
- SpreadsheetDocument
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml" "b/src/test/resources/metadata/original/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
deleted file mode 100644
index 298840888..000000000
--- "a/src/test/resources/metadata/original/ChartsOfCalculationTypes/\320\237\320\273\320\260\320\275\320\222\320\270\320\264\320\276\320\262\320\240\320\260\321\201\321\207\320\265\321\202\320\2601.xml"
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-
- 26c012b3-cf45-4c9e-a25e-4fb9ac8d4293
- fae50475-9e35-48b2-9d82-1540105d58dc
-
-
- dc453d53-ad97-4041-be9a-d8266be7ed82
- 4473172a-60b7-43f5-b7f5-a1ab4f680147
-
-
- 271e009f-577f-4c98-b8f9-bed11d625627
- 697c501c-df67-4417-bcd3-8cd2c82e25f5
-
-
- ac5c93ed-608e-477d-947e-26e6a8dbd79d
- 4fd4d529-1564-4463-9bf1-69df125cd03f
-
-
- 1bdaf58f-0d81-4465-bdc2-d83ef5816cf7
- 7d00a2f0-0585-411f-84ef-22605ffaed97
-
-
- d3020c35-f954-4ea7-8043-8a4d9ade11f2
- 3aa6d49c-02f1-4e04-a078-0189d9718385
-
-
- bc92f867-701f-44e2-8e6e-d57be0c85cc7
- 7b407093-e2c1-455c-8e92-2bf03e00081e
-
-
- 3d5e15b4-3f67-4632-9b49-1f2ce9e09744
- cd9d1561-f5ea-4fe9-bd77-fa66425344aa
-
-
- 3bc40e78-b54a-474e-8ee3-257da2fbc087
- 934b70de-f262-445e-b340-783558029bc7
-
-
- fe9f9cc8-842c-4eab-97cc-2adce4b0958c
- 58e0f2a4-8bfe-410f-928a-113176bfde05
-
-
- 57ef95a9-6dad-4ace-bb67-ecbc4b672ba7
- b652e1ff-75a2-4a02-a1c3-86448f47e836
-
-
-
- ПланВидовРасчета1
-
-
- true
- 9
- 40
- String
- Variable
- AsDescription
- InDialog
- false
- BothWays
-
- ChartOfCalculationTypes.ПланВидовРасчета1.StandardAttribute.Description
- ChartOfCalculationTypes.ПланВидовРасчета1.StandardAttribute.Code
-
- Begin
- DontUse
- Directly
- DontUse
- Auto
-
-
-
-
-
-
-
- OnActionPeriod
-
- ChartOfCalculationTypes.ПланВидовРасчета1
-
- true
-
- Auto
- false
-
- Managed
- Use
-
-
-
-
-
-
-
-
-
- Реквизит
-
-
- ru
- Реквизит
-
-
-
-
- cfg:EnumRef.Перечисление1
-
- false
-
-
-
- false
-
- false
- false
- false
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- DontIndex
- Use
-
-
-
-
- Реквизит1
-
-
- ru
- Реквизит1
-
-
-
-
- xs:dateTime
-
- Date
-
-
- false
-
-
-
- false
-
- false
- false
- false
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- DontIndex
- Use
-
-
-
-
-
- fe75ecf3-d941-4bf3-8ebc-dbf8cd854544
- 65d85d6b-120a-4d0b-acec-b2101bd1b71e
-
-
- 31952a7f-f5b4-4572-bc88-6c9eb3fe6c70
- 237677d1-7495-47d2-ad7c-f5970457dc7b
-
-
-
- ТабличнаяЧасть
-
-
- ru
- Табличная часть
-
-
-
-
- DontCheck
-
-
-
-
- Месяц
-
-
- ru
- Месяц
-
-
-
-
- xs:dateTime
-
- Date
-
-
- false
-
-
-
- false
-
- false
- false
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- DontIndex
- Use
-
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl" "b/src/test/resources/metadata/original/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl"
deleted file mode 100644
index a5e9bb63e..000000000
--- "a/src/test/resources/metadata/original/CommonForms/\320\244\320\276\321\200\320\274\320\260/Ext/Form/Module.bsl"
+++ /dev/null
@@ -1,7 +0,0 @@
-
-&НаКлиенте
-Процедура ПриОткрытии()
-
- Сообщить("Еще ошибочка вышла?");
-
-КонецПроцедуры
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260.xml" "b/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260.xml"
deleted file mode 100644
index 565baef1f..000000000
--- "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260.xml"
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
deleted file mode 100644
index c9bcca07e..000000000
--- "a/src/test/resources/metadata/original/DataProcessors/\320\236\320\261\321\200\320\260\320\261\320\276\321\202\320\272\320\2601/Forms/\320\244\320\276\321\200\320\274\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
deleted file mode 100644
index 47040dfa4..000000000
--- "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\222\321\213\320\261\320\276\321\200\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,150 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
deleted file mode 100644
index d354fe131..000000000
--- "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl" "b/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
deleted file mode 100644
index 296205844..000000000
--- "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202\320\260/Ext/Form/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаСервере
-Процедура ПриЗаписиНаСервере(Отказ, ТекущийОбъект, ПараметрыЗаписи)
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml" "b/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
deleted file mode 100644
index ff5076120..000000000
--- "a/src/test/resources/metadata/original/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form.xml"
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/Content.xml" "b/src/test/resources/metadata/original/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/Content.xml"
deleted file mode 100644
index a32d4df91..000000000
--- "a/src/test/resources/metadata/original/ExchangePlans/\320\237\320\273\320\260\320\275\320\236\320\261\320\274\320\265\320\275\320\2601/Ext/Content.xml"
+++ /dev/null
@@ -1,10 +0,0 @@
-
- -
- Constant.Константа1
- Deny
-
- -
- Catalog.Справочник1
- Allow
-
-
\ No newline at end of file
diff --git a/src/test/resources/metadata/original/Ext/ExternalConnectionModule.bsl b/src/test/resources/metadata/original/Ext/ExternalConnectionModule.bsl
deleted file mode 100644
index f32fa03fb..000000000
--- a/src/test/resources/metadata/original/Ext/ExternalConnectionModule.bsl
+++ /dev/null
@@ -1,6 +0,0 @@
-
-Процедура ПриНачалеРаботыСистемы()
-
- Сообщить("А этим вообще лучше не пользоваться");
-
-КонецПроцедуры
diff --git a/src/test/resources/metadata/original/Ext/ManagedApplicationModule.bsl b/src/test/resources/metadata/original/Ext/ManagedApplicationModule.bsl
deleted file mode 100644
index b1efdabba..000000000
--- a/src/test/resources/metadata/original/Ext/ManagedApplicationModule.bsl
+++ /dev/null
@@ -1,6 +0,0 @@
-
-Процедура ПередНачаломРаботыСистемы(Отказ)
-
- Сообщить("Ошибочка вышла");
-
-КонецПроцедуры
diff --git a/src/test/resources/metadata/original/Ext/SessionModule.bsl b/src/test/resources/metadata/original/Ext/SessionModule.bsl
deleted file mode 100644
index 7ffc552cb..000000000
--- a/src/test/resources/metadata/original/Ext/SessionModule.bsl
+++ /dev/null
@@ -1,6 +0,0 @@
-
-Процедура УстановкаПараметровСеанса(ТребуемыеПараметры)
-
- Сообщить("Ошибочка вышла и тут");
-
-КонецПроцедуры
diff --git "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.xml" "b/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.xml"
deleted file mode 100644
index 689d4bfa4..000000000
--- "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051.xml"
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
- 4f6ec01a-0024-4a5f-85cc-dea6e382ff45
- 1fcc7955-3f50-4999-b593-e68f727776fb
-
-
- 52890e16-b19e-4c53-a1bd-bebc2a59e37b
- 6346a5d6-c3c3-49a7-80df-1091194c8baf
-
-
- f3e0f4f6-47c2-4f9c-ba31-2e3fdc3b78c3
- 435e50bd-fe42-44b6-9988-0e6182423d9e
-
-
-
- ВнешнийИсточникДанных1
-
-
- Automatic
-
-
-
- Куб1
-
-
- Функция1
-
-
- true
-
- xs:string
-
- 10
- Variable
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Cubes/\320\232\321\203\320\2611.xml" "b/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Cubes/\320\232\321\203\320\2611.xml"
deleted file mode 100644
index cc7cf829d..000000000
--- "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Cubes/\320\232\321\203\320\2611.xml"
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
- 4c77f5d5-c5b4-4cf6-be11-bc3a35248efa
- 38808b51-0d09-4c1d-8b30-c7916c5a2b21
-
-
- 95598648-8112-4f45-a936-7913b8ebc900
- ac1f1292-e50e-4515-86df-e78d6d9fcbc9
-
-
- 8884aa83-2025-4da7-ab89-db687f77bc69
- c851e085-7d49-44df-b947-32efc39badda
-
-
- 13c8774c-f65b-44ba-a861-b2a15e14f011
- 10de81a6-7c50-4844-92d4-fff9c2bc1f1a
-
-
- 3c942530-7f29-46ac-8b25-4e3080881864
- 4f32985e-f472-4bd5-9459-798fbdede1d5
-
-
- cf4ffc78-60f4-4ca7-8ae1-42f332f670dd
- 198a64e3-7c24-4c4a-b6da-79e7f9b7dcc3
-
-
-
- Куб1
-
-
- asd
-
- false
-
-
-
-
-
-
-
- false
-
-
- ТаблицаИзмерения1
-
-
- Измерение1
-
-
-
- cfg:ExternalDataSourceCubeDimensionTableRef.ВнешнийИсточникДанных1.Куб1.ТаблицаИзмерения1
-
- false
-
-
-
- false
-
- false
- false
-
-
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
-
-
-
-
- Ресурс1
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
-
-
- Auto
-
- false
- dsasdds
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Cubes/\320\232\321\203\320\2611/DimensionTables/\320\242\320\260\320\261\320\273\320\270\321\206\320\260\320\230\320\267\320\274\320\265\321\200\320\265\320\275\320\270\321\2171.xml" "b/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Cubes/\320\232\321\203\320\2611/DimensionTables/\320\242\320\260\320\261\320\273\320\270\321\206\320\260\320\230\320\267\320\274\320\265\321\200\320\265\320\275\320\270\321\2171.xml"
deleted file mode 100644
index 8d9803aa1..000000000
--- "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Cubes/\320\232\321\203\320\2611/DimensionTables/\320\242\320\260\320\261\320\273\320\270\321\206\320\260\320\230\320\267\320\274\320\265\321\200\320\265\320\275\320\270\321\2171.xml"
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
- 7298f1a1-e9c1-43c2-8326-5c5cc8b48e9d
- d2fc3f17-98ca-48c7-be22-527885fd71f6
-
-
- 814e417e-b858-4409-b94e-1961acbe6a64
- 3d7860ea-eb1e-4477-8850-011dfbb63615
-
-
- ebf77d9d-710b-460b-9715-eeb0d4886dd9
- 591fc99d-cc5f-4029-b353-6b5e59eb2de1
-
-
- 56410d8c-5209-43a7-b16c-af6f5fca3809
- 722d3e20-9f75-4b5a-919e-d552ad03d194
-
-
-
- ТаблицаИзмерения1
-
-
- a
- ExternalDataSource.ВнешнийИсточникДанных1.Cube.Куб1.DimensionTable.ТаблицаИзмерения1.Field.Поле2
-
- 0
- false
-
- false
- false
-
-
-
-
-
-
-
-
- false
-
-
-
-
- Поле1
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- false
-
- DontCheck
-
-
- Auto
- Auto
- Auto
-
- dfg
- false
- true
-
-
-
-
- Поле2
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- false
-
- DontCheck
-
-
- Auto
- Auto
- Auto
-
- gfd
- false
- true
-
-
-
-
- Поле3
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- false
-
- DontCheck
-
-
- Auto
- Auto
- Auto
-
- rrrr
- false
- true
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Tables/\320\242\320\260\320\261\320\273\320\270\321\206\320\2601.xml" "b/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Tables/\320\242\320\260\320\261\320\273\320\270\321\206\320\2601.xml"
deleted file mode 100644
index 24ab1351b..000000000
--- "a/src/test/resources/metadata/original/ExternalDataSources/\320\222\320\275\320\265\321\210\320\275\320\270\320\271\320\230\321\201\321\202\320\276\321\207\320\275\320\270\320\272\320\224\320\260\320\275\320\275\321\213\321\2051/Tables/\320\242\320\260\320\261\320\273\320\270\321\206\320\2601.xml"
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-
- f47d4f70-1db1-4165-9997-0ce8ebe24d02
- a7404119-9bc2-4dcb-90d7-a75761f2fcac
-
-
- cf15d93c-1c40-4004-a6d9-172ab833d1aa
- 73cedcf5-801c-4f81-9bf2-824790b55874
-
-
- 03f18a98-d4da-4f1b-a337-3396b6af98e0
- 01e4411a-7aa7-4aa2-886b-75e97d5c3a55
-
-
- 20f49226-5a57-45c6-9c33-43a97a99194a
- 1d312273-dc81-4951-a9da-90ebbb60444e
-
-
- 3a72f3c9-8862-453a-bf4d-605db4260e4e
- d6fc5093-a62d-4242-9dc7-d26851099d0b
-
-
- 90eb4601-d756-4a0c-a1d2-b707fe3c3269
- a10d0c23-711c-4d3c-a487-23e455229b40
-
-
- 7a2db528-10cc-4e87-97ff-58fed858d50a
- 97b6e2a8-e2f9-431c-80c8-300592f5eb7e
-
-
-
- Таблица1
-
-
- Table
- ww
-
- ObjectData
-
- ExternalDataSource.ВнешнийИсточникДанных1.Table.Таблица1.Field.Поле1
-
- ExternalDataSource.ВнешнийИсточникДанных1.Table.Таблица1.Field.Поле2
-
-
-
- true
- false
-
- ExternalDataSource.ВнешнийИсточникДанных1.Table.Таблица1.Field.Поле1
- ExternalDataSource.ВнешнийИсточникДанных1.Table.Таблица1.Field.Поле2
-
- Auto
- Begin
- Directly
- Auto
-
-
-
-
-
-
-
-
-
-
-
- false
- false
- Auto
-
- InDialog
-
-
- Automatic
-
-
-
-
- Поле1
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- false
-
- DontCheck
-
-
- Auto
- Auto
- Auto
-
- ss
- false
- false
-
-
-
-
- Поле2
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- false
-
- DontCheck
-
-
- Auto
- Auto
- Auto
-
- dd
- false
- true
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml" "b/src/test/resources/metadata/original/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml"
deleted file mode 100644
index 18a21b034..000000000
--- "a/src/test/resources/metadata/original/FunctionalOptionsParameters/\320\237\320\260\321\200\320\260\320\274\320\265\321\202\321\200\320\244\321\203\320\275\320\272\321\206\320\270\320\276\320\275\320\260\320\273\321\214\320\275\321\213\321\205\320\236\320\277\321\206\320\270\320\2711.xml"
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- ПараметрФункциональныхОпций1
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml" "b/src/test/resources/metadata/original/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
deleted file mode 100644
index 117e8329e..000000000
--- "a/src/test/resources/metadata/original/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011.xml"
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
- HTTPСервис1
-
-
- test.test
- AutoUse
- 20
-
-
-
-
- ШаблонURL1
-
-
- /*
-
-
-
-
- Метод1
-
-
- GET
- ШаблонURL1Метод1
-
-
-
-
- Метод2
-
-
- DELETE
- ШаблонURL1Метод2
-
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl" "b/src/test/resources/metadata/original/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl"
deleted file mode 100644
index 43baf6020..000000000
--- "a/src/test/resources/metadata/original/HTTPServices/HTTP\320\241\320\265\321\200\320\262\320\270\321\2011/Ext/Module.bsl"
+++ /dev/null
@@ -1,10 +0,0 @@
-
-Функция ШаблонURL1Метод1(Запрос)
- Ответ = Новый HTTPСервисОтвет(200);
- Возврат Ответ;
-КонецФункции
-
-Функция ШаблонURL1Метод2(Запрос)
- Ответ = Новый HTTPСервисОтвет(200);
- Возврат Ответ;
-КонецФункции
diff --git "a/src/test/resources/metadata/original/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml" "b/src/test/resources/metadata/original/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
deleted file mode 100644
index 6e31153b3..000000000
--- "a/src/test/resources/metadata/original/InformationRegisters/\320\240\320\265\320\263\320\270\321\201\321\202\321\200\320\241\320\262\320\265\320\264\320\265\320\275\320\270\320\2711.xml"
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-
- 1b35d8b5-6682-42e9-b6d1-3f268d33dd59
- 4a2190b7-a9b4-4491-b8cb-56411ec751f0
-
-
- 7b310ff4-a50d-4255-87a0-4e6deaa917ac
- d0455001-262e-4d47-bff6-8202e4bba609
-
-
- 51f30b43-1c6a-4261-9f5c-a6fbb904fb49
- e0e800b4-e3dc-4026-b983-a3ad404112ae
-
-
- 7937c8e3-a6fc-443a-afe7-cad0d37d5283
- e25078c9-65a6-4bdb-80b3-1b1707713af8
-
-
- 9de53169-8425-4e8b-a323-b71457a7d07d
- 41c0f45f-be8f-4141-9254-cea81f78a965
-
-
- af026454-0f88-4c18-83f9-262c98a8ef9c
- 161c22d0-254f-49c5-bea2-138eef379b70
-
-
- e0c9de77-853e-44ac-bc6e-b53340795e6d
- 5ad35c5b-5cec-4f18-b070-2351614cbcdb
-
-
-
- РегистрСведений1
-
-
- true
- InDialog
-
-
-
-
- Nonperiodical
- Independent
- false
- false
- Managed
- DontUse
- false
- false
-
-
-
-
-
-
-
-
-
- Ресурсц
-
-
- ru
- Ресурсц
-
-
-
-
- xs:decimal
-
- 10
- 0
- Any
-
-
- false
-
-
-
- false
-
- false
- false
- false
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- DontIndex
- Use
-
-
-
-
- Измерение1
-
-
-
- xs:string
-
- 10
- Variable
-
-
- false
-
-
-
- false
-
- false
- false
-
-
- false
-
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- true
- true
- true
- DontIndex
- Use
-
-
-
-
- ИзмерениеДата
-
-
- ru
- Измерение дата
-
-
-
-
- xs:dateTime
-
- Date
-
-
- false
-
-
-
- false
-
- false
- false
- false
- DontCheck
- Items
-
-
- Auto
- Auto
-
-
- Auto
- false
- true
- false
- DontIndex
- Use
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Languages/\320\220\320\275\320\263\320\273\320\270\320\271\321\201\320\272\320\270\320\271.xml" "b/src/test/resources/metadata/original/Languages/\320\220\320\275\320\263\320\273\320\270\320\271\321\201\320\272\320\270\320\271.xml"
deleted file mode 100644
index 51029db18..000000000
--- "a/src/test/resources/metadata/original/Languages/\320\220\320\275\320\263\320\273\320\270\320\271\321\201\320\272\320\270\320\271.xml"
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- Английский
-
-
- ru
- Английский
-
-
- en
- English
-
-
-
- en
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/Styles/\320\241\321\202\320\270\320\273\321\2141.xml" "b/src/test/resources/metadata/original/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
deleted file mode 100644
index 23078566f..000000000
--- "a/src/test/resources/metadata/original/Styles/\320\241\321\202\320\270\320\273\321\2141.xml"
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml" "b/src/test/resources/metadata/original/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml"
deleted file mode 100644
index aa842fd0b..000000000
--- "a/src/test/resources/metadata/original/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601.xml"
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
- d72044e8-40f1-4f52-849d-5655bd275d3c
- 81a821c7-1b44-4466-8d28-10c85f019098
-
-
-
- WSСсылка1
-
-
- https://www.w3schools.com/xml/tempconvert.asmx?WSDL
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/Ext/WSDefinition.xml" "b/src/test/resources/metadata/original/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/Ext/WSDefinition.xml"
deleted file mode 100644
index c85173ba8..000000000
--- "a/src/test/resources/metadata/original/WSReferences/WS\320\241\321\201\321\213\320\273\320\272\320\2601/Ext/WSDefinition.xml"
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\241\320\232\320\224.xml" "b/src/test/resources/metadata/original_3_18/CommonTemplates/\320\241\320\232\320\224.xml"
deleted file mode 100644
index cd789d7f1..000000000
--- "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\241\320\232\320\224.xml"
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- СКД
-
-
- ru
- СКД
-
-
-
- DataCompositionSchema
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml" "b/src/test/resources/metadata/original_3_18/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
deleted file mode 100644
index e6e5f402c..000000000
--- "a/src/test/resources/metadata/original_3_18/CommonTemplates/\320\242\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\202.xml"
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- ТекстовыйДокумент
-
-
- ru
- Текстовый документ
-
-
-
- TextDocument
-
-
-
\ No newline at end of file
diff --git a/src/test/resources/metadata/original_3_18/ConfigDumpInfo.xml b/src/test/resources/metadata/original_3_18/ConfigDumpInfo.xml
deleted file mode 100644
index e681f8d53..000000000
--- a/src/test/resources/metadata/original_3_18/ConfigDumpInfo.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/test/resources/metadata/original_ext/ConfigDumpInfo.xml b/src/test/resources/metadata/original_ext/ConfigDumpInfo.xml
deleted file mode 100644
index 7e7a01709..000000000
--- a/src/test/resources/metadata/original_ext/ConfigDumpInfo.xml
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl" "b/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
deleted file mode 100644
index a00143ec9..000000000
--- "a/src/test/resources/metadata/original_ext/Documents/\320\224\320\276\320\272\321\203\320\274\320\265\320\275\321\2021/Forms/\320\244\320\276\321\200\320\274\320\260\320\241\320\277\320\270\321\201\320\272\320\260/Ext/Form/Module.bsl"
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-&НаКлиенте
-Процедура ПриПовторномОткрытии()
- //TODO: Вставить содержимое обработчика
-КонецПроцедуры