entity get fetched link multiple id list

This commit is contained in:
Yuri Kuznetsov
2025-02-20 16:49:37 +02:00
parent 8a8de30949
commit 963b9e9e59
2 changed files with 146 additions and 0 deletions
+52
View File
@@ -581,6 +581,58 @@ class Entity extends BaseEntity
return $this->get($idsAttribute) ?? [];
}
/**
* Get previous link-multiple field IDs.
*
* @return string[]
* @since 9.1.0
*/
public function getFetchedLinkMultipleIdList(string $field): array
{
$idsAttribute = $field . 'Ids';
if (!$this->hasAttribute($idsAttribute)) {
throw new LogicException("Called `getFetchedLinkMultipleIdList` for non-link-multiple field `$field.");
}
if (!$this->isNew()) {
if (!$this->has($idsAttribute)) {
$this->loadLinkMultipleField($field);
} else if (!$this->hasFetched($field)) {
// Set but not loaded.
$attributes = [
$field . 'Ids',
$field . 'Names',
$field . 'Types',
$field . 'Columns',
];
$map = array_reduce($attributes, function ($p, $item) {
if (!$this->has($item)) {
return $p;
}
$p[$item] = $this->get($item);
return $p;
}, []);
$this->loadLinkMultipleField($field);
// Restore set values.
$this->setMultiple($map);
}
}
if (!$this->has($idsAttribute) && !$this->isNew()) {
$this->loadLinkMultipleField($field);
}
/** @var string[] */
return $this->getFetched($idsAttribute) ?? [];
}
/**
* Has an ID in a link-multiple field.
*/
+94
View File
@@ -0,0 +1,94 @@
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2025 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace tests\integration\Espo\ORM;
use Espo\Core\Name\Field;
use Espo\Entities\Team;
use Espo\Modules\Crm\Entities\Account;
use tests\integration\Core\BaseTestCase;
class EntityTest extends BaseTestCase
{
public function testLinkMultiple(): void
{
$em = $this->getEntityManager();
$team1 = $em->createEntity(Team::ENTITY_TYPE);
$team2 = $em->createEntity(Team::ENTITY_TYPE);
$team3 = $em->createEntity(Team::ENTITY_TYPE);
$account = $em->createEntity(Account::ENTITY_TYPE, [
'teamsIds' => [
$team1->getId(),
$team2->getId(),
],
]);
$account = $em->getRDBRepositoryByClass(Account::class)->getById($account->getId());
$set = $account->getLinkMultipleIdList(Field::TEAMS);
$expected = [$team1->getId(), $team2->getId()];
$this->assertTrue(
array_diff($set, $expected) === array_diff($expected, $set)
);
//
$account = $em->getRDBRepositoryByClass(Account::class)->getById($account->getId());
$account->addLinkMultipleId(Field::TEAMS, $team3->getId());
$set = $account->getFetchedLinkMultipleIdList(Field::TEAMS);
$expected = [$team1->getId(), $team2->getId()];
$this->assertTrue(
array_diff($set, $expected) === array_diff($expected, $set)
);
$set = $account->getLinkMultipleIdList(Field::TEAMS);
$expected = [$team1->getId(), $team2->getId(), $team3->getId()];
$this->assertTrue(
array_diff($set, $expected) === array_diff($expected, $set)
);
//
$account = $em->getRDBRepositoryByClass(Account::class)->getById($account->getId());
$set = $account->getFetchedLinkMultipleIdList(Field::TEAMS);
$expected = [$team1->getId(), $team2->getId()];
$this->assertTrue(
array_diff($set, $expected) === array_diff($expected, $set)
);
}
}