Skip to content

Commit bd46f88

Browse files
committed
#53 doublons reapparaissent
1 parent 5b8a679 commit bd46f88

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/management/identities/identities-doublon.service.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ export class IdentitiesDoublonService extends AbstractIdentitiesService {
88
const agg1 = [
99
{
1010
$match: {
11+
deletedFlag: { $eq: false},
1112
state: { $ne: IdentityState.DONT_SYNC },
1213
destFusionId: { $eq: null },
13-
'inetOrgPerson.employeeType': {$ne: 'LOCAL'}
14+
'inetOrgPerson.employeeType': {$ne: 'LOCAL'},
1415
},
1516
},
1617
{
@@ -53,9 +54,11 @@ export class IdentitiesDoublonService extends AbstractIdentitiesService {
5354
const agg2 = [
5455
{
5556
$match: {
57+
deletedFlag: { $eq: false},
5658
state: { $ne: IdentityState.DONT_SYNC },
5759
destFusionId: { $eq: null },
5860
'inetOrgPerson.employeeType': {$ne: 'LOCAL'},
61+
5962
},
6063
},
6164
{

0 commit comments

Comments
 (0)