From 48a3726e24f4e0cfb81475cb28b127e324dd68ed Mon Sep 17 00:00:00 2001
From: Jeremie BRISON <ext.sopra.jbrison@grandlyon.com>
Date: Thu, 11 Feb 2021 16:33:20 +0100
Subject: [PATCH] fix(structure) : update coord when address structure change

---
 src/structures/services/structures.service.ts | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/structures/services/structures.service.ts b/src/structures/services/structures.service.ts
index 810442b27..1b5ae5c89 100644
--- a/src/structures/services/structures.service.ts
+++ b/src/structures/services/structures.service.ts
@@ -11,7 +11,7 @@ import { User } from '../../users/schemas/user.schema';
 import { MailerService } from '../../mailer/mailer.service';
 import { Cron, CronExpression } from '@nestjs/schedule';
 import { DateTime } from 'luxon';
-
+import * as _ from 'lodash';
 @Injectable()
 export class StructuresService {
   constructor(
@@ -104,6 +104,10 @@ export class StructuresService {
   }
 
   public async update(idStructure: string, structure: structureDto): Promise<Structure> {
+    const oldStructure = await this.findOne(idStructure);
+    if (!_.isEqual(oldStructure.address, structure.address)) {
+      await this.getStructurePosition(structure).then();
+    }
     const result = await this.structureModel.findByIdAndUpdate(Types.ObjectId(idStructure), structure).exec();
     if (!result) {
       throw new HttpException('Invalid structure id', HttpStatus.BAD_REQUEST);
-- 
GitLab