Remove deprecied function $oField->Render replaced by $oField->RenderExpression()

This commit is contained in:
acognet
2022-01-18 15:32:21 +01:00
parent 06af788480
commit 4fdf8803a5
5 changed files with 8 additions and 8 deletions

View File

@@ -853,7 +853,7 @@ JS
{
$oField = new FieldExpression($sFilterCode, $oFilter->GetClassAlias());
$sListExpr = '('.implode(', ', CMDBSource::Quote($condition)).')';
$sOQLCondition = $oField->Render()." IN $sListExpr";
$sOQLCondition = $oField->RenderExpression()." IN $sListExpr";
$oNewCondition = Expression::FromOQL($sOQLCondition);
return $oNewCondition;
}