From 26557be67adddd7e27921caf97a85c0c583e6e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yana=C3=ABl=20GRETTE?= Date: Thu, 1 Oct 2020 17:17:52 +0200 Subject: [PATCH] =?UTF-8?q?Test=20de=20la=20communication=20avec=20le=20se?= =?UTF-8?q?rveur=20pour=20les=20formations=20:=20Liste=20OK=20D=C3=A9tails?= =?UTF-8?q?=20OK=20Suppression=20OK=20Modification=20OK=20Ajout=20KO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 42 +++++++++++++++++-- .../edit-formation.component.ts | 11 ++--- .../new-formation/new-formation.component.ts | 11 ++--- .../api-swagger/api/collaborateurs.service.ts | 12 +++--- .../api/demandesDelegation.service.ts | 12 +++--- .../api-swagger/api/demandesEPI.service.ts | 22 +++++----- .../api/demandesformation.service.ts | 22 +++++----- .../api-swagger/api/engagements.service.ts | 14 +++---- src/app/shared/api-swagger/api/ep.service.ts | 32 +++++++------- .../api-swagger/api/formations.service.ts | 32 +++++++------- .../shared/api-swagger/api/notes.service.ts | 22 +++++----- .../api/participationsFormations.service.ts | 14 +++---- .../api-swagger/api/referents.service.ts | 12 +++--- 13 files changed, 148 insertions(+), 110 deletions(-) diff --git a/package-lock.json b/package-lock.json index eb697d7..8bb3015 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2813,6 +2813,16 @@ "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==", "dev": true }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "blob": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz", @@ -5659,6 +5669,13 @@ "schema-utils": "^2.6.5" } }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, "fileset": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz", @@ -8100,7 +8117,11 @@ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "dev": true, - "optional": true + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } }, "is-binary-path": { "version": "1.0.1", @@ -8954,6 +8975,13 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, + "nan": { + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz", + "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==", + "dev": true, + "optional": true + }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", @@ -14185,7 +14213,11 @@ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "dev": true, - "optional": true + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } }, "is-binary-path": { "version": "1.0.1", @@ -14597,7 +14629,11 @@ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "dev": true, - "optional": true + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } }, "is-absolute-url": { "version": "3.0.3", diff --git a/src/app/formations/edit-formation/edit-formation.component.ts b/src/app/formations/edit-formation/edit-formation.component.ts index 69fbdc1..24aa690 100644 --- a/src/app/formations/edit-formation/edit-formation.component.ts +++ b/src/app/formations/edit-formation/edit-formation.component.ts @@ -135,7 +135,8 @@ export class EditFormationComponent implements OnInit { organisme: [formation.organisme], mode: [formation.mode], type: [formation.type], - estCertifie: [formation.estCertifie] + estCertifie: [formation.estCertifie], + idAgence: [formation.idAgence] } ); } @@ -161,16 +162,16 @@ export class EditFormationComponent implements OnInit { this.formationSubscription.unsubscribe(); } if(this.modeSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.modeSubscription.unsubscribe(); } if(this.typeSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.typeSubscription.unsubscribe(); } if(this.statutSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.statutSubscription.unsubscribe(); } if(this.origineSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.origineSubscription.unsubscribe(); } } } diff --git a/src/app/formations/new-formation/new-formation.component.ts b/src/app/formations/new-formation/new-formation.component.ts index 6d731f7..c883192 100644 --- a/src/app/formations/new-formation/new-formation.component.ts +++ b/src/app/formations/new-formation/new-formation.component.ts @@ -70,7 +70,8 @@ export class NewFormationComponent implements OnInit { organisme: [""], mode: [""], type: [""], - estCertifie: [""] + estCertifie: [""], + idAgence: [1] } ); @@ -113,16 +114,16 @@ export class NewFormationComponent implements OnInit { this.formationSubscription.unsubscribe(); } if(this.modeSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.modeSubscription.unsubscribe(); } if(this.typeSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.typeSubscription.unsubscribe(); } if(this.statutSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.statutSubscription.unsubscribe(); } if(this.origineSubscription != undefined) { - this.formationSubscription.unsubscribe(); + this.origineSubscription.unsubscribe(); } } } diff --git a/src/app/shared/api-swagger/api/collaborateurs.service.ts b/src/app/shared/api-swagger/api/collaborateurs.service.ts index 94a9a8c..e1205c7 100644 --- a/src/app/shared/api-swagger/api/collaborateurs.service.ts +++ b/src/app/shared/api-swagger/api/collaborateurs.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -27,7 +27,7 @@ import { Configuration } from '../configurat @Injectable() export class CollaborateursService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -57,7 +57,7 @@ export class CollaborateursService { /** - * + * * Récupérer un collaboratuer par son id * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -105,7 +105,7 @@ export class CollaborateursService { } /** - * + * * Récupérer un collaborateur par son mail * @param mail mail de l'utilisateur connecté (mail obtenu via le token Keycloak) * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -153,7 +153,7 @@ export class CollaborateursService { } /** - * + * * Récupérer la liste des collaborateurs * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -250,7 +250,7 @@ export class CollaborateursService { } /** - * + * * Récupérer la liste des collaborateurs dont le référent à la charge * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idReferent id referent diff --git a/src/app/shared/api-swagger/api/demandesDelegation.service.ts b/src/app/shared/api-swagger/api/demandesDelegation.service.ts index b88b610..c73a8de 100644 --- a/src/app/shared/api-swagger/api/demandesDelegation.service.ts +++ b/src/app/shared/api-swagger/api/demandesDelegation.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -28,7 +28,7 @@ import { Configuration } from '../configurat @Injectable() export class DemandesDelegationService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -58,7 +58,7 @@ export class DemandesDelegationService { /** - * + * * Faire une demande de délégation à une autre personne * @param idCollaborateur id collaborateur * @param idEP id EP @@ -111,7 +111,7 @@ export class DemandesDelegationService { } /** - * + * * Récupération de la liste des demandes de délégation * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idCollaborateur id collaborateur @@ -203,9 +203,9 @@ export class DemandesDelegationService { } /** - * + * * Faire une demande de délégation à une autre personne - * @param body + * @param body * @param idDemandeDelegation id demande delegation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/demandesEPI.service.ts b/src/app/shared/api-swagger/api/demandesEPI.service.ts index dfef6b4..e9feaeb 100644 --- a/src/app/shared/api-swagger/api/demandesEPI.service.ts +++ b/src/app/shared/api-swagger/api/demandesEPI.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -27,7 +27,7 @@ import { Configuration } from '../configurat @Injectable() export class DemandesEPIService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -57,7 +57,7 @@ export class DemandesEPIService { /** - * + * * Annuler la demande d'EPI * @param idDemandeEPI id demande EPI * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -105,7 +105,7 @@ export class DemandesEPIService { } /** - * + * * Lancer la procedure pour un entretien professionnel intermediaire, une demande d'EPI validée est créé par la même occasion * @param idCollaborateur id collaborateur * @param idReferent id referent @@ -158,7 +158,7 @@ export class DemandesEPIService { } /** - * + * * Demande d'EPI par un collaborateur * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -206,7 +206,7 @@ export class DemandesEPIService { } /** - * + * * Demande d'EPI et par l'assistant et création automatique de l'EPI * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -254,7 +254,7 @@ export class DemandesEPIService { } /** - * + * * Récupération de la liste des demandes EPI d'un collaborateur * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idCollaborateur id collaborateur @@ -346,7 +346,7 @@ export class DemandesEPIService { } /** - * + * * Récupération de l'EPI en cours d'un collaborateur * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -394,7 +394,7 @@ export class DemandesEPIService { } /** - * + * * Récupération de la liste des demandes EPI d'un referent * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idReferent id referent @@ -486,9 +486,9 @@ export class DemandesEPIService { } /** - * + * * Répondre à une demande EPI en attente - * @param body + * @param body * @param idDemandeEPI id demande EPI * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/demandesformation.service.ts b/src/app/shared/api-swagger/api/demandesformation.service.ts index 732d23d..37394ed 100644 --- a/src/app/shared/api-swagger/api/demandesformation.service.ts +++ b/src/app/shared/api-swagger/api/demandesformation.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -30,7 +30,7 @@ import { Configuration } from '../configurat @Injectable() export class DemandesFormationService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -60,9 +60,9 @@ export class DemandesFormationService { /** - * + * * Créer une demande de formation pour un collaborateur - * @param body + * @param body * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ @@ -114,7 +114,7 @@ export class DemandesFormationService { } /** - * + * * Récupérer la liste des demandes de formations * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -204,7 +204,7 @@ export class DemandesFormationService { } /** - * + * * Récupérer la liste des demandes de formations en attente d'une réponse * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -294,7 +294,7 @@ export class DemandesFormationService { } /** - * + * * Récupérer la liste des demandes de formations ayant reçu une réponse * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -384,7 +384,7 @@ export class DemandesFormationService { } /** - * + * * Récupérer la liste des origines des demandes de formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -427,7 +427,7 @@ export class DemandesFormationService { } /** - * + * * Récupérer la liste des thèmes des demandes de formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -470,9 +470,9 @@ export class DemandesFormationService { } /** - * + * * Répondre a une demande de formation et la mettre à jour - * @param body + * @param body * @param idDemandeFormation id demande formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/engagements.service.ts b/src/app/shared/api-swagger/api/engagements.service.ts index d128866..6622a44 100644 --- a/src/app/shared/api-swagger/api/engagements.service.ts +++ b/src/app/shared/api-swagger/api/engagements.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -27,7 +27,7 @@ import { Configuration } from '../configurat @Injectable() export class EngagementsService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -57,7 +57,7 @@ export class EngagementsService { /** - * + * * Récupérer la liste des engagements * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -142,7 +142,7 @@ export class EngagementsService { } /** - * + * * Récupérer la liste des engagements en attente * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -227,7 +227,7 @@ export class EngagementsService { } /** - * + * * Récupérer la liste des engagements ayant reçu une réponse * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -312,9 +312,9 @@ export class EngagementsService { } /** - * + * * Donnez une réponse à un engagement - * @param body + * @param body * @param idEngagement id engagement * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/ep.service.ts b/src/app/shared/api-swagger/api/ep.service.ts index 9ad1159..f42503c 100644 --- a/src/app/shared/api-swagger/api/ep.service.ts +++ b/src/app/shared/api-swagger/api/ep.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -30,7 +30,7 @@ import { Configuration } from '../configurat @Injectable() export class EpService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -60,7 +60,7 @@ export class EpService { /** - * + * * Récupérer la liste de tous les EP collaborateurs * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -155,7 +155,7 @@ export class EpService { } /** - * + * * Récupérer la liste des EP d'un collaborateur * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idCollaborateur id collaborateur @@ -245,7 +245,7 @@ export class EpService { } /** - * + * * Récupérer un EP par son id * @param idEP id EP * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -293,7 +293,7 @@ export class EpService { } /** - * + * * Récupérer la liste de tous les EP fait passer par le référent * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idReferent id referent @@ -378,7 +378,7 @@ export class EpService { } /** - * + * * Récupérer la liste de tous les prochaines EP collaborateurs * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -468,7 +468,7 @@ export class EpService { } /** - * + * * Récupérer la liste de tous les EP collaborateur signés * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -558,7 +558,7 @@ export class EpService { } /** - * + * * Récupérer les détails sur quand aura lieu le prochain EP du collaborateur * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -606,7 +606,7 @@ export class EpService { } /** - * + * * Récupérer la liste de tous les prochaines EP que fera passer le référent * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idReferent id referent @@ -691,7 +691,7 @@ export class EpService { } /** - * + * * Faire un rappel de signature EP * @param idEP id EP * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -739,7 +739,7 @@ export class EpService { } /** - * + * * Récupérer le prochain EP du collaborateur dans le but de le saisir * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -787,9 +787,9 @@ export class EpService { } /** - * + * * Mettre à jour l'EP déjà saisie - * @param body + * @param body * @param idEP id EP * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -846,9 +846,9 @@ export class EpService { } /** - * + * * Poursuivre le processus de l'EP ou bien seulement sauvegarder les modifications - * @param body + * @param body * @param idEP id EP * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/formations.service.ts b/src/app/shared/api-swagger/api/formations.service.ts index eab9906..f0617ae 100644 --- a/src/app/shared/api-swagger/api/formations.service.ts +++ b/src/app/shared/api-swagger/api/formations.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -32,7 +32,7 @@ import { Configuration } from '../configurat @Injectable() export class FormationsService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -62,9 +62,9 @@ export class FormationsService { /** - * + * * Ajouter une nouvelle formation - * @param body + * @param body * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ @@ -116,7 +116,7 @@ export class FormationsService { } /** - * + * * Supprimer une formation * @param idFormation id formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -164,7 +164,7 @@ export class FormationsService { } /** - * + * * Récupérer les formations annulées * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -249,7 +249,7 @@ export class FormationsService { } /** - * + * * Récupérer une formation par son id * @param idFormation id formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -297,7 +297,7 @@ export class FormationsService { } /** - * + * * Récupérer les formations réalisées * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -382,7 +382,7 @@ export class FormationsService { } /** - * + * * Récupérer la liste des formations * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -472,7 +472,7 @@ export class FormationsService { } /** - * + * * Récupérer les modes de formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -515,7 +515,7 @@ export class FormationsService { } /** - * + * * Récupérer les origines de formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -558,7 +558,7 @@ export class FormationsService { } /** - * + * * Récupérer les formations plannifié et replannifié * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -643,7 +643,7 @@ export class FormationsService { } /** - * + * * Récupérer les statuts de formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -686,7 +686,7 @@ export class FormationsService { } /** - * + * * Récupérer les types de formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -729,9 +729,9 @@ export class FormationsService { } /** - * + * * Mettre à jour une formation - * @param body + * @param body * @param idFormation id formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/notes.service.ts b/src/app/shared/api-swagger/api/notes.service.ts index d83abb2..0ce6ff8 100644 --- a/src/app/shared/api-swagger/api/notes.service.ts +++ b/src/app/shared/api-swagger/api/notes.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -28,7 +28,7 @@ import { Configuration } from '../configurat @Injectable() export class NotesService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -58,7 +58,7 @@ export class NotesService { /** - * + * * Supprimer une note * @param idNote id note * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -106,7 +106,7 @@ export class NotesService { } /** - * + * * Récupérer une note par son id * @param idNote id note * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -154,7 +154,7 @@ export class NotesService { } /** - * + * * Récupérer toutes les notes * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -234,7 +234,7 @@ export class NotesService { } /** - * + * * Récupérer les notes d'une personne a écrite * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idReferent id referent @@ -319,7 +319,7 @@ export class NotesService { } /** - * + * * Récupérer une note par son id * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idCollaborateur id collaborateur @@ -409,9 +409,9 @@ export class NotesService { } /** - * + * * Ajouter une nouvelle note - * @param body + * @param body * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ @@ -463,9 +463,9 @@ export class NotesService { } /** - * + * * Mettre à jour une note - * @param body + * @param body * @param idNote id note * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. diff --git a/src/app/shared/api-swagger/api/participationsFormations.service.ts b/src/app/shared/api-swagger/api/participationsFormations.service.ts index fed931a..989aedf 100644 --- a/src/app/shared/api-swagger/api/participationsFormations.service.ts +++ b/src/app/shared/api-swagger/api/participationsFormations.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -28,7 +28,7 @@ import { Configuration } from '../configurat @Injectable() export class ParticipationsFormationsService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -58,7 +58,7 @@ export class ParticipationsFormationsService { /** - * + * * Consulter une évaluation d'une formation * @param idParticipationFormation id participation formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -106,9 +106,9 @@ export class ParticipationsFormationsService { } /** - * + * * Evaluer une formation - * @param body + * @param body * @param idParticipationFormation id participation formation * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. @@ -165,7 +165,7 @@ export class ParticipationsFormationsService { } /** - * + * * Récupérer la liste des formations auxquelles est inscrit le collaborateur * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idCollaborateur id collaborateur @@ -250,7 +250,7 @@ export class ParticipationsFormationsService { } /** - * + * * Récupérer la liste des participants d'une formation * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idFormation id formation diff --git a/src/app/shared/api-swagger/api/referents.service.ts b/src/app/shared/api-swagger/api/referents.service.ts index b54b3bd..311d4df 100644 --- a/src/app/shared/api-swagger/api/referents.service.ts +++ b/src/app/shared/api-swagger/api/referents.service.ts @@ -3,7 +3,7 @@ * API qui sra utilisée afin de faire communiquer le client et le serveur ainsi que le serveur et la boîte noire. * * OpenAPI spec version: 1.3.5 - * + * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git @@ -27,7 +27,7 @@ import { Configuration } from '../configurat @Injectable() export class ReferentsService { - protected basePath = 'http://localhost:3000/api'; + protected basePath = 'https://localhost:44393/api'; public defaultHeaders = new HttpHeaders(); public configuration = new Configuration(); @@ -57,7 +57,7 @@ export class ReferentsService { /** - * + * * Récupérer le référent d'un collaborateur * @param idCollaborateur id collaborateur * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -105,7 +105,7 @@ export class ReferentsService { } /** - * + * * Récupérer un referent par son id * @param idReferent id referent * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. @@ -153,7 +153,7 @@ export class ReferentsService { } /** - * + * * Récupérer la liste de tous les referents * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param numPage Numéro de la page du tableau qui affiche les données @@ -250,7 +250,7 @@ export class ReferentsService { } /** - * + * * Récupérer la liste des référents d'un collaborateur * @param asc Préciser si les données sont dans l'ordre (true) ou dans l'ordre inverse (false) * @param idCollaborateur id collaborateur