Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed bug with looping #68

Merged
merged 2 commits into from
May 8, 2024
Merged

Fixed bug with looping #68

merged 2 commits into from
May 8, 2024

Conversation

denisushakov
Copy link
Contributor

@denisushakov denisushakov commented May 7, 2024

Summary by CodeRabbit

  • Refactor

    • Renamed and updated functionality in multiple modules for improved system efficiency.
    • Updated function calls to enhance maintainability and consistency.
  • Bug Fixes

    • Resolved module reference inconsistencies for smoother operations and integration within server utilities.
  • Documentation

    • Updated comments and references for better clarity reflecting the new module redirection setup.

Copy link

coderabbitai bot commented May 7, 2024

Walkthrough

The recent modifications across multiple modules primarily involve renaming and redirecting function calls from ОбщийМодуль to ПереадресацияОбщегоМодуля. This change standardizes the method for accessing common modules, enhancing maintainability and clarity in the codebase. The alterations affect both server and client-side scripts, ensuring consistent functionality and streamlined module management.

Changes

File Path Change Summary
src/cf/CommonModules/__.../Ext/Module.bsl Renamed ОбщийМодуль to ПереадресацияОбщегоМодуля across various modules. Updated function calls accordingly.
src/cf/CommonModules/__...Служебный/Ext/Module.bsl Updated function calls to use ПереадресацияОбщегоМодуля for module retrieval.

🐰✨
In the land of code where the modules intertwine,
A rabbit hopped through, making updates so fine.
From ОбщийМодуль to Переадресация, he leaped,
Ensuring the code garden was beautifully kept.
With every hop, a function call aligned,
Celebrating changes, one hop at a time! 🌟🌿


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

This comment has been minimized.

Copy link

Passed

Analysis Details

2 Issues

  • Bug 0 Bugs
  • Vulnerability 0 Vulnerabilities
  • Code Smell 2 Code Smells

Coverage and Duplications

  • Coverage No coverage information (0.00% Estimated after merge)
  • Duplications 0.00% Duplicated Code (0.50% Estimated after merge)

Project ID: PSSL

View in SonarQube

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 6

Out of diff range and nitpick comments (1)
src/cf/CommonModules/__ОбщегоНазначенияСервер/Ext/Module.bsl (1)

Line range hint 813-833: Ensure the function ОбщийМодуль handles the case where the module does not exist more gracefully.

Функция ОбщийМодуль(Имя) Экспорт
    Если Метаданные.ОбщиеМодули.Найти(Имя) <> Неопределено Тогда
        УстановитьБезопасныйРежим(Истина);
        Модуль = Вычислить(Имя);
    ИначеЕсли СтрЧислоВхождений(Имя, ".") = 1 Тогда
        Возврат СерверныйМодульМенеджера(Имя);
    Иначе
        Модуль = Неопределено;
    КонецЕсли;
    
    Если ТипЗнч(Модуль) <> Тип("ОбщийМодуль") Тогда
        ВызватьИсключение __СтроковыеФункцииСлужебныйКлиентСервер.ПодставитьПараметрыВСтроку(
            НСтр("ru = 'Общий модуль ""%1"" не существует.'"),
            Имя);
    КонецЕсли;
    
    Возврат Модуль;
КонецФункции

This function attempts to fetch a module by name but does not handle the case where the module does not exist in a user-friendly manner. Consider adding a more descriptive error message or handling this case differently to avoid runtime errors.

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between f17690e and 9931172.
Files selected for processing (12)
  • src/cf/CommonModules/__ЖурналРегистрацииСлужебный/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ОбщегоНазначенияВызовСервера/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ОбщегоНазначенияКлиент/Ext/Module.bsl (2 hunks)
  • src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ОбщегоНазначенияСервер/Ext/Module.bsl (3 hunks)
  • src/cf/CommonModules/__ОбщегоНазначенияСлужебный/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ОбщегоНазначенияСлужебныйКлиентСервер/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ПолучениеФайловИзИнтернетаСлужебный/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ПользователиСлужебный/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__РегламентныеЗаданияСлужебныйСервер/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__СтандартныеПодсистемыСлужебныйПовтИсп/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__СтроковыеФункцииСлужебныйКлиентСервер/Ext/Module.bsl (1 hunks)
Additional Context Used
GitHub Check Runs (1)
1C: Project SubSystems Library Sonarqube Results success (5)

src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl: [warning] 109-109: src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl#L109
Добавьте описание возвращаемого значения функции


src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl: [warning] 109-109: src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl#L109
Необходимо добавить описание всех параметров метода


src/cf/CommonModules/__ПолучениеФайловИзИнтернетаСлужебный/Ext/Module.bsl: [warning] 40-40: src/cf/CommonModules/__ПолучениеФайловИзИнтернетаСлужебный/Ext/Module.bsl#L40
Длина строки 123 превышает максимально допустимую 120


src/cf/CommonModules/__РегламентныеЗаданияСлужебныйСервер/Ext/Module.bsl: [warning] 56-56: src/cf/CommonModules/__РегламентныеЗаданияСлужебныйСервер/Ext/Module.bsl#L56
Длина строки 121 превышает максимально допустимую 120


src/cf/CommonModules/__СтандартныеПодсистемыСлужебныйПовтИсп/Ext/Module.bsl: [warning] 40-40: src/cf/CommonModules/__СтандартныеПодсистемыСлужебныйПовтИсп/Ext/Module.bsl#L40
Длина строки 127 превышает максимально допустимую 120

Additional comments not posted (5)
src/cf/CommonModules/__ПользователиСлужебный/Ext/Module.bsl (1)

40-40: Change aligns with PR objectives and appears correctly implemented.

src/cf/CommonModules/__ЖурналРегистрацииСлужебный/Ext/Module.bsl (1)

41-41: Change aligns with PR objectives and appears correctly implemented.

src/cf/CommonModules/__ОбщегоНазначенияВызовСервера/Ext/Module.bsl (1)

31-33: Change aligns with PR objectives and appears correctly implemented.

src/cf/CommonModules/__СтроковыеФункцииСлужебныйКлиентСервер/Ext/Module.bsl (1)

63-63: Change aligns with PR objectives and appears correctly implemented.

src/cf/CommonModules/__ОбщегоНазначенияСлужебныйКлиентСервер/Ext/Module.bsl (1)

155-155: Change aligns with PR objectives and appears correctly implemented.

Comment on lines +776 to +799
// Возвращает ссылку на общий модуль или модуль менеджера по имени. Если подключена БСП,
// происходит переадресация на общий модуль из БСП, иначе используются встроенные модули ПБП.
//
// Параметры:
// ИмяМодуляБСП - Строка - Имя Общего модуля из Библиотеки стандартных подсистем
// ИмяМодуляВстроенного - Строка - Имя Общего модуля из Проектной библиотеки подсистем
//
// Возвращаемое значение:
// ОбщийМодуль
// МодульМенеджераОбъекта
//
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного = "") Экспорт

Имя = ИмяМодуляВстроенного;
Если __ОбщегоНазначенияПовтИсп.СуществуетБиблиотекаСтандартныхПодсистем()
И Метаданные.ОбщиеМодули.Найти(ИмяМодуляБСП) <> Неопределено Тогда
Имя = ИмяМодуляБСП;
КонецЕсли;

Модуль = ОбщийМодуль(Имя);

Возврат Модуль;

КонецФункции
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Refactor the function ПереадресацияОбщегоМодуля to improve readability and maintainability.

Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного = "") Экспорт
    Имя = ИмяМодуляВстроенного;
    Если __ОбщегоНазначенияПовтИсп.СуществуетБиблиотекаСтандартныхПодсистем() И Метаданные.ОбщиеМодули.Найти(ИмяМодуляБСП) <> Неопределено Тогда
        Имя = ИмяМодуляБСП;
    КонецЕсли;
    Возврат ОбщийМодуль(Имя);
КонецФункции

This refactoring simplifies the function by removing unnecessary blank lines and aligning the control flow structures for better readability.

@@ -155,7 +155,7 @@
#Область СлужебныеПроцедурыИФункции

Функция ПолучитьМодуль()
Возврат __ОбщегоНазначенияПовтИсп.ОбщийМодуль("ОбщегоНазначения", "__ОбщегоНазначенияСервер");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("ОбщегоНазначения", "__ОбщегоНазначенияСервер");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tip

Codebase Verification

The verification process has revealed that the old function ОбщийМодуль is still being used extensively across various modules in the codebase. This contradicts the PR's objective to replace it with ПереадресацияОбщегоМодуля to address looping issues. The occurrences are not isolated to a specific area but are widespread, indicating that the replacement has not been fully implemented.

Locations still using ОбщийМодуль:

  • src/cfe/YAXUnit/DataProcessors/ЮТКонструкторТестовыхДанных/Forms/КлиентскийКонструктор/Ext/Form/Module.bsl
  • src/cfe/YAXUnit/CommonModules/ЮТест/Ext/Module.bsl
  • src/cfe/YAXUnit/CommonModules/ЮТУтвержденияИБ/Ext/Module.bsl
  • src/cf/CommonModules/__ОбщегоНазначенияСервер/Ext/Module.bsl
  • src/cf/CommonModules/__ОбщегоНазначенияКлиент/Ext/Module.bsl
  • src/cf/Catalogs/__ПользовательскиеФункции/Forms/ФормаЭлемента/Ext/Form/Module.bsl
  • Many more locations as listed in the output.

These findings suggest that the transition to the new function is incomplete, and further work is needed to ensure consistency across the entire codebase.

Analysis chain

Change aligns with PR objectives to address looping issues by updating module access method.

Scripts Executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify that `ПереадресацияОбщегоМодуля` is consistently used across the codebase.

# Test: Search for the old function usage. Expect: No occurrences of the old function.
rg --type bsl $'ОбщийМодуль'

Length of output: 135



Script:

#!/bin/bash
# Description: Verify that `ПереадресацияОбщегоМодуля` is consistently used across the codebase and `ОбщийМодуль` is not used.

# Test: Search for the old function usage across all files, as the file type 'bsl' was not recognized previously.
rg 'ОбщийМодуль' --text

Length of output: 19964

Comment on lines 108 to 111
// См. __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля.
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт

Возврат __ОбщегоНазначенияСервер.ОбщийМодуль(ИмяМодуляБСП, ИмяМодуляВстроенного);
Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function ПереадресацияОбщегоМодуля correctly replaces ОбщийМодуль. Add descriptions for parameters and return value for clarity.

+ // Параметры:
+ //  ИмяМодуляБСП - Строка - имя базового модуля.
+ //  ИмяМодуляВстроенного - Строка - имя встроенного модуля.
+ //
+ // Возвращаемое значение:
+ //  ОбщийМодуль - ссылка на общий модуль.

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
// См. __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля.
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт
Возврат __ОбщегоНазначенияСервер.ОбщийМодуль(ИмяМодуляБСП, ИмяМодуляВстроенного);
Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);
// См. __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля.
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт
// Параметры:
// ИмяМодуляБСП - Строка - имя базового модуля.
// ИмяМодуляВстроенного - Строка - имя встроенного модуля.
//
// Возвращаемое значение:
// ОбщийМодуль - ссылка на общий модуль.
Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);

@@ -37,7 +37,7 @@
#Область СлужебныеПроцедурыИФункции

Функция ПолучитьМодуль()
Возврат __ОбщегоНазначенияПовтИсп.ОбщийМодуль("СтандартныеПодсистемыПовтИсп", "__СтандартныеПодсистемыПовтИсп");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("СтандартныеПодсистемыПовтИсп", "__СтандартныеПодсистемыПовтИсп");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change aligns with PR objectives but consider breaking the line to adhere to the maximum line length of 120 characters.

- Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("СтандартныеПодсистемыПовтИсп", "__СтандартныеПодсистемыПовтИсп");
+ Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля(
+   "СтандартныеПодсистемыПовтИсп", "__СтандартныеПодсистемыПовтИсп");

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("СтандартныеПодсистемыПовтИсп", "__СтандартныеПодсистемыПовтИсп");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля(
"СтандартныеПодсистемыПовтИсп", "__СтандартныеПодсистемыПовтИсп");

@@ -37,7 +37,7 @@
#Область СлужебныеПроцедурыИФункции

Функция ПолучитьМодуль()
Возврат __ОбщегоНазначенияПовтИсп.ОбщийМодуль("ПолучениеФайловИзИнтернета", "__ПолучениеФайловИзИнтернета");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("ПолучениеФайловИзИнтернета", "__ПолучениеФайловИзИнтернета");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change aligns with PR objectives but consider breaking the line to adhere to the maximum line length of 120 characters.

- Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("ПолучениеФайловИзИнтернета", "__ПолучениеФайловИзИнтернета");
+ Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля(
+   "ПолучениеФайловИзИнтернета", "__ПолучениеФайловИзИнтернета");

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("ПолучениеФайловИзИнтернета", "__ПолучениеФайловИзИнтернета");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля(
"ПолучениеФайловИзИнтернета", "__ПолучениеФайловИзИнтернета");

@@ -53,7 +53,7 @@
#Область СлужебныеПроцедурыИФункции

Функция ПолучитьМодуль()
Возврат __ОбщегоНазначенияПовтИсп.ОбщийМодуль("РегламентныеЗаданияСервер", "__РегламентныеЗаданияСервер");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("РегламентныеЗаданияСервер", "__РегламентныеЗаданияСервер");
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change aligns with PR objectives but consider breaking the line to adhere to the maximum line length of 120 characters.

- Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("РегламентныеЗаданияСервер", "__РегламентныеЗаданияСервер");
+ Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля(
+   "РегламентныеЗаданияСервер", "__РегламентныеЗаданияСервер");

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля("РегламентныеЗаданияСервер", "__РегламентныеЗаданияСервер");
Возврат __ОбщегоНазначенияПовтИсп.ПереадресацияОбщегоМодуля(
"РегламентныеЗаданияСервер", "__РегламентныеЗаданияСервер");

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between 9931172 and 9a789bc.
Files selected for processing (4)
  • src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__ПолучениеФайловИзИнтернетаСлужебный/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__РегламентныеЗаданияСлужебныйСервер/Ext/Module.bsl (1 hunks)
  • src/cf/CommonModules/__СтандартныеПодсистемыСлужебныйПовтИсп/Ext/Module.bsl (1 hunks)
Files skipped from review as they are similar to previous changes (3)
  • src/cf/CommonModules/__ПолучениеФайловИзИнтернетаСлужебный/Ext/Module.bsl
  • src/cf/CommonModules/__РегламентныеЗаданияСлужебныйСервер/Ext/Module.bsl
  • src/cf/CommonModules/__СтандартныеПодсистемыСлужебныйПовтИсп/Ext/Module.bsl
Additional Context Used
GitHub Check Runs (1)
1C: Project SubSystems Library Sonarqube Results success (2)

src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl: [warning] 110-110: src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl#L110
Добавьте описание возвращаемого значения функции


src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl: [warning] 110-110: src/cf/CommonModules/__ОбщегоНазначенияПовтИсп/Ext/Module.bsl#L110
Необходимо добавить описание всех параметров метода

Comment on lines +110 to +112
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт

Возврат __ОбщегоНазначенияСервер.ОбщийМодуль(ИмяМодуляБСП, ИмяМодуляВстроенного);
Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add descriptions for parameters and return value to enhance clarity and maintainability.

+ // Параметры:
+ //  ИмяМодуляБСП - Строка - имя базового модуля.
+ //  ИмяМодуляВстроенного - Строка - имя встроенного модуля.
+ //
+ // Возвращаемое значение:
+ //  ОбщийМодуль - ссылка на общий модуль.
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт
	Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);

Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт
Возврат __ОбщегоНазначенияСервер.ОбщийМодуль(ИмяМодуляБСП, ИмяМодуляВстроенного);
Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);
// Параметры:
// ИмяМодуляБСП - Строка - имя базового модуля.
// ИмяМодуляВстроенного - Строка - имя встроенного модуля.
//
// Возвращаемое значение:
// ОбщийМодуль - ссылка на общий модуль.
Функция ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного) Экспорт
Возврат __ОбщегоНазначенияСервер.ПереадресацияОбщегоМодуля(ИмяМодуляБСП, ИмяМодуляВстроенного);

@ivanmolodec ivanmolodec merged commit f5b9f0d into develop May 8, 2024
4 checks passed
@ivanmolodec ivanmolodec deleted the CallingCommonModules branch May 8, 2024 09:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Ошибка при вызове методов модификации формы
2 participants