Small updates to fP

This commit is contained in:
2025-10-29 12:43:09 +03:00
parent f0a3c4662b
commit 0789260733

View File

@@ -14,7 +14,10 @@ let
PATH_OVERRIDE = try if P_NAME = "PATH_OVERRIDE" then null else @fP("PATH_OVERRIDE") otherwise null,
P_TYPE = if GET_PARAMETER <> null then
if P_FORCED_TYPE = null then GET_PARAMETER[ТИП] else P_FORCED_TYPE
if P_FORCED_TYPE = null then
GET_PARAMETER[ТИП]
else
P_FORCED_TYPE
else
null,
@@ -65,6 +68,8 @@ let
Result,
// СПИСОК В ФОРМАТЕ PQ
// Ввод через точку с запятой, напр.: 1;2;яблоко;-10
// Точка с запятой плюс пробел меняются на точку с запятой
F_List = (Input as any) => let
Result = Text.Split(Text.Replace(Text.From(Input), "; ", ";"), ";")
in