From 2f3f9c60d7494cf6028b830541feb6c2ce2d6cc0 Mon Sep 17 00:00:00 2001 From: Valery Maximov Date: Wed, 17 Jan 2024 09:25:23 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=A0=D0=B5=D0=B0=D0=BB=D0=B8=D0=B7=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=20=D1=84?= =?UTF-8?q?=D0=BE=D1=80=D0=BC=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D1=8F=20=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D0=BE=D0=B2=D0=B0=D1=82?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D1=81=D0=BA=D0=BE=D0=B3=D0=BE=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B5=D0=B4=D1=81=D1=82=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D1=8F=20=D0=BE=D0=B1=D1=8A=D0=B5=D0=BA=D1=82=D0=B0=20=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B8?= =?UTF-8?q?=20=D1=81=D0=B8=D0=BD=D0=BE=D0=BD=D0=B8=D0=BC=D0=B0.=20=D0=9F?= =?UTF-8?q?=D0=BE=D0=B4=D0=B4=D0=B5=D1=80=D0=B6=D0=B8=D0=B2=D0=B0=D0=B5?= =?UTF-8?q?=D1=82=D1=81=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D0=B2=D1=81=D0=B5?= =?UTF-8?q?=D1=85=20MD\MDClass?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/github/_1c_syntax/bsl/mdo/MD.java | 29 +++++++ .../bsl/mdo/support/MultiLanguageString.java | 21 ++++++ .../bsl/mdclasses/ConfigurationTest.java | 51 +++++++------ .../bsl/mdo/AccountingRegisterTest.java | 50 ++++++++----- .../bsl/mdo/BusinessProcessTest.java | 75 ++++++++++++++----- .../_1c_syntax/bsl/mdo/CatalogTest.java | 61 +++++++++------ 6 files changed, 205 insertions(+), 82 deletions(-) diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/MD.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/MD.java index 70573f0ab..67b0e420c 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/MD.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/MD.java @@ -75,4 +75,33 @@ default MDOType getMdoType() { */ String getComment(); + /** + * Представление объекта, формируемое на основании синонима для русского языка. + * Если синонима для русского нет, вернет иной синоним при его наличии. В противном случае вернет имя. + */ + default String getDescription() { + return getDescription("ru"); + } + + /** + * Представление объекта, формируемое на основании синонима для указанного языка. + * Если синонима для указанного языка нет, вернет иной синоним при его наличии. В противном случае вернет имя. + * + * @param code Код языка + */ + default String getDescription(String code) { + if (getSynonym().isEmpty()) { + return getName(); + } + var description = getSynonym().get(code); + if (description.isEmpty()) { + description = getSynonym().getAny(); + } + + if (description.isEmpty()) { + description = getName(); + } + + return description; + } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java index fdba4b617..9732583f8 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java @@ -82,4 +82,25 @@ public static MultiLanguageString of(@NonNull List strings) public @NonNull String get(@NonNull String lang) { return content.getOrDefault(lang, ""); } + + /** + * Возвращает первое попавшееся содержимое мультиязычной строки + * + * @return Одно из значений мультиязычной строки + */ + public @NonNull String getAny() { + if (content.isEmpty()) { + return ""; + } + return content.entrySet().iterator().next().getValue(); + } + + /** + * Возвращает признак пустоты мультиязычной строки + * + * @return Если пустая, тогда true + */ + public boolean isEmpty() { + return this == EMPTY; + } } diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationTest.java index 1bca755c1..485a86590 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdclasses/ConfigurationTest.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * 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; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * 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.BusinessProcess; import com.github._1c_syntax.bsl.mdo.Form; @@ -167,6 +167,12 @@ void testFullSSL(ArgumentsAccessor argumentsAccessor) { .hasSize(726); assertThat(cf.getPlainChildren().stream().filter(md -> md instanceof Form form && form.getData().isEmpty())) .isEmpty(); + + assertThat(cf.getSynonym().isEmpty()).isFalse(); + assertThat(cf.getSynonym().get("ru")).isEqualTo("Библиотека стандартных подсистем, редакция 3.1"); + assertThat(cf.getDescription()).isEqualTo("Библиотека стандартных подсистем, редакция 3.1"); + assertThat(cf.getDescription("ru")).isEqualTo("Библиотека стандартных подсистем, редакция 3.1"); + assertThat(cf.getDescription("en")).isEqualTo("Библиотека стандартных подсистем, редакция 3.1"); } @ParameterizedTest @@ -398,6 +404,7 @@ private static void checkChildrenSSL(Configuration cf) { cf.getAccountingRegisters().size() + cf.getCalculationRegisters().size() + cf.getBusinessProcesses().size() + cf.getTasks().size() + cf.getExternalDataSources().size()); + } private static void checkChildrenMdclasses(Configuration cf) { diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/AccountingRegisterTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/AccountingRegisterTest.java index 6e2b3df17..182d40afb 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/AccountingRegisterTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/AccountingRegisterTest.java @@ -20,21 +20,35 @@ * License along with MDClasses. */ package com.github._1c_syntax.bsl.mdo; - -import com.github._1c_syntax.bsl.test_utils.MDTestUtils; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.aggregator.ArgumentsAccessor; -import org.junit.jupiter.params.provider.CsvSource; - -class AccountingRegisterTest { - @ParameterizedTest - @CsvSource( - { - "true, mdclasses, AccountingRegisters.РегистрБухгалтерии1", - "false, mdclasses, AccountingRegisters.РегистрБухгалтерии1" - } - ) - void test(ArgumentsAccessor argumentsAccessor) { - var mdo = MDTestUtils.getMDWithSimpleTest(argumentsAccessor); - } -} + +import com.github._1c_syntax.bsl.test_utils.MDTestUtils; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.aggregator.ArgumentsAccessor; +import org.junit.jupiter.params.provider.CsvSource; + +import static org.assertj.core.api.Assertions.assertThat; + +class AccountingRegisterTest { + @ParameterizedTest + @CsvSource( + { + "true, mdclasses, AccountingRegisters.РегистрБухгалтерии1", + "false, mdclasses, AccountingRegisters.РегистрБухгалтерии1" + } + ) + void test(ArgumentsAccessor argumentsAccessor) { + var mdo = MDTestUtils.getMDWithSimpleTest(argumentsAccessor); + + var accountingRegister = (AccountingRegister) mdo; + + assertThat(accountingRegister.getSynonym().isEmpty()).isFalse(); + assertThat(accountingRegister.getSynonym().get("ru")).isEqualTo("Регистр бухгалтерии"); + assertThat(accountingRegister.getSynonym().get("en")).isEqualTo("Accounting register"); + assertThat(accountingRegister.getSynonym().get("by")).isEmpty(); + + assertThat(accountingRegister.getDescription()).isEqualTo("Регистр бухгалтерии"); + assertThat(accountingRegister.getDescription("ru")).isEqualTo("Регистр бухгалтерии"); + assertThat(accountingRegister.getDescription("en")).isEqualTo("Accounting register"); + assertThat(accountingRegister.getDescription("by")).isNotEmpty().isNotEqualTo("РегистрБухгалтерии1"); + } +} diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/BusinessProcessTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/BusinessProcessTest.java index 03eef254c..bd2a43b76 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/BusinessProcessTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/BusinessProcessTest.java @@ -20,23 +20,58 @@ * License along with MDClasses. */ package com.github._1c_syntax.bsl.mdo; - -import com.github._1c_syntax.bsl.test_utils.MDTestUtils; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.aggregator.ArgumentsAccessor; -import org.junit.jupiter.params.provider.CsvSource; - -class BusinessProcessTest { - @ParameterizedTest - @CsvSource( - { - "true, mdclasses, BusinessProcesses.БизнесПроцесс1, _edt", - "false, mdclasses, BusinessProcesses.БизнесПроцесс1", - "true, ssl_3_1, BusinessProcesses.Задание, _edt", - "false, ssl_3_1, BusinessProcesses.Задание" - } - ) - void test(ArgumentsAccessor argumentsAccessor) { - var mdo = MDTestUtils.getMDWithSimpleTest(argumentsAccessor); - } -} + +import com.github._1c_syntax.bsl.test_utils.MDTestUtils; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.aggregator.ArgumentsAccessor; +import org.junit.jupiter.params.provider.CsvSource; + +import static org.assertj.core.api.Assertions.assertThat; + +class BusinessProcessTest { + @ParameterizedTest + @CsvSource( + { + "true, mdclasses, BusinessProcesses.БизнесПроцесс1, _edt", + "false, mdclasses, BusinessProcesses.БизнесПроцесс1" + } + ) + void test(ArgumentsAccessor argumentsAccessor) { + var mdo = MDTestUtils.getMDWithSimpleTest(argumentsAccessor); + + var businessProcess = (BusinessProcess) mdo; + + assertThat(businessProcess.getSynonym().isEmpty()).isTrue(); + assertThat(businessProcess.getSynonym().get("ru")).isEmpty(); + assertThat(businessProcess.getSynonym().get("en")).isEmpty(); + assertThat(businessProcess.getSynonym().getAny()).isEmpty(); + + assertThat(businessProcess.getDescription()).isEqualTo("БизнесПроцесс1"); + assertThat(businessProcess.getDescription("ru")).isEqualTo("БизнесПроцесс1"); + assertThat(businessProcess.getDescription("en")).isEqualTo("БизнесПроцесс1"); + } + + @ParameterizedTest + @CsvSource( + { + "true, ssl_3_1, BusinessProcesses.Задание, _edt", + "false, ssl_3_1, BusinessProcesses.Задание" + } + ) + void testSSL_3_1(ArgumentsAccessor argumentsAccessor) { + var mdo = MDTestUtils.getMDWithSimpleTest(argumentsAccessor); + + var businessProcess = (BusinessProcess) mdo; + + assertThat(businessProcess.getSynonym().isEmpty()).isFalse(); + assertThat(businessProcess.getSynonym().get("ru")).isEqualTo("Задание"); + assertThat(businessProcess.getSynonym().get("en")).isEmpty(); + assertThat(businessProcess.getSynonym().getAny()).isEqualTo("Задание"); + + assertThat(businessProcess.getDescription()).isEqualTo("Задание"); + assertThat(businessProcess.getDescription("ru")).isEqualTo("Задание"); + assertThat(businessProcess.getDescription("en")).isEqualTo("Задание"); + assertThat(businessProcess.getDescription("")).isEqualTo("Задание"); + assertThat(businessProcess.getDescription("пыщь")).isEqualTo("Задание"); + } +} diff --git a/src/test/java/com/github/_1c_syntax/bsl/mdo/CatalogTest.java b/src/test/java/com/github/_1c_syntax/bsl/mdo/CatalogTest.java index 3dfdf6190..94b0b7c8f 100644 --- a/src/test/java/com/github/_1c_syntax/bsl/mdo/CatalogTest.java +++ b/src/test/java/com/github/_1c_syntax/bsl/mdo/CatalogTest.java @@ -1,30 +1,31 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * 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.mdo; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * 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.mdo; import com.github._1c_syntax.bsl.mdo.children.ObjectAttribute; import com.github._1c_syntax.bsl.mdo.children.ObjectCommand; import com.github._1c_syntax.bsl.mdo.children.ObjectForm; import com.github._1c_syntax.bsl.test_utils.MDTestUtils; +import com.github._1c_syntax.bsl.types.MdoReference; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.aggregator.ArgumentsAccessor; import org.junit.jupiter.params.provider.CsvSource; @@ -111,6 +112,22 @@ void testSSL(ArgumentsAccessor argumentsAccessor) { .noneMatch(child -> child instanceof ObjectCommand) .noneMatch(child -> child instanceof ObjectForm) ; + + assertThat(catalog.getSynonym().isEmpty()).isFalse(); + assertThat(catalog.getSynonym().get("ru")).isEqualTo("Заметки"); + assertThat(catalog.getDescription()).isEqualTo("Заметки"); + assertThat(catalog.getDescription("ru")).isEqualTo("Заметки"); + assertThat(catalog.getDescription("en")).isEqualTo("Заметки"); + + var child = catalog.findChild(MdoReference.create("Catalog.Заметки.Attribute.Автор")); + assertThat(child).isPresent(); + var attribute = (ObjectAttribute) child.get(); + assertThat(attribute.getSynonym().isEmpty()).isFalse(); + assertThat(attribute.getSynonym().get("ru")).isEqualTo("Автор"); + assertThat(attribute.getDescription()).isEqualTo("Автор"); + assertThat(attribute.getDescription("ru")).isEqualTo("Автор"); + assertThat(attribute.getDescription("en")).isEqualTo("Автор"); + } // private void checkExtInfo(FormDataOLD formData) { From a5311a3b2b9dfee169cbbf5dc9c56d594c129323 Mon Sep 17 00:00:00 2001 From: Valery Maximov Date: Wed, 17 Jan 2024 12:00:57 +0300 Subject: [PATCH 2/2] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D1=87=D1=82=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=BB=D1=8F=20explanation=20=D0=B4=D0=BB=D1=8F=20=D0=BD?= =?UTF-8?q?=D0=B5=D0=BA=D0=BE=D1=82=D0=BE=D1=80=D1=8B=D1=85=20=D0=BE=D0=B1?= =?UTF-8?q?=D1=8A=D0=B5=D0=BA=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bsl/mdo/AccountingRegister.java | 6 + .../bsl/mdo/AccumulationRegister.java | 6 + .../_1c_syntax/bsl/mdo/BusinessProcess.java | 7 + .../bsl/mdo/CalculationRegister.java | 6 + .../github/_1c_syntax/bsl/mdo/Catalog.java | 7 + .../_1c_syntax/bsl/mdo/ChartOfAccounts.java | 6 + .../bsl/mdo/ChartOfCalculationTypes.java | 6 + .../bsl/mdo/ChartOfCharacteristicTypes.java | 6 + .../github/_1c_syntax/bsl/mdo/Constant.java | 6 + .../_1c_syntax/bsl/mdo/DataProcessor.java | 7 + .../github/_1c_syntax/bsl/mdo/Document.java | 7 + .../_1c_syntax/bsl/mdo/DocumentJournal.java | 6 + .../com/github/_1c_syntax/bsl/mdo/Enum.java | 7 +- .../_1c_syntax/bsl/mdo/ExchangePlan.java | 50 +-- .../bsl/mdo/ExternalDataSource.java | 50 +-- .../_1c_syntax/bsl/mdo/FilterCriterion.java | 6 + .../bsl/mdo/InformationRegister.java | 7 + .../com/github/_1c_syntax/bsl/mdo/Report.java | 6 + .../github/_1c_syntax/bsl/mdo/Subsystem.java | 56 +-- .../com/github/_1c_syntax/bsl/mdo/Task.java | 6 + ...202\320\265\321\200\320\270\320\2701.json" | 11 +- ...273\320\265\320\275\320\270\321\2171.json" | 3 + ...276\321\206\320\265\321\201\321\2011.json" | 5 +- ...321\206\320\265\321\201\321\2011_edt.json" | 5 +- ...201\321\207\320\265\321\202\320\2601.json" | 3 + ...321\207\320\265\321\202\320\2601_edt.json" | 3 + ...276\321\207\320\275\320\270\320\2721.json" | 6 +- ...321\207\320\275\320\270\320\2721_edt.json" | 6 +- ...207\320\265\321\202\320\276\320\2621.json" | 5 +- ...320\265\321\202\320\276\320\2621_edt.json" | 5 +- ...201\321\207\320\265\321\202\320\2601.json" | 5 +- ...270\321\201\321\202\320\270\320\2721.json" | 5 +- ...321\201\321\202\320\270\320\2721_edt.json" | 5 +- .../fixtures/mdclasses/Configuration.json | 91 +++-- .../fixtures/mdclasses/Configuration_edt.json | 91 +++-- ...202\320\260\320\275\321\202\320\2601.json" | 13 +- ...320\260\320\275\321\202\320\2601_edt.json" | 13 +- ...261\320\276\321\202\320\272\320\2601.json" | 65 ++-- ...320\276\321\202\320\272\320\2601_edt.json" | 65 ++-- ...265\320\275\321\202\320\276\320\2621.json" | 5 +- ...320\275\321\202\320\276\320\2621_edt.json" | 5 +- ...203\320\274\320\265\320\275\321\2021.json" | 6 +- ...320\274\320\265\320\275\321\2021_edt.json" | 6 +- ...273\320\265\320\275\320\270\320\2651.json" | 3 + ...320\265\320\275\320\270\320\2651_edt.json" | 3 + ...261\320\274\320\265\320\275\320\2601.json" | 5 +- ...320\274\320\265\320\275\320\2601_edt.json" | 5 +- ...\217\320\241\320\243\320\221\320\224.json" | 5 +- ...\320\241\320\243\320\221\320\224_edt.json" | 5 +- ...202\320\261\320\276\321\200\320\2601.json" | 5 +- ...320\261\320\276\321\200\320\2601_edt.json" | 5 +- ...264\320\265\320\275\320\270\320\2711.json" | 3 + ...320\265\320\275\320\270\320\2711_edt.json" | 3 + ...236\321\202\321\207\320\265\321\2021.json" | 5 +- ...321\202\321\207\320\265\321\2021_edt.json" | 5 +- ...260\320\264\320\260\321\207\320\2601.json" | 3 + .../mdclasses_3_18/Configuration.json | 15 +- .../mdclasses_3_18/Configuration_edt.json | 15 +- .../fixtures/mdclasses_ext/Configuration.json | 15 +- .../mdclasses_ext/Configuration_edt.json | 15 +- ...\264\320\260\320\275\320\270\320\265.json" | 20 +- ...\320\260\320\275\320\270\320\265_edt.json" | 20 +- ...\274\320\265\321\202\320\272\320\270.json" | 8 +- ...\320\265\321\202\320\272\320\270_edt.json" | 8 +- ...\264\320\265\320\275\320\270\321\217.json" | 9 +- ...\320\265\320\275\320\270\321\217_edt.json" | 9 +- ...\201\321\202\320\265\320\274\321\213.json" | 3 + ...\222\320\260\320\273\321\216\321\202.json" | 7 +- ...\320\260\320\273\321\216\321\202_edt.json" | 7 +- ...\201\321\202\320\262\320\270\321\217.json" | 319 +++++++++--------- ...\321\202\320\262\320\270\321\217_edt.json" | 319 +++++++++--------- ...\275\320\272\320\265\321\202\320\260.json" | 13 +- ...\320\272\320\265\321\202\320\260_edt.json" | 13 +- ...\273\320\265\320\275\320\270\321\217.json" | 3 + ...\320\265\320\275\320\270\321\217_edt.json" | 3 + ...\271\320\221\320\260\320\267\321\213.json" | 3 + ...\320\221\320\260\320\267\321\213_edt.json" | 3 + ...\222\320\242\320\276\320\274\320\265.json" | 20 +- ...\320\242\320\276\320\274\320\265_edt.json" | 20 +- ...\264\320\277\320\270\321\201\320\270.json" | 3 + ...\320\277\320\270\321\201\320\270_edt.json" | 3 + ...\265\320\272\321\202\320\276\320\262.json" | 3 + ...\320\272\321\202\320\276\320\262_edt.json" | 3 + ...\270\321\202\320\265\320\273\321\217.json" | 19 +- ...\321\202\320\265\320\273\321\217_edt.json" | 19 +- 85 files changed, 1009 insertions(+), 654 deletions(-) diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java index 901017330..1bf8465ac 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccountingRegister.java @@ -88,4 +88,10 @@ public class AccountingRegister implements Register { * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java index 40a0dd08e..718d4e27e 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/AccumulationRegister.java @@ -88,6 +88,12 @@ public class AccumulationRegister implements Register { * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java index 06666d895..ba47c0963 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/BusinessProcess.java @@ -84,4 +84,11 @@ public class BusinessProcess implements ReferenceObject { * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java index 14c1d74f2..d20c4d4b7 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/CalculationRegister.java @@ -93,6 +93,12 @@ public class CalculationRegister implements Register { @Singular List recalculations; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + @Override @NonNull public List getChildren() { diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java index eb984e72a..fd7d73d94 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Catalog.java @@ -84,4 +84,11 @@ public class Catalog implements ReferenceObject { /* * Свое */ + + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java index 41266d683..9e8c328f7 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfAccounts.java @@ -101,6 +101,12 @@ public class ChartOfAccounts implements ReferenceObject { @Singular List extDimensionAccountingFlags; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + @Override public @NonNull List getAllAttributes() { var allAttributes = new ArrayList<>(ReferenceObject.super.getAllAttributes()); diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java index ddb228454..55b78cc3d 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCalculationTypes.java @@ -85,4 +85,10 @@ public class ChartOfCalculationTypes implements ReferenceObject { * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java index 2e2045e4d..fa30988b2 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ChartOfCharacteristicTypes.java @@ -85,4 +85,10 @@ public class ChartOfCharacteristicTypes implements ReferenceObject { * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Constant.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Constant.java index f593e7aec..80c85ab94 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Constant.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Constant.java @@ -76,4 +76,10 @@ public class Constant implements MDObject, ModuleOwner { */ boolean passwordMode; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java index 5981774d0..37d4f9e02 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/DataProcessor.java @@ -111,6 +111,13 @@ public class DataProcessor implements MDObject, ModuleOwner, CommandOwner, Attri * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + + @Override @NonNull public List getAllAttributes() { diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java index 245ed7f04..f63a4ba4d 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Document.java @@ -90,4 +90,11 @@ public class Document implements ReferenceObject { */ @Singular("addRegisterRecords") List registerRecords; + + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java index 51aa06ba6..cf0130ee9 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/DocumentJournal.java @@ -111,6 +111,12 @@ public class DocumentJournal implements MDObject, ModuleOwner, CommandOwner, Att @Singular("addRegisteredDocuments") List registeredDocuments; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + @Override @NonNull public List getAllAttributes() { diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java index 8c33ebdd8..558f174cf 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Enum.java @@ -98,13 +98,18 @@ public class Enum implements MDObject, ModuleOwner, CommandOwner, FormOwner, Tem * Свое */ - /** * Элементы перечисления */ @Singular List enumValues; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + @Override @NonNull public List getChildren() { diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java index bb7c8e88d..e80baa727 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExchangePlan.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * 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.mdo; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * 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.mdo; import com.github._1c_syntax.bsl.mdo.children.ObjectCommand; import com.github._1c_syntax.bsl.mdo.children.ObjectForm; @@ -102,6 +102,12 @@ public class ExchangePlan implements ReferenceObject { @Singular("addContent") List content; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + /** * Проверяет наличие объекта в составе плана обмена (вне зависимости от режима авторегистрации) * diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java index 0281ed62b..153303c8a 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/ExternalDataSource.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * 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.mdo; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * 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.mdo; import com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable; import com.github._1c_syntax.bsl.mdo.support.MultiLanguageString; @@ -72,6 +72,12 @@ public class ExternalDataSource implements MDObject, ChildrenOwner { @Singular List tables; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + // todo сделать функции и кубы @Override diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java index 6db46e23d..8344be454 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/FilterCriterion.java @@ -87,4 +87,10 @@ public class FilterCriterion implements MDObject, ModuleOwner, CommandOwner, For * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java index 85def3263..509cd3133 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/InformationRegister.java @@ -87,4 +87,11 @@ public class InformationRegister implements Register { /* * Свое */ + + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + } diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java index fff83487a..46de119b6 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Report.java @@ -111,6 +111,12 @@ public class Report implements MDObject, ModuleOwner, CommandOwner, AttributeOwn * Свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + @Override @NonNull public List getAllAttributes() { diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java index 143743957..f21a38439 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Subsystem.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * 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.mdo; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * 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.mdo; import com.github._1c_syntax.bsl.mdo.support.MultiLanguageString; import com.github._1c_syntax.bsl.mdo.support.ObjectBelonging; @@ -81,12 +81,6 @@ public class Subsystem implements MDObject, ChildrenOwner { @Singular("addContent") List content; - /** - * Пояснение/Описание - */ - @Default - MultiLanguageString explanation = MultiLanguageString.EMPTY; - /** * Родительская подсистема */ @@ -112,6 +106,12 @@ public List getChildren() { * свое */ + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + /** * Возвращает список подсистем, в которые входит указанная ссылка на объект * diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java index 57d9ca629..20ca015d7 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/Task.java @@ -94,6 +94,12 @@ public class Task implements ReferenceObject { @Singular List addressingAttributes; + /** + * Пояснение + */ + @Default + MultiLanguageString explanation = MultiLanguageString.EMPTY; + @Override @NonNull public List getChildren() { 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" index aa04612cc..3e94f5a11 100644 --- "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" @@ -30,6 +30,9 @@ "useInTotals": true } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.AccountingRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.AccountingRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner" @@ -63,13 +66,13 @@ "supportVariant": "NONE", "synonym": { "content": [ - [ - "ru", - "Регистр бухгалтерии" - ], [ "en", "Accounting register" + ], + [ + "ru", + "Регистр бухгалтерии" ] ] }, 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" index daabc2d97..c4a0a29c0 100644 --- "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" @@ -30,6 +30,9 @@ "useInTotals": true } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.AccumulationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.AccumulationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner" 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" index 637975b6e..20f5a42e1 100644 --- "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" @@ -2,6 +2,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "BUSINESS_PROCESS", @@ -23,7 +26,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/explanation" }, "tabularSections": [], "templates": [], 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" index efc873dd4..ee66a1bb2 100644 --- "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" @@ -2,6 +2,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "BUSINESS_PROCESS", @@ -23,7 +26,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.BusinessProcess/explanation" }, "tabularSections": [], "templates": [], 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" index caecbaeb7..434dc2745 100644 --- "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" @@ -90,6 +90,9 @@ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Dimension" } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner" 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" index a0fd32f02..bfcb281f0 100644 --- "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" @@ -90,6 +90,9 @@ "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Dimension" } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.CalculationRegister/children/com.github._1c_syntax.bsl.mdo.children.Resource/owner" 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" index 68baea4a7..7dc9ea331 100644 --- "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" @@ -134,6 +134,9 @@ } ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" + }, "forms": [ [ { @@ -169,7 +172,6 @@ "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" }, @@ -350,7 +352,6 @@ "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" }, @@ -425,7 +426,6 @@ "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" }, 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" index 80d18e0e3..b49d58911 100644 --- "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" @@ -134,6 +134,9 @@ } ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" + }, "forms": [ [ { @@ -169,7 +172,6 @@ "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" }, @@ -350,7 +352,6 @@ "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" }, @@ -425,7 +426,6 @@ "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" }, 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" index 7713ae2fb..09a9320c8 100644 --- "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" @@ -63,6 +63,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "extDimensionAccountingFlags": [ { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/allAttributes/com.github._1c_syntax.bsl.mdo.children.ExtDimensionAccountingFlag" @@ -87,7 +90,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/explanation" }, "tabularSections": [], "templates": [], 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" index fd9161e07..c20e93bd8 100644 --- "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" @@ -63,6 +63,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "extDimensionAccountingFlags": [ { "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/allAttributes/com.github._1c_syntax.bsl.mdo.children.ExtDimensionAccountingFlag" @@ -87,7 +90,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfAccounts/explanation" }, "tabularSections": [], "templates": [], 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" index b94b359e0..239f559a0 100644 --- "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" @@ -2,6 +2,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "CHART_OF_CALCULATION_TYPES", @@ -13,7 +16,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCalculationTypes/explanation" }, "tabularSections": [], "templates": [], 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" index 0580cb0c5..f23329690 100644 --- "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" @@ -2,6 +2,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "CHART_OF_CHARACTERISTIC_TYPES", @@ -32,7 +35,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/explanation" }, "tabularSections": [], "templates": [], 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" index d83a59221..79ce6a79a 100644 --- "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" @@ -2,6 +2,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "CHART_OF_CHARACTERISTIC_TYPES", @@ -32,7 +35,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/explanation" }, "tabularSections": [], "templates": [], diff --git a/src/test/resources/fixtures/mdclasses/Configuration.json b/src/test/resources/fixtures/mdclasses/Configuration.json index 640d06b95..0d805d6b4 100644 --- a/src/test/resources/fixtures/mdclasses/Configuration.json +++ b/src/test/resources/fixtures/mdclasses/Configuration.json @@ -128,7 +128,10 @@ } ], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "accumulationRegisters": [ @@ -206,7 +209,10 @@ } ], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "bots": [], @@ -244,7 +250,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "calculationRegisters": [ @@ -345,7 +354,10 @@ 1 ] } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "catalogs": [ @@ -456,7 +468,10 @@ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference" } } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "chartsOfAccounts": [ @@ -537,7 +552,10 @@ "kind": "CUSTOM", "indexing": "DONT_INDEX" } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "chartsOfCalculationTypes": [ @@ -562,7 +580,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "chartsOfCharacteristicTypes": [ @@ -587,7 +608,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "children": [ @@ -701,7 +725,6 @@ "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" }, @@ -769,7 +792,10 @@ "modules": [ 2 ], - "passwordMode": false + "passwordMode": false, + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "copyrights": { @@ -803,7 +829,10 @@ ], [] ], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "defaultLanguage": { @@ -896,7 +925,10 @@ "mdoRef": "Document.Документ1", "mdoRefRu": "Документ.Документ1" } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "documentNumerators": [ @@ -982,7 +1014,10 @@ 4 ], [] - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "enums": [ @@ -1025,7 +1060,10 @@ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/enums/com.github._1c_syntax.bsl.mdo.Enum/mdoReference" } } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "eventSubscriptions": [ @@ -1081,7 +1119,10 @@ 2 ], [] - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "externalDataSources": [ @@ -1203,7 +1244,10 @@ ], "dataLockControlMode": "MANAGED" } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "filterCriteria": [ @@ -1225,7 +1269,10 @@ 1 ], "commands": [], - "forms": [] + "forms": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "functionalOptions": [ @@ -1387,7 +1434,10 @@ 3 ], [] - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "roles": [ @@ -1650,7 +1700,10 @@ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue" } } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "useManagedFormInOrdinaryApplication": true, diff --git a/src/test/resources/fixtures/mdclasses/Configuration_edt.json b/src/test/resources/fixtures/mdclasses/Configuration_edt.json index 074ad8ad3..22353fbeb 100644 --- a/src/test/resources/fixtures/mdclasses/Configuration_edt.json +++ b/src/test/resources/fixtures/mdclasses/Configuration_edt.json @@ -128,7 +128,10 @@ } ], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "accumulationRegisters": [ @@ -206,7 +209,10 @@ } ], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "bots": [], @@ -244,7 +250,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "calculationRegisters": [ @@ -345,7 +354,10 @@ 1 ] } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "catalogs": [ @@ -456,7 +468,10 @@ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/catalogs/com.github._1c_syntax.bsl.mdo.Catalog/mdoReference" } } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "chartsOfAccounts": [ @@ -537,7 +552,10 @@ "kind": "CUSTOM", "indexing": "DONT_INDEX" } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "chartsOfCalculationTypes": [ @@ -562,7 +580,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "chartsOfCharacteristicTypes": [ @@ -587,7 +608,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "children": [ @@ -701,7 +725,6 @@ "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" }, @@ -769,7 +792,10 @@ "modules": [ 2 ], - "passwordMode": false + "passwordMode": false, + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "copyrights": { @@ -803,7 +829,10 @@ ], [] ], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "defaultLanguage": { @@ -896,7 +925,10 @@ "mdoRef": "Document.Документ1", "mdoRefRu": "Документ.Документ1" } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "documentNumerators": [ @@ -982,7 +1014,10 @@ 4 ], [] - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "enums": [ @@ -1025,7 +1060,10 @@ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/enums/com.github._1c_syntax.bsl.mdo.Enum/mdoReference" } } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "eventSubscriptions": [ @@ -1081,7 +1119,10 @@ 2 ], [] - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "externalDataSources": [ @@ -1203,7 +1244,10 @@ ], "dataLockControlMode": "MANAGED" } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "filterCriteria": [ @@ -1225,7 +1269,10 @@ 1 ], "commands": [], - "forms": [] + "forms": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "functionalOptions": [ @@ -1382,7 +1429,10 @@ 3 ], [] - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "roles": [ @@ -1624,7 +1674,10 @@ "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/commonAttributes/com.github._1c_syntax.bsl.mdo.CommonAttribute/dataSeparationValue" } } - ] + ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/XDTOPackages/com.github._1c_syntax.bsl.mdo.XDTOPackage/synonym" + } } ], "useManagedFormInOrdinaryApplication": true, 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" index 817ea72cf..66c262a33 100644 --- "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" @@ -1,5 +1,8 @@ {"com.github._1c_syntax.bsl.mdo.Constant": { "comment": "", + "explanation": { + "content": [] + }, "mdoReference": { "type": "CONSTANT", "mdoRef": "Constant.Константа1", @@ -7,8 +10,8 @@ }, "modules": [ { - "moduleType": "ValueManagerModule", - "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Constants/Константа1/Ext/ValueManagerModule.bsl", + "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" }, @@ -16,8 +19,8 @@ "isProtected": false }, { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/designer/mdclasses/src/cf/Constants/Константа1/Ext/ManagerModule.bsl", + "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" }, @@ -30,7 +33,7 @@ "passwordMode": false, "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.Constant/explanation" }, "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" index 592c8af09..52d7e9b6e 100644 --- "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" @@ -1,5 +1,8 @@ {"com.github._1c_syntax.bsl.mdo.Constant": { "comment": "", + "explanation": { + "content": [] + }, "mdoReference": { "type": "CONSTANT", "mdoRef": "Constant.Константа1", @@ -7,8 +10,8 @@ }, "modules": [ { - "moduleType": "ValueManagerModule", - "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Constants/Константа1/ValueManagerModule.bsl", + "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" }, @@ -16,8 +19,8 @@ "isProtected": false }, { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/edt/mdclasses/configuration/src/Constants/Константа1/ManagerModule.bsl", + "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" }, @@ -30,7 +33,7 @@ "passwordMode": false, "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.Constant/explanation" }, "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" index af0cf4755..cc5be9751 100644 --- "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" @@ -3,6 +3,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [ [ { @@ -38,9 +41,8 @@ "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": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "handlers": [], "items": [ @@ -50,7 +52,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит1", @@ -63,7 +65,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит3", @@ -76,7 +78,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит2", @@ -89,7 +91,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит4", @@ -106,42 +108,42 @@ "id": 1, "name": "Объект", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } } ], @@ -194,7 +196,6 @@ "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": [ [ @@ -263,7 +264,7 @@ "id": 170, "name": "Критичность", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Критичность", @@ -367,7 +368,7 @@ "id": 119, "name": "ПредставлениеРазделенияДанныхСеанса", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ПредставлениеРазделенияДанныхСеанса", @@ -468,7 +469,7 @@ "id": 80, "name": "Сеанс", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.Сеанс", @@ -541,7 +542,7 @@ "id": 76, "name": "Данные", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.Данные", @@ -615,7 +616,7 @@ "id": 85, "name": "РабочийСервер", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.РабочийСервер", @@ -628,7 +629,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ОсновнойIPПорт", @@ -641,7 +642,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ВспомогательныйIPПорт", @@ -693,7 +694,7 @@ "id": 71, "name": "Транзакция", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.Транзакция", @@ -710,7 +711,7 @@ "id": 206, "name": "ДатаНаСервере", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ДатаНаСервере", @@ -745,7 +746,7 @@ "id": 114, "name": "ПолеИндикаторДлительныхОпераций", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "ПолеИндикаторДлительныхОпераций", @@ -768,7 +769,7 @@ "id": 1, "name": "Объект", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -799,7 +800,7 @@ "id": 5, "name": "ОтборЖурналаРегистрации", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -818,7 +819,7 @@ "id": 2, "name": "ИнтервалДат", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -837,14 +838,14 @@ "id": 9, "name": "АдресХранилища", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "id": 11, "name": "ОтборЖурналаРегистрацииПоУмолчанию", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -863,21 +864,21 @@ "id": 14, "name": "ЗапускатьНеВФоне", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "id": 8, "name": "ИдентификаторЗадания", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "id": 10, "name": "ХранилищеДанных", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } } ], @@ -906,7 +907,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "tabularSections": [], "templates": [], 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" index 885cdd062..342cecfe5 100644 --- "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" @@ -3,6 +3,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [ [ { @@ -38,9 +41,8 @@ "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": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "handlers": [], "items": [ @@ -50,7 +52,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит1", @@ -63,7 +65,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит3", @@ -76,7 +78,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит2", @@ -89,7 +91,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Реквизит4", @@ -106,42 +108,42 @@ "id": 1, "name": "Объект", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } } ], @@ -194,7 +196,6 @@ "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": [ [ @@ -263,7 +264,7 @@ "id": 170, "name": "Критичность", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Критичность", @@ -367,7 +368,7 @@ "id": 119, "name": "ПредставлениеРазделенияДанныхСеанса", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ПредставлениеРазделенияДанныхСеанса", @@ -468,7 +469,7 @@ "id": 80, "name": "Сеанс", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.Сеанс", @@ -541,7 +542,7 @@ "id": 76, "name": "Данные", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.Данные", @@ -615,7 +616,7 @@ "id": 85, "name": "РабочийСервер", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.РабочийСервер", @@ -628,7 +629,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ОсновнойIPПорт", @@ -641,7 +642,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ВспомогательныйIPПорт", @@ -693,7 +694,7 @@ "id": 71, "name": "Транзакция", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.Транзакция", @@ -710,7 +711,7 @@ "id": 206, "name": "ДатаНаСервере", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "Журнал.ДатаНаСервере", @@ -745,7 +746,7 @@ "id": 114, "name": "ПолеИндикаторДлительныхОпераций", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "dataPath": { "segments": "ПолеИндикаторДлительныхОпераций", @@ -768,7 +769,7 @@ "id": 1, "name": "Объект", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -799,7 +800,7 @@ "id": 5, "name": "ОтборЖурналаРегистрации", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -818,7 +819,7 @@ "id": 2, "name": "ИнтервалДат", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -837,14 +838,14 @@ "id": 9, "name": "АдресХранилища", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "id": 11, "name": "ОтборЖурналаРегистрацииПоУмолчанию", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { @@ -863,21 +864,21 @@ "id": 14, "name": "ЗапускатьНеВФоне", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "id": 8, "name": "ИдентификаторЗадания", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } }, { "id": 10, "name": "ХранилищеДанных", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/forms/c/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" } } ], @@ -906,7 +907,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/explanation" }, "tabularSections": [], "templates": [], 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" index bbd127be3..ff08e9570 100644 --- "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" @@ -36,6 +36,9 @@ ], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner" @@ -62,7 +65,7 @@ ], "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "templates": [], "uuid": "c6743657-4787-40de-9a45-2493c630f626" 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" index f871f28fb..a704b085a 100644 --- "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" @@ -36,6 +36,9 @@ ], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/allAttributes/com.github._1c_syntax.bsl.mdo.children.DocumentJournalColumn/owner" @@ -62,7 +65,7 @@ ], "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "templates": [], "uuid": "c6743657-4787-40de-9a45-2493c630f626" 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" index d839af711..dcb47538a 100644 --- "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" @@ -176,6 +176,9 @@ [] ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" + }, "forms": [ [ { @@ -211,7 +214,6 @@ "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" }, @@ -401,7 +403,6 @@ "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" }, @@ -604,7 +605,6 @@ "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" }, 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" index be91ca850..510807707 100644 --- "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" @@ -176,6 +176,9 @@ [] ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/synonym" + }, "forms": [ [ { @@ -211,7 +214,6 @@ "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" }, @@ -401,7 +403,6 @@ "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" }, @@ -604,7 +605,6 @@ "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" }, 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" index 3bb5d9a75..b2380e828 100644 --- "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" @@ -28,6 +28,9 @@ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue" } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner" 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" index 303907cd9..6dc3e4955 100644 --- "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" @@ -28,6 +28,9 @@ "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue" } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner" 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" index e9586f3ae..fdc31fb29 100644 --- "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" @@ -24,6 +24,9 @@ [] ], "distributedInfoBase": false, + "explanation": { + "content": [] + }, "forms": [], "includeConfigurationExtensions": false, "mdoReference": { @@ -46,7 +49,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/explanation" }, "tabularSections": [], "templates": [], 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" index c7d812ab3..148327b23 100644 --- "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" @@ -24,6 +24,9 @@ [] ], "distributedInfoBase": false, + "explanation": { + "content": [] + }, "forms": [], "includeConfigurationExtensions": false, "mdoReference": { @@ -46,7 +49,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/explanation" }, "tabularSections": [], "templates": [], 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" index 64da13a0d..ef34187d5 100644 --- "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" @@ -328,7 +328,6 @@ "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": [] }, @@ -404,7 +403,6 @@ "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" }, @@ -483,6 +481,9 @@ } ], "comment": "", + "explanation": { + "@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" + }, "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/owner" }, 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" index b8c35a83c..6397fdf75 100644 --- "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" @@ -328,7 +328,6 @@ "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": [] }, @@ -404,7 +403,6 @@ "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" }, @@ -483,6 +481,9 @@ } ], "comment": "", + "explanation": { + "@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" + }, "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.ExternalDataSource/children/com.github._1c_syntax.bsl.mdo.children.ExternalDataSourceTable/owner" }, 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" index 6336b9ed6..70516959b 100644 --- "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" @@ -1,6 +1,9 @@ {"com.github._1c_syntax.bsl.mdo.FilterCriterion": { "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "FILTER_CRITERION", @@ -22,7 +25,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "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" index 10c523ce8..ce413eb6b 100644 --- "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" @@ -1,6 +1,9 @@ {"com.github._1c_syntax.bsl.mdo.FilterCriterion": { "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "FILTER_CRITERION", @@ -22,7 +25,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "uuid": "6e9d3381-0607-43df-866d-14ee5d65a294" }} \ 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" index 7b5eaff0d..ec3c5b4a5 100644 --- "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" @@ -30,6 +30,9 @@ "useInTotals": true } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner" 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" index 1d4325fb6..55c862279 100644 --- "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" @@ -30,6 +30,9 @@ "useInTotals": true } ], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/synonym" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/com.github._1c_syntax.bsl.mdo.children.Dimension/owner" 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" index eeea4fcb1..886815060 100644 --- "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" @@ -3,6 +3,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "REPORT", @@ -33,7 +36,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.Report/explanation" }, "tabularSections": [], "templates": [ 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" index 0b2cfbb8d..f8062cbbe 100644 --- "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" @@ -3,6 +3,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "REPORT", @@ -33,7 +36,7 @@ "objectBelonging": "OWN", "supportVariant": "NONE", "synonym": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.Report/explanation" }, "tabularSections": [], "templates": [ 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" index 992c285f6..e1708f9e7 100644 --- "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" @@ -56,6 +56,9 @@ ], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/owner" diff --git a/src/test/resources/fixtures/mdclasses_3_18/Configuration.json b/src/test/resources/fixtures/mdclasses_3_18/Configuration.json index ae5d27310..43244b336 100644 --- a/src/test/resources/fixtures/mdclasses_3_18/Configuration.json +++ b/src/test/resources/fixtures/mdclasses_3_18/Configuration.json @@ -58,7 +58,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym" + } } ], "children": [ @@ -167,7 +170,10 @@ "templates": [], "distributedInfoBase": false, "includeConfigurationExtensions": false, - "content": [] + "content": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym" + } } ], "externalDataSources": [], @@ -225,7 +231,10 @@ [] ], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym" + } } ], "integrationServices": [ diff --git a/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json b/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json index 0208bc163..486732892 100644 --- a/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json +++ b/src/test/resources/fixtures/mdclasses_3_18/Configuration_edt.json @@ -58,7 +58,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym" + } } ], "children": [ @@ -167,7 +170,10 @@ "templates": [], "distributedInfoBase": false, "includeConfigurationExtensions": false, - "content": [] + "content": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym" + } } ], "externalDataSources": [], @@ -225,7 +231,10 @@ [] ], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.Configuration/bots/com.github._1c_syntax.bsl.mdo.Bot/synonym" + } } ], "integrationServices": [ diff --git a/src/test/resources/fixtures/mdclasses_ext/Configuration.json b/src/test/resources/fixtures/mdclasses_ext/Configuration.json index 64d8ff706..6e0eb9107 100644 --- a/src/test/resources/fixtures/mdclasses_ext/Configuration.json +++ b/src/test/resources/fixtures/mdclasses_ext/Configuration.json @@ -40,7 +40,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym" + } } ], "calculationRegisters": [ @@ -218,7 +221,10 @@ "columns": [], "forms": [], "templates": [], - "registeredDocuments": [] + "registeredDocuments": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym" + } } ], "documentNumerators": [ @@ -502,7 +508,10 @@ "tabularSections": [], "forms": [], "templates": [], - "addressingAttributes": [] + "addressingAttributes": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym" + } } ], "usePurposes": [ diff --git a/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json b/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json index 500a38405..6298627f8 100644 --- a/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json +++ b/src/test/resources/fixtures/mdclasses_ext/Configuration_edt.json @@ -40,7 +40,10 @@ "attributes": [], "tabularSections": [], "forms": [], - "templates": [] + "templates": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym" + } } ], "calculationRegisters": [ @@ -254,7 +257,10 @@ } ], "templates": [], - "registeredDocuments": [] + "registeredDocuments": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym" + } } ], "documentNumerators": [ @@ -533,7 +539,10 @@ "tabularSections": [], "forms": [], "templates": [], - "addressingAttributes": [] + "addressingAttributes": [], + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdclasses.ConfigurationExtension/businessProcesses/com.github._1c_syntax.bsl.mdo.BusinessProcess/synonym" + } } ], "usePurposes": [ 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" index efb950e20..cbb270d13 100644 --- "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" @@ -1007,6 +1007,14 @@ ], "commands": [], "comment": "", + "explanation": { + "content": [ + [ + "ru", + "Задание для исполнителя" + ] + ] + }, "forms": [ [ { @@ -1042,7 +1050,6 @@ "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" }, @@ -1729,7 +1736,6 @@ "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" }, @@ -2451,7 +2457,6 @@ "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" }, @@ -3119,7 +3124,6 @@ "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" }, @@ -3697,8 +3701,8 @@ }, "modules": [ { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Ext/ManagerModule.bsl", + "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" }, @@ -3706,8 +3710,8 @@ "isProtected": false }, { - "moduleType": "ObjectModule", - "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/BusinessProcesses/Задание/Ext/ObjectModule.bsl", + "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" }, 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" index f17a039e5..045361380 100644 --- "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" @@ -1007,6 +1007,14 @@ ], "commands": [], "comment": "", + "explanation": { + "content": [ + [ + "ru", + "Задание для исполнителя" + ] + ] + }, "forms": [ [ { @@ -1042,7 +1050,6 @@ "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" }, @@ -1717,7 +1724,6 @@ "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" }, @@ -2427,7 +2433,6 @@ "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" }, @@ -3075,7 +3080,6 @@ "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" }, @@ -3653,8 +3657,8 @@ }, "modules": [ { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/ManagerModule.bsl", + "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" }, @@ -3662,8 +3666,8 @@ "isProtected": false }, { - "moduleType": "ObjectModule", - "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/BusinessProcesses/Задание/ObjectModule.bsl", + "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" }, 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" index e1bb1fbcf..9c30c0fc7 100644 --- "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" @@ -339,6 +339,9 @@ } ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -374,7 +377,6 @@ "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" }, @@ -711,7 +713,6 @@ "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": [ [ @@ -1018,7 +1019,6 @@ "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": [ [ @@ -1275,7 +1275,6 @@ "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": [ [ @@ -1428,7 +1427,6 @@ "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" }, 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" index 27e34021b..c25d602c2 100644 --- "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" @@ -339,6 +339,9 @@ } ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Catalog/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -374,7 +377,6 @@ "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" }, @@ -692,7 +694,6 @@ "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": [ [ @@ -999,7 +1000,6 @@ "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": [ [ @@ -1256,7 +1256,6 @@ "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": [ [ @@ -1409,7 +1408,6 @@ "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" }, 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" index f60cb42be..666a2486a 100644 --- "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" @@ -674,6 +674,9 @@ ], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -709,7 +712,6 @@ "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" }, @@ -2613,7 +2615,6 @@ "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" }, @@ -2787,7 +2788,6 @@ "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" }, @@ -3084,7 +3084,6 @@ "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": [ [ @@ -3694,7 +3693,6 @@ "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" }, @@ -3871,7 +3869,6 @@ "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": [ [ 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" index 788d5175a..d999c8a23 100644 --- "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" @@ -674,6 +674,9 @@ ], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.ChartOfCharacteristicTypes/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -709,7 +712,6 @@ "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" }, @@ -2589,7 +2591,6 @@ "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" }, @@ -2763,7 +2764,6 @@ "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" }, @@ -3060,7 +3060,6 @@ "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": [ [ @@ -3670,7 +3669,6 @@ "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" }, @@ -3847,7 +3845,6 @@ "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": [ [ 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" index 47eb0d001..30bcacc4f 100644 --- "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" @@ -1,5 +1,8 @@ {"com.github._1c_syntax.bsl.mdo.Constant": { "comment": "", + "explanation": { + "content": [] + }, "mdoReference": { "type": "CONSTANT", "mdoRef": "Constant.ЗаголовокСистемы", 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" index 02af332e3..b9bd6521b 100644 --- "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" @@ -83,6 +83,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -118,7 +121,6 @@ "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" }, @@ -571,7 +573,6 @@ "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": [ [ @@ -670,7 +671,6 @@ "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" }, @@ -1171,7 +1171,6 @@ "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" }, 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" index 5b12abc9d..0ae8e3333 100644 --- "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" @@ -83,6 +83,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.DataProcessor/allAttributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -118,7 +121,6 @@ "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" }, @@ -571,7 +573,6 @@ "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": [ [ @@ -670,7 +671,6 @@ "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" }, @@ -1171,7 +1171,6 @@ "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" }, 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" index c2f66bc38..13553a407 100644 --- "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" @@ -959,6 +959,9 @@ [] ], "comment": "", + "explanation": { + "content": [] + }, "forms": [ [ { @@ -994,7 +997,6 @@ "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": [ [ @@ -1173,7 +1175,7 @@ "id": 67, "name": "Статус", "title": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Статус", @@ -1242,7 +1244,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1271,7 +1273,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1283,7 +1285,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1295,7 +1297,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1307,7 +1309,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1357,7 +1359,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1369,7 +1371,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1381,7 +1383,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1393,7 +1395,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1405,7 +1407,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1455,7 +1457,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1467,7 +1469,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1479,7 +1481,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1495,7 +1497,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1541,7 +1543,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1553,7 +1555,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1565,7 +1567,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1577,7 +1579,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1589,7 +1591,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1656,7 +1658,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1668,7 +1670,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1696,7 +1698,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1727,7 +1729,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1739,7 +1741,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1751,7 +1753,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1771,7 +1773,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1783,7 +1785,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1795,7 +1797,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1807,7 +1809,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1819,7 +1821,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1831,7 +1833,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1864,7 +1866,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1981,7 +1983,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "КонтактыПанельНавигации.Контакт", @@ -2011,7 +2013,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "КонтактыПанельНавигации.КоличествоНеРассмотрено", @@ -2052,7 +2054,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -2154,7 +2156,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПредметыПанельНавигации.КоличествоНеРассмотрено", @@ -2195,7 +2197,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -2316,7 +2318,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Свойства.Представление", @@ -2329,7 +2331,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Свойства.НомерКартинки", @@ -2400,7 +2402,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Папки.НомерКартинки", @@ -2413,7 +2415,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Папки.Представление", @@ -2484,7 +2486,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Категории.НомерКартинки", @@ -2497,7 +2499,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Категории.Представление", @@ -2650,7 +2652,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Участники", @@ -2681,7 +2683,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Date", @@ -2694,7 +2696,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.ЕстьВложения", @@ -2711,7 +2713,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Тема", @@ -2746,7 +2748,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.УчетнаяЗапись", @@ -2759,7 +2761,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Ref", @@ -2809,7 +2811,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Предпросмотр", @@ -2896,7 +2898,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПредпросмотрHTML", @@ -2917,7 +2919,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ОписаниеНайденоПолнотекстовымПоиском", @@ -2946,7 +2948,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3025,7 +3027,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3044,42 +3046,42 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3098,28 +3100,28 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3138,14 +3140,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3164,35 +3166,35 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3235,112 +3237,112 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -3391,7 +3393,6 @@ "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": [ [ @@ -3466,7 +3467,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -3478,7 +3479,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ТипВзаимодействия", @@ -3491,7 +3492,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Статус", @@ -3629,7 +3630,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Участники", @@ -3642,7 +3643,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Date", @@ -3655,7 +3656,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.ЕстьВложения", @@ -3694,7 +3695,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Ref", @@ -3780,7 +3781,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.НомерКартинки", @@ -3793,7 +3794,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.Участники", @@ -3806,7 +3807,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.Дата", @@ -3823,7 +3824,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.Тема", @@ -3852,7 +3853,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3883,28 +3884,28 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3923,7 +3924,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3942,21 +3943,21 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -4007,7 +4008,6 @@ "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": [ [ @@ -4046,7 +4046,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4058,7 +4058,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4129,7 +4129,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ТекстHTML", @@ -4159,7 +4159,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4171,7 +4171,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Вложения.ИндексКартинки", @@ -4184,7 +4184,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Вложения.ИмяФайла", @@ -4197,7 +4197,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Вложения.РазмерПредставление", @@ -4232,14 +4232,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -4258,91 +4258,91 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -4393,7 +4393,6 @@ "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": [ [ @@ -4456,7 +4455,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Создано", @@ -4508,7 +4507,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ВнутреннийНомер", @@ -4521,7 +4520,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ВключатьТелоИсходногоПисьма", @@ -4542,7 +4541,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Папка", @@ -4572,7 +4571,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "УведомитьОДоставке", @@ -4585,7 +4584,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "УведомитьОПрочтении", @@ -4602,7 +4601,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ЗаголовкиИнтернета", @@ -4691,14 +4690,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -4729,21 +4728,21 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -4794,7 +4793,6 @@ "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": [ [ @@ -4816,7 +4814,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4964,7 +4962,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПодписьДляНовыхСообщенийПростойТекст", @@ -5013,7 +5011,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "НовоеСообщениеФорматированныйДокумент", @@ -5142,7 +5140,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПодписьПриОтветеПересылкеПростойТекст", @@ -5191,7 +5189,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПриОтветеПересылкеФорматированныйДокумент", @@ -5287,7 +5285,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПорядокОтветовНаЗапросыУведомленийОПрочтении", @@ -5323,7 +5321,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ОтображатьТелоИсходногоПисьма", @@ -5336,7 +5334,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ВключатьТелоИсходногоПисьма", @@ -5391,14 +5389,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -5593,7 +5591,6 @@ "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": [ [ @@ -5639,7 +5636,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ТаблицаТиповПредметов.ПредставлениеТипа", @@ -5654,7 +5651,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "НеОтображатьВзаимодействия", @@ -5683,7 +5680,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { 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" index cfe31d457..052f3d216 100644 --- "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" @@ -959,6 +959,9 @@ [] ], "comment": "", + "explanation": { + "content": [] + }, "forms": [ [ { @@ -994,7 +997,6 @@ "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": [ [ @@ -1173,7 +1175,7 @@ "id": 67, "name": "Статус", "title": { - "content": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Статус", @@ -1242,7 +1244,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1271,7 +1273,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1283,7 +1285,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1295,7 +1297,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1307,7 +1309,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1357,7 +1359,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1369,7 +1371,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1381,7 +1383,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1393,7 +1395,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1405,7 +1407,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1455,7 +1457,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1467,7 +1469,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1479,7 +1481,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1495,7 +1497,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1541,7 +1543,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1553,7 +1555,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1565,7 +1567,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1577,7 +1579,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1589,7 +1591,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1656,7 +1658,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1668,7 +1670,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1696,7 +1698,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1727,7 +1729,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1739,7 +1741,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1751,7 +1753,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1771,7 +1773,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1783,7 +1785,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1795,7 +1797,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1807,7 +1809,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1819,7 +1821,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1831,7 +1833,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1864,7 +1866,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -1981,7 +1983,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "КонтактыПанельНавигации.Контакт", @@ -2011,7 +2013,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "КонтактыПанельНавигации.КоличествоНеРассмотрено", @@ -2052,7 +2054,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -2154,7 +2156,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПредметыПанельНавигации.КоличествоНеРассмотрено", @@ -2195,7 +2197,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -2316,7 +2318,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Свойства.Представление", @@ -2329,7 +2331,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Свойства.НомерКартинки", @@ -2400,7 +2402,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Папки.НомерКартинки", @@ -2413,7 +2415,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Папки.Представление", @@ -2484,7 +2486,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Категории.НомерКартинки", @@ -2497,7 +2499,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Категории.Представление", @@ -2650,7 +2652,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Участники", @@ -2681,7 +2683,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Date", @@ -2694,7 +2696,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.ЕстьВложения", @@ -2711,7 +2713,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Тема", @@ -2746,7 +2748,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.УчетнаяЗапись", @@ -2759,7 +2761,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Ref", @@ -2809,7 +2811,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Предпросмотр", @@ -2896,7 +2898,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПредпросмотрHTML", @@ -2917,7 +2919,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ОписаниеНайденоПолнотекстовымПоиском", @@ -2946,7 +2948,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3025,7 +3027,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3044,42 +3046,42 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3098,28 +3100,28 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3138,14 +3140,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3164,35 +3166,35 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3235,112 +3237,112 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -3391,7 +3393,6 @@ "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": [ [ @@ -3466,7 +3467,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -3478,7 +3479,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ТипВзаимодействия", @@ -3491,7 +3492,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Статус", @@ -3629,7 +3630,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Участники", @@ -3642,7 +3643,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Date", @@ -3655,7 +3656,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.ЕстьВложения", @@ -3694,7 +3695,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Список.Ref", @@ -3780,7 +3781,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.НомерКартинки", @@ -3793,7 +3794,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.Участники", @@ -3806,7 +3807,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.Дата", @@ -3823,7 +3824,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ДеревоВзаимодействий.Тема", @@ -3852,7 +3853,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3883,28 +3884,28 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3923,7 +3924,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -3942,21 +3943,21 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -4007,7 +4008,6 @@ "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": [ [ @@ -4046,7 +4046,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4058,7 +4058,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4129,7 +4129,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ТекстHTML", @@ -4159,7 +4159,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4171,7 +4171,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Вложения.ИндексКартинки", @@ -4184,7 +4184,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Вложения.ИмяФайла", @@ -4197,7 +4197,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Вложения.РазмерПредставление", @@ -4232,14 +4232,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -4258,91 +4258,91 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -4393,7 +4393,6 @@ "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": [ [ @@ -4456,7 +4455,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Создано", @@ -4508,7 +4507,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ВнутреннийНомер", @@ -4521,7 +4520,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ВключатьТелоИсходногоПисьма", @@ -4542,7 +4541,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "Папка", @@ -4572,7 +4571,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "УведомитьОДоставке", @@ -4585,7 +4584,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "УведомитьОПрочтении", @@ -4602,7 +4601,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ЗаголовкиИнтернета", @@ -4691,14 +4690,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -4729,21 +4728,21 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } } ], @@ -4794,7 +4793,6 @@ "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": [ [ @@ -4816,7 +4814,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "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" @@ -4964,7 +4962,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПодписьДляНовыхСообщенийПростойТекст", @@ -5013,7 +5011,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "НовоеСообщениеФорматированныйДокумент", @@ -5142,7 +5140,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПодписьПриОтветеПересылкеПростойТекст", @@ -5191,7 +5189,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПриОтветеПересылкеФорматированныйДокумент", @@ -5287,7 +5285,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ПорядокОтветовНаЗапросыУведомленийОПрочтении", @@ -5323,7 +5321,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ОтображатьТелоИсходногоПисьма", @@ -5336,7 +5334,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ВключатьТелоИсходногоПисьма", @@ -5391,14 +5389,14 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { @@ -5593,7 +5591,6 @@ "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": [ [ @@ -5639,7 +5636,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "ТаблицаТиповПредметов.ПредставлениеТипа", @@ -5654,7 +5651,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" }, "dataPath": { "segments": "НеОтображатьВзаимодействия", @@ -5683,7 +5680,7 @@ "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" + "@reference": "/com.github._1c_syntax.bsl.mdo.DocumentJournal/explanation" } }, { 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" index 79db00c5d..b511a7970 100644 --- "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" @@ -304,6 +304,9 @@ ], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -339,7 +342,6 @@ "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" }, @@ -1317,7 +1319,6 @@ "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" }, @@ -1514,8 +1515,8 @@ }, "modules": [ { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Ext/ManagerModule.bsl", + "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" }, @@ -1523,8 +1524,8 @@ "isProtected": false }, { - "moduleType": "ObjectModule", - "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Documents/Анкета/Ext/ObjectModule.bsl", + "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" }, 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" index 1e9e6a8d6..b369c3f1c 100644 --- "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" @@ -304,6 +304,9 @@ ], "commands": [], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Document/attributes/c/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [ [ { @@ -339,7 +342,6 @@ "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" }, @@ -1309,7 +1311,6 @@ "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" }, @@ -1506,8 +1507,8 @@ }, "modules": [ { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/ManagerModule.bsl", + "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" }, @@ -1515,8 +1516,8 @@ "isProtected": false }, { - "moduleType": "ObjectModule", - "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Documents/Анкета/ObjectModule.bsl", + "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" }, 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" index 5a675e3ba..ee3d57904 100644 --- "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" @@ -140,6 +140,9 @@ ], [] ], + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner" 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" index c75ec84f1..3fa49658c 100644 --- "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" @@ -140,6 +140,9 @@ ], [] ], + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.Enum/children/com.github._1c_syntax.bsl.mdo.children.EnumValue/owner" 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" index 5bdf859f3..c110c5a30 100644 --- "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" @@ -2840,6 +2840,9 @@ [] ], "distributedInfoBase": false, + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [], "includeConfigurationExtensions": false, "mdoReference": { 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" index 4e88b5385..a39b1b129 100644 --- "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" @@ -2840,6 +2840,9 @@ [] ], "distributedInfoBase": false, + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.ExchangePlan/attributes/com.github._1c_syntax.bsl.mdo.children.ObjectAttribute/format" + }, "forms": [], "includeConfigurationExtensions": false, "mdoReference": { 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" index bdb019e92..4da0ef755 100644 --- "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" @@ -1,6 +1,9 @@ {"com.github._1c_syntax.bsl.mdo.FilterCriterion": { "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [ { "uuid": "bb29fa44-6772-4426-a0b8-422115e14288", @@ -25,9 +28,8 @@ "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": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "handlers": [], "items": [ @@ -72,7 +74,7 @@ "id": 27, "name": "ФормаИзменить", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "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" @@ -84,7 +86,7 @@ "id": 25, "name": "ФормаОбновить", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "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" @@ -135,7 +137,7 @@ "id": 6, "name": "СсылкаИндексКартинки", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.ИндексКартинки", @@ -148,7 +150,7 @@ "id": 8, "name": "СсылкаПутьКФайлу", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.ПутьКФайлу", @@ -165,7 +167,7 @@ "id": 10, "name": "СсылкаРазмер", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.Размер", @@ -178,7 +180,7 @@ "id": 12, "name": "СсылкаАвтор", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.Автор", @@ -198,7 +200,7 @@ "id": 1, "name": "Список", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" } } ] 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" index ba7023486..2769c236c 100644 --- "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" @@ -1,6 +1,9 @@ {"com.github._1c_syntax.bsl.mdo.FilterCriterion": { "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [ { "uuid": "bb29fa44-6772-4426-a0b8-422115e14288", @@ -25,9 +28,8 @@ "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": [] + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "handlers": [], "items": [ @@ -72,7 +74,7 @@ "id": 27, "name": "ФормаИзменить", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "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" @@ -84,7 +86,7 @@ "id": 25, "name": "ФормаОбновить", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "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" @@ -135,7 +137,7 @@ "id": 6, "name": "СсылкаИндексКартинки", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.ИндексКартинки", @@ -148,7 +150,7 @@ "id": 8, "name": "СсылкаПутьКФайлу", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.ПутьКФайлу", @@ -165,7 +167,7 @@ "id": 10, "name": "СсылкаРазмер", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.Размер", @@ -178,7 +180,7 @@ "id": 12, "name": "СсылкаАвтор", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" }, "dataPath": { "segments": "Список.Ref.Автор", @@ -198,7 +200,7 @@ "id": 1, "name": "Список", "title": { - "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/forms/com.github._1c_syntax.bsl.mdo.children.ObjectForm/data/title" + "@reference": "/com.github._1c_syntax.bsl.mdo.FilterCriterion/explanation" } } ] 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" index 4e315485e..1ca2f49de 100644 --- "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" @@ -67,6 +67,9 @@ ], [] ], + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner" 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" index f30302a7d..946f88617 100644 --- "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" @@ -67,6 +67,9 @@ ], [] ], + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "@reference": "/com.github._1c_syntax.bsl.mdo.InformationRegister/dimensions/c/com.github._1c_syntax.bsl.mdo.children.Dimension/owner" 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" index 862d4cd35..94301e0b5 100644 --- "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" @@ -3,6 +3,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "REPORT", 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" index a336a98b6..a5552fc02 100644 --- "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" @@ -3,6 +3,9 @@ "attributes": [], "commands": [], "comment": "", + "explanation": { + "content": [] + }, "forms": [], "mdoReference": { "type": "REPORT", 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" index f7d1c5df2..e564c545e 100644 --- "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" @@ -935,7 +935,6 @@ "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": [ [ @@ -1354,7 +1353,6 @@ "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": [ [ @@ -1757,7 +1755,6 @@ "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": [ [ @@ -2512,7 +2509,6 @@ "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": [ [ @@ -3115,7 +3111,6 @@ "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": [ [ @@ -3697,7 +3692,6 @@ "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": [ [ @@ -4197,7 +4191,6 @@ "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" }, @@ -4777,7 +4770,6 @@ "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" }, @@ -5676,6 +5668,9 @@ [] ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" + }, "forms": [ [ { @@ -5710,8 +5705,8 @@ }, "modules": [ { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ManagerModule.bsl", + "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" }, @@ -5719,8 +5714,8 @@ "isProtected": false }, { - "moduleType": "ObjectModule", - "uri": "src/test/resources/ext/designer/ssl_3_1/src/cf/Tasks/ЗадачаИсполнителя/Ext/ObjectModule.bsl", + "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" }, 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" index 2273c0edf..b542296cf 100644 --- "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" @@ -935,7 +935,6 @@ "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": [ [ @@ -1343,7 +1342,6 @@ "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": [ [ @@ -1746,7 +1744,6 @@ "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": [ [ @@ -2501,7 +2498,6 @@ "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": [ [ @@ -3104,7 +3100,6 @@ "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": [ [ @@ -3686,7 +3681,6 @@ "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": [ [ @@ -4186,7 +4180,6 @@ "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" }, @@ -4758,7 +4751,6 @@ "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" }, @@ -5657,6 +5649,9 @@ [] ], "comment": "", + "explanation": { + "@reference": "/com.github._1c_syntax.bsl.mdo.Task/addressingAttributes/c/com.github._1c_syntax.bsl.mdo.children.TaskAddressingAttribute/format" + }, "forms": [ [ { @@ -5691,8 +5686,8 @@ }, "modules": [ { - "moduleType": "ManagerModule", - "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/ManagerModule.bsl", + "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" }, @@ -5700,8 +5695,8 @@ "isProtected": false }, { - "moduleType": "ObjectModule", - "uri": "src/test/resources/ext/edt/ssl_3_1/configuration/src/Tasks/ЗадачаИсполнителя/ObjectModule.bsl", + "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" },