mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Modify translations and if conditions in updateReference method
This commit is contained in:
parent
6db16e6d0b
commit
d84f3ee5ad
@ -48,8 +48,8 @@
|
||||
<li>
|
||||
<a href="{{ chill_path_add_return_path('chill_thirdparty_find_duplicate',
|
||||
{ 'thirdparty_id': entity.id }) }}"
|
||||
title="{{ 'thirdparty_duplicate.merge'|trans }}"
|
||||
class="btn btn-misc">{{ 'thirdparty_duplicate.merge'|trans }}</a>
|
||||
title="{{ 'Merge'|trans }}"
|
||||
class="btn btn-misc">{{ 'Merge'|trans }}</a>
|
||||
</li>
|
||||
{% endblock %}
|
||||
{% block content_view_actions_edit_link %}
|
||||
|
@ -8,7 +8,7 @@
|
||||
{% block content %}
|
||||
<div class="person-duplicate">
|
||||
|
||||
<h1>{{ 'find duplicate thirdparty'|trans }}</h1>
|
||||
<h1>{{ 'find_thirdparty_duplicate'|trans }}</h1>
|
||||
|
||||
{{ form_start(form) }}
|
||||
{{ form_rest(form) }}
|
||||
|
@ -86,7 +86,7 @@ class ThirdpartyMergeService
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ClassMetadata::TO_ONE === $assoc['type']) {
|
||||
if ($assoc['type'] & ClassMetadata::TO_ONE) {
|
||||
$joinColumn = $meta->getSingleAssociationJoinColumnName($assoc['fieldName']);
|
||||
|
||||
if (ThirdParty::class === $assoc['sourceEntity'] && 'parent_id' !== $joinColumn) {
|
||||
@ -104,21 +104,18 @@ class ThirdpartyMergeService
|
||||
];
|
||||
}
|
||||
|
||||
if (ClassMetadata::TO_MANY === $assoc['type'] && isset($assoc['joinTable'])) {
|
||||
|
||||
if ($assoc['type'] === 8 && isset($assoc['joinTable'])) {
|
||||
$joinTable = $assoc['joinTable']['name'];
|
||||
$joinColumn = $assoc['joinTable']['joinColumns'][0]['name'];
|
||||
if ('thirdparty_id' === $joinColumn) {
|
||||
$queries[] = [
|
||||
'sql' => "UPDATE {$joinTable} SET {$joinColumn} = :toKeep WHERE {$joinColumn} = :toDelete AND NOT EXISTS (SELECT 1 FROM {$joinTable} WHERE {$joinColumn} = :toKeep)",
|
||||
'params' => ['toDelete' => $toDelete->getId(), 'toKeep' => $toKeep->getId()],
|
||||
];
|
||||
|
||||
$queries[] = [
|
||||
'sql' => "DELETE FROM {$joinTable} WHERE {$joinColumn} = :toDelete",
|
||||
'params' => ['toDelete' => $toDelete->getId()],
|
||||
];
|
||||
} else {
|
||||
$queries[] = [
|
||||
'sql' => "UPDATE {$joinTable} SET {$joinColumn} = :toKeep WHERE {$joinColumn} = :toDelete",
|
||||
'params' => ['toKeep' => $toKeep->getId(), 'toDelete' => $toDelete->getId()],
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -133,6 +133,4 @@ is thirdparty: Le demandeur est un tiers
|
||||
|
||||
Filter by person's who have a residential address located at a thirdparty of type: Filtrer les usagers qui ont une addresse de résidence chez un tiers
|
||||
"Filtered by person's who have a residential address located at a thirdparty of type %thirdparty_type% and valid on %date_calc%": "Uniquement les usagers qui ont une addresse de résidence chez un tiers de catégorie %thirdparty_type% et valide sur la date %date_calc%"
|
||||
thirdparty_duplicate:
|
||||
merge: Fussioner
|
||||
find: 'Désigner un tiers doublon'
|
||||
find_thirdparty_duplicate: 'Désigner un tiers doublon'
|
||||
|
Loading…
x
Reference in New Issue
Block a user