mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-08 21:28:23 +00:00
Fix the fusion of thirdparty properties that are located in another schema than public for TO_ONE relations + add extra loop for MANY_TO_MANY relations where thirdparty is the source instead of the target
This commit is contained in:
6
.changes/unreleased/Fixed-20251106-123641.yaml
Normal file
6
.changes/unreleased/Fixed-20251106-123641.yaml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
kind: Fixed
|
||||||
|
body: Fix the fusion of thirdparty properties that are located in another schema than public for TO_ONE relations + add extra loop for MANY_TO_MANY relations where thirdparty is the source instead of the target
|
||||||
|
time: 2025-11-06T12:36:41.555991969+01:00
|
||||||
|
custom:
|
||||||
|
Issue: "457"
|
||||||
|
SchemaChange: No schema change
|
||||||
@@ -69,10 +69,11 @@ readonly class ThirdpartyMergeService
|
|||||||
if (($assoc['type'] & ClassMetadata::TO_ONE) !== 0) {
|
if (($assoc['type'] & ClassMetadata::TO_ONE) !== 0) {
|
||||||
$joinColumn = $meta->getSingleAssociationJoinColumnName($assoc['fieldName']);
|
$joinColumn = $meta->getSingleAssociationJoinColumnName($assoc['fieldName']);
|
||||||
|
|
||||||
$suffix = (ThirdParty::class === $assoc['sourceEntity']) ? 'chill_3party.' : '';
|
$schema = $meta->getSchemaName();
|
||||||
|
$prefix = null !== $schema && '' !== $schema ? $schema.'.' : '';
|
||||||
|
|
||||||
$queries[] = [
|
$queries[] = [
|
||||||
'sql' => "UPDATE {$suffix}{$tableName} SET {$joinColumn} = :toKeep WHERE {$joinColumn} = :toDelete",
|
'sql' => "UPDATE {$prefix}{$tableName} SET {$joinColumn} = :toKeep WHERE {$joinColumn} = :toDelete",
|
||||||
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
||||||
];
|
];
|
||||||
} elseif (ClassMetadata::MANY_TO_MANY === $assoc['type'] && isset($assoc['joinTable'])) {
|
} elseif (ClassMetadata::MANY_TO_MANY === $assoc['type'] && isset($assoc['joinTable'])) {
|
||||||
@@ -85,13 +86,33 @@ readonly class ThirdpartyMergeService
|
|||||||
];
|
];
|
||||||
|
|
||||||
$queries[] = [
|
$queries[] = [
|
||||||
'sql' => "DELETE FROM {$joinTable} WHERE {$joinColumn} = :toDelete",
|
'sql' => "DELETE FROM {$prefix}{$joinTable} WHERE {$joinColumn} = :toDelete",
|
||||||
'params' => ['toDelete' => $toDelete->getId()],
|
'params' => ['toDelete' => $toDelete->getId()],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Also handle many-to-many where ThirdParty is the source
|
||||||
|
$thirdPartyMeta = $this->em->getClassMetadata(ThirdParty::class);
|
||||||
|
foreach ($thirdPartyMeta->getAssociationMappings() as $assoc) {
|
||||||
|
if (ClassMetadata::MANY_TO_MANY === $assoc['type'] && isset($assoc['joinTable'])) {
|
||||||
|
$joinTable = $assoc['joinTable']['name'];
|
||||||
|
$prefix = null !== ($assoc['joinTable']['schema'] ?? null) ? $assoc['joinTable']['schema'].'.' : '';
|
||||||
|
$joinColumn = $assoc['joinTable']['joinColumns'][0]['name']; // Note: joinColumns, not inverseJoinColumns
|
||||||
|
|
||||||
|
$queries[] = [
|
||||||
|
'sql' => "UPDATE {$prefix}{$joinTable} SET {$joinColumn} = :toKeep WHERE {$joinColumn} = :toDelete",
|
||||||
|
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
||||||
|
];
|
||||||
|
|
||||||
|
$queries[] = [
|
||||||
|
'sql' => "DELETE FROM {$prefix}{$joinTable} WHERE {$joinColumn} = :toDelete",
|
||||||
|
'params' => ['toDelete' => $toDelete->getId()],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $queries;
|
return $queries;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,10 +123,10 @@ readonly class ThirdpartyMergeService
|
|||||||
'sql' => 'UPDATE chill_3party.third_party SET parent_id = :toKeep WHERE parent_id = :toDelete',
|
'sql' => 'UPDATE chill_3party.third_party SET parent_id = :toKeep WHERE parent_id = :toDelete',
|
||||||
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
||||||
],
|
],
|
||||||
[
|
/* [
|
||||||
'sql' => 'UPDATE chill_3party.thirdparty_category SET thirdparty_id = :toKeep WHERE thirdparty_id = :toDelete AND NOT EXISTS (SELECT 1 FROM chill_3party.thirdparty_category WHERE thirdparty_id = :toKeep)',
|
'sql' => 'UPDATE chill_3party.thirdparty_category SET thirdparty_id = :toKeep WHERE thirdparty_id = :toDelete AND NOT EXISTS (SELECT 1 FROM chill_3party.thirdparty_category WHERE thirdparty_id = :toKeep)',
|
||||||
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
||||||
],
|
],*/
|
||||||
[
|
[
|
||||||
'sql' => 'DELETE FROM chill_3party.third_party WHERE id = :toDelete',
|
'sql' => 'DELETE FROM chill_3party.third_party WHERE id = :toDelete',
|
||||||
'params' => ['toDelete' => $toDelete->getId()],
|
'params' => ['toDelete' => $toDelete->getId()],
|
||||||
|
|||||||
Reference in New Issue
Block a user