N°5603 - Autocomplete fails with error for an external key pointing to an abstract class with no friendlyname (#375)

This commit is contained in:
Anne-Catherine
2023-02-27 16:18:36 +01:00
committed by GitHub
parent bfe55183d0
commit af8f06c8c3
3 changed files with 158 additions and 140 deletions

View File

@@ -0,0 +1,17 @@
<?php
class MockValueSetObjects extends ValueSetObjects
{
public function __construct($sFilterExp, $sValueAttCode = '', $aOrderBy = array(), $bAllowAllData = false, $aModifierProperties = array())
{
parent::__construct($sFilterExp, $sValueAttCode , $aOrderBy, $bAllowAllData, $aModifierProperties );
}
public function GetFilterOQL(
$sOperation, $sContains
)
{
return $this->GetFilter($sOperation, $sContains)->ToOQL();
}
}