1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-11-24 08:52:18 +02:00

Преобразование OPI -> OInt (workflow)

This commit is contained in:
Vitaly the Alpaca 2024-06-08 12:25:42 +00:00 committed by Vitaly the Alpaca (bot)
parent b46c2ae734
commit 5b2c0836be

View File

@ -48,7 +48,7 @@ Function ConvertBase64ToBinary(Val Entry) Export
InputFile = New File(Entry);
If Not InputFile.Exists() Then
If Not InputFile.Exist() Then
Raise("Input File Not Found!");
EndIf;
@ -177,7 +177,7 @@ Procedure GetCollection(Value, Val Encoding)
File = New File(Value);
TextDocument = New TextDocument();
If File.Exists() Then
If File.Exist() Then
TextDocument.Read(Value, Encoding);
Value = TextDocument.GetText();