codevdesign 0.0.78 → 0.0.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/composants/csqcImportCSV.vue +125 -0
  2. package/composants/csqcRecherche.vue +212 -206
  3. package/composants/csqcRechercheUtilisateur.vue +125 -0
  4. package/composants/csqcTable/csqcTable.vue +3 -2
  5. package/index.ts +2 -0
  6. package/locales/en.json +21 -0
  7. package/locales/fr.json +34 -13
  8. package/modeles/assurancesAssuranceGeneraleGrics.ts +10 -0
  9. package/modeles/assurancesAssurancePersonnelleGrics.ts +13 -0
  10. package/modeles/assurancesContratGrics.ts +14 -0
  11. package/modeles/assurancesDetailsPrimeReguliereGrics.ts +12 -0
  12. package/modeles/assurancesDonneesAssureurGrics.ts +13 -0
  13. package/modeles/assurancesEmployeGrics.ts +11 -0
  14. package/modeles/assurancesGrics.ts +14 -0
  15. package/modeles/assurancesRegimeAssuranceGrics.ts +9 -0
  16. package/modeles/assurancesRegimeBaseEmployeurGrics.ts +9 -0
  17. package/modeles/assurancesRegimeBaseGrics.ts +9 -0
  18. package/modeles/employeAdresseGrics.ts +13 -0
  19. package/modeles/employeAdressesPersonnellesGrics.ts +12 -0
  20. package/modeles/employeAffectationCorpsEmploiGrics.ts +9 -0
  21. package/modeles/employeBanquesCongeBanqueGrics.ts +9 -0
  22. package/modeles/employeBanquesCongeGrics.ts +14 -0
  23. package/modeles/employeBanquesCongeRegimeAbsenceGrics.ts +9 -0
  24. package/modeles/employeCourrielsPersonnels.ts +9 -0
  25. package/modeles/employeCourrielsProfessionnels.ts +9 -0
  26. package/modeles/employeEmploisCategorieGrics.ts +2 -2
  27. package/modeles/employeEmploisClasseGrics.ts +2 -2
  28. package/modeles/employeEmploisCorpsEmploiGrics.ts +2 -2
  29. package/modeles/employeEmploisEtatEmploiGrics.ts +2 -2
  30. package/modeles/employeEmploisGrics.ts +29 -29
  31. package/modeles/employeEmploisGroupePaieGrics.ts +2 -2
  32. package/modeles/employeEmploisLieuTravailPrincipalGrics.ts +3 -3
  33. package/modeles/employeEmploisLieuxTravailSecondairesGrics.ts +3 -3
  34. package/modeles/employeEmploisRegimeAbsenceGrics.ts +2 -2
  35. package/modeles/employeEmploisSecteurGrics.ts +2 -2
  36. package/modeles/employeEmploisStatutEngagementGrics.ts +2 -2
  37. package/modeles/employeExperienceEmploiGrics.ts +9 -0
  38. package/modeles/employeExperienceEmployeGrics.ts +12 -0
  39. package/modeles/employeExperienceExperiencesGrics.ts +11 -0
  40. package/modeles/employeExperienceExperiencesTotalesGrics.ts +15 -0
  41. package/modeles/employeExperienceGrics.ts +17 -0
  42. package/modeles/employeGrics.ts +31 -0
  43. package/modeles/employeMinsLsCodev.ts +10 -0
  44. package/modeles/employeTelephoneGrics.ts +12 -0
  45. package/modeles/employeTelephonesPersonnelsGrics.ts +11 -0
  46. package/modeles/employeTelephonesProfessionnelsGrics.ts +11 -0
  47. package/modeles/groupeCE.ts +6 -6
  48. package/modeles/groupeCEIntervalle.ts +6 -6
  49. package/modeles/historiquesAbsenceBanqueGrics.ts +9 -0
  50. package/modeles/historiquesAbsenceGrics.ts +21 -0
  51. package/modeles/historiquesAbsenceLieuTravailGrics.ts +9 -0
  52. package/modeles/historiquesAbsenceSousBanqueGrics.ts +9 -0
  53. package/modeles/motifsAbsenceBanque.ts +9 -0
  54. package/modeles/motifsAbsenceGrics.ts +17 -0
  55. package/modeles/motifsAbsenceRegimeAbsence.ts +9 -0
  56. package/modeles/motifsAbsenceSousMotifs.ts +9 -0
  57. package/modeles/motifsAbsenceTraitementBanques.ts +11 -0
  58. package/modeles/syndicat.ts +26 -0
  59. package/modeles/syndicatGroupeCe.ts +10 -0
  60. package/modeles/syndicatResponsable.ts +15 -0
  61. package/modeles/syndicatUnite.ts +10 -0
  62. package/modeles/typeTelephone.ts +12 -0
  63. package/modeles/unite.ts +23 -24
  64. package/modeles/utilisateur.ts +8 -8
  65. package/package.json +1 -1
@@ -1,12 +1,12 @@
1
1
  <template>
2
2
  <div>
3
- <v-row>
3
+ <v-row v-if="barreHautAfficher">
4
4
  <slot name="ligne" />
5
5
  <!-- Affichage de la boite de recherche-->
6
6
  <v-col>
7
7
  <slot name="recherche"></slot>
8
8
  <Recherche
9
- v-if="rechercheAfficher"
9
+ :afficher="rechercheAfficher"
10
10
  :recherche-texte="rechercheTexte"
11
11
  :chargement="chargementListe"
12
12
  :recherche="recherche"
@@ -141,6 +141,7 @@
141
141
 
142
142
  // Props
143
143
  const props = defineProps({
144
+ barreHautAfficher: { type: Boolean, default: true },
144
145
  btnAjouter: { type: Boolean, default: true },
145
146
  btnAjouterTexte: { type: String, default: '' },
146
147
  btnModifier: { type: Boolean, default: true },
package/index.ts CHANGED
@@ -16,6 +16,7 @@ import csqcEntete from './composants/csqcEntete.vue'
16
16
  import csqcTexteBilingue from './composants/csqcTexteBilingue.vue'
17
17
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
18
18
  import csqcEditeurTexteRiche from './composants/csqcEditeurTexteRiche.vue'
19
+ import csqcImportCSV from './composants/csqcImportCSV.vue'
19
20
  import validateurs from './composants/validateurs'
20
21
 
21
22
  // modèles
@@ -51,6 +52,7 @@ export {
51
52
  csqcTexteBilingue,
52
53
  csqcEditeurTexteRiche,
53
54
  validateurs,
55
+ csqcImportCSV,
54
56
 
55
57
  modeleSnackbar,
56
58
  modeleDatatableColonne,
package/locales/en.json CHANGED
@@ -30,6 +30,27 @@
30
30
  "info": "This claim will have to be verified by the following unit(s). For those with more than one possibility, please select the choice that suits you.",
31
31
  "titre": "Tracking Preference"
32
32
  },
33
+ "csqcEmploisEmploye": {
34
+ "dateDebut": "Date de début",
35
+ "dateFin": "Date de fin",
36
+ "etat": "État",
37
+ "etatActif": "Actif",
38
+ "lieuPrincipal": "Lieu principal",
39
+ "lieuSecondaire": "Lieu secondaire|Lieux secondaires",
40
+ "principal": {
41
+ "libelle": "Principal",
42
+ "non": "Non",
43
+ "oui": "Oui"
44
+ },
45
+ "statut": "Statut",
46
+ "titre": "Emplois de l'employé"
47
+ },
48
+ "csqcImportCSV": {
49
+ "erreur": {
50
+ "erreur": "Importation Error.",
51
+ "lectureFichier": "Error reading CSV file."
52
+ }
53
+ },
33
54
  "csqcMenu": {
34
55
  "deconnexion": "Logout"
35
56
  },
package/locales/fr.json CHANGED
@@ -25,23 +25,44 @@
25
25
  "supprimer": "Supprimer",
26
26
  "televerser": "Téléverser"
27
27
  },
28
- "csqcMenu": {
29
- "deconnexion": "Déconnexion"
30
- },
31
28
  "csqcChaise": {
32
29
  "erreur": "Veuillez faire une sélection pour toutes les unités.",
33
- "titre": "Préférence de suivi",
34
- "info": "Cette réclamation devra être vérifiée par la ou les unités suivantes. Pour celles ayant plus d'une possibilité, veuillez sélectionner le choix qui vous convient."
30
+ "info": "Cette réclamation devra être vérifiée par la ou les unités suivantes. Pour celles ayant plus d'une possibilité, veuillez sélectionner le choix qui vous convient.",
31
+ "titre": "Préférence de suivi"
32
+ },
33
+ "csqcEmploisEmploye": {
34
+ "dateDebut": "Date de début",
35
+ "dateFin": "Date de fin",
36
+ "etat": "État",
37
+ "etatActif": "Actif",
38
+ "lieuPrincipal": "Lieu principal",
39
+ "lieuSecondaire": "Lieu secondaire|Lieux secondaires",
40
+ "principal": {
41
+ "libelle": "Principal",
42
+ "non": "Non",
43
+ "oui": "Oui"
44
+ },
45
+ "statut": "Statut",
46
+ "titre": "Emplois de l'employé"
47
+ },
48
+ "csqcImportCSV": {
49
+ "erreur": {
50
+ "erreur": "Erreur d'importation.",
51
+ "lectureFichier": "Erreur lors de la lecture du fichier CSV."
52
+ }
53
+ },
54
+ "csqcMenu": {
55
+ "deconnexion": "Déconnexion"
35
56
  },
36
57
  "csqcRechercheUtilisateur": {
37
- "ajouterUtilisateurInfo": "You can enter the Office 365 ID or the employee number here, then click the magnifying glass. If this information exists in the payroll system, the user will be added. Note that the user must have a valid portal email address in the payroll system.",
38
- "aucunEmploi": "No job found",
39
- "corpsEmploi": "Job title",
40
- "identifiantOuMatricule": "Office 365 ID or employee number",
41
- "placeholderRechercheUtilisateur": "Search for a user",
42
- "revenirRecherche": "Back to search",
43
- "utilisateurIntrouvable": "The employee could not be found",
44
- "utilisateurs": "Employee"
58
+ "ajouterUtilisateurInfo": "Vous pouvez entrer ici l’ID Office 365 ou le numéro d’employé, puis cliquer sur la loupe. Si cette information existe dans le système de paie, l’utilisateur sera ajouté. Veuillez noter que l’utilisateur doit avoir une adresse courriel valide du portail dans le système de paie.",
59
+ "aucunEmploi": "Aucun emploi",
60
+ "corpsEmploi": "Corps d'emploi",
61
+ "identifiantOuMatricule": "identifiant Office 365 ou le matricule employé",
62
+ "placeholderRechercheUtilisateur": "Rechercher un utilisateur",
63
+ "revenirRecherche": "Retour à la recherche",
64
+ "utilisateurIntrouvable": "Employé introuvable",
65
+ "utilisateurs": "Employé"
45
66
  },
46
67
  "label": {
47
68
  "actif": "Actif",
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface AssurancesAssuranceGeneraleGrics {
7
+ resautAuto: number;
8
+ resautBien: number;
9
+ total: number;
10
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface AssurancesAssurancePersonnelleGrics {
7
+ maladieDeBase: number;
8
+ maladieComp: number;
9
+ vieAdh: number;
10
+ salLongueDuree: number;
11
+ taxe: number;
12
+ contributionGouvernementale: number;
13
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { AssurancesRegimeAssuranceGrics } from "./assurancesRegimeAssuranceGrics";
7
+ import type { AssurancesRegimeBaseEmployeurGrics } from "./assurancesRegimeBaseEmployeurGrics";
8
+
9
+ export interface AssurancesContratGrics {
10
+ regimeAssurance: AssurancesRegimeAssuranceGrics;
11
+ regimeBaseEmployeur: AssurancesRegimeBaseEmployeurGrics;
12
+ dateAdmissibilite: string;
13
+ inscription: boolean;
14
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { AssurancesAssurancePersonnelleGrics } from "./assurancesAssurancePersonnelleGrics";
7
+ import type { AssurancesAssuranceGeneraleGrics } from "./assurancesAssuranceGeneraleGrics";
8
+
9
+ export interface AssurancesDetailsPrimeReguliereGrics {
10
+ assurancePersonnelle: AssurancesAssurancePersonnelleGrics;
11
+ assuranceGenerale: AssurancesAssuranceGeneraleGrics;
12
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { AssurancesDetailsPrimeReguliereGrics } from "./assurancesDetailsPrimeReguliereGrics";
7
+ import type { AssurancesRegimeBaseGrics } from "./assurancesRegimeBaseGrics";
8
+
9
+ export interface AssurancesDonneesAssureurGrics {
10
+ detailsPrimeReguliere: AssurancesDetailsPrimeReguliereGrics;
11
+ regimeBase: AssurancesRegimeBaseGrics;
12
+ exonere: boolean;
13
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface AssurancesEmployeGrics {
7
+ id: string;
8
+ nom: string;
9
+ prenom: string;
10
+ nomLegal: string;
11
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { AssurancesEmployeGrics } from "./assurancesEmployeGrics";
7
+ import type { AssurancesContratGrics } from "./assurancesContratGrics";
8
+ import type { AssurancesDonneesAssureurGrics } from "./assurancesDonneesAssureurGrics";
9
+
10
+ export interface AssurancesGrics {
11
+ employe: AssurancesEmployeGrics;
12
+ contrat: AssurancesContratGrics;
13
+ donneesAssureur: AssurancesDonneesAssureurGrics;
14
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface AssurancesRegimeAssuranceGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface AssurancesRegimeBaseEmployeurGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface AssurancesRegimeBaseGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeAdresseGrics {
7
+ adresse1: string;
8
+ adresse2: string;
9
+ ville: string;
10
+ provinceEtat: string;
11
+ codePostal: string;
12
+ pays: string;
13
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeAdresseGrics } from "./employeAdresseGrics";
7
+
8
+ export interface EmployeAdressesPersonnellesGrics {
9
+ description: string;
10
+ adresse: EmployeAdresseGrics;
11
+ typeAdresse: string;
12
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeAffectationCorpsEmploiGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeBanquesCongeBanqueGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeBanquesCongeRegimeAbsenceGrics } from "./employeBanquesCongeRegimeAbsenceGrics";
7
+ import type { EmployeBanquesCongeBanqueGrics } from "./employeBanquesCongeBanqueGrics";
8
+
9
+ export interface EmployeBanquesCongeGrics {
10
+ regimeAbsence: EmployeBanquesCongeRegimeAbsenceGrics;
11
+ banque: EmployeBanquesCongeBanqueGrics;
12
+ solde: number;
13
+ joursAlloues: number;
14
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeBanquesCongeRegimeAbsenceGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeCourrielsPersonnels {
7
+ description: string;
8
+ courriel: string;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export interface EmployeCourrielsProfessionnels {
7
+ description: string;
8
+ courriel: string;
9
+ }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisCategorieGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisClasseGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisCorpsEmploiGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisEtatEmploiGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -3,35 +3,35 @@
3
3
  * Any changes made to this file can be lost when this file is regenerated.
4
4
  */
5
5
 
6
- import type { EmployeEmploisCorpsEmploiGrics } from './employeEmploisCorpsEmploiGrics'
7
- import type { EmployeEmploisEtatEmploiGrics } from './employeEmploisEtatEmploiGrics'
8
- import type { EmployeEmploisGroupePaieGrics } from './employeEmploisGroupePaieGrics'
9
- import type { EmployeEmploisRegimeAbsenceGrics } from './employeEmploisRegimeAbsenceGrics'
10
- import type { EmployeEmploisStatutEngagementGrics } from './employeEmploisStatutEngagementGrics'
11
- import type { EmployeEmploisLieuTravailPrincipalGrics } from './employeEmploisLieuTravailPrincipalGrics'
12
- import type { EmployeEmploisLieuxTravailSecondairesGrics } from './employeEmploisLieuxTravailSecondairesGrics'
13
- import type { EmployeEmploisCategorieGrics } from './employeEmploisCategorieGrics'
14
- import type { EmployeEmploisSecteurGrics } from './employeEmploisSecteurGrics'
15
- import type { EmployeEmploisClasseGrics } from './employeEmploisClasseGrics'
6
+ import type { EmployeEmploisCorpsEmploiGrics } from "./employeEmploisCorpsEmploiGrics";
7
+ import type { EmployeEmploisEtatEmploiGrics } from "./employeEmploisEtatEmploiGrics";
8
+ import type { EmployeEmploisGroupePaieGrics } from "./employeEmploisGroupePaieGrics";
9
+ import type { EmployeEmploisRegimeAbsenceGrics } from "./employeEmploisRegimeAbsenceGrics";
10
+ import type { EmployeEmploisStatutEngagementGrics } from "./employeEmploisStatutEngagementGrics";
11
+ import type { EmployeEmploisLieuTravailPrincipalGrics } from "./employeEmploisLieuTravailPrincipalGrics";
12
+ import type { EmployeEmploisLieuxTravailSecondairesGrics } from "./employeEmploisLieuxTravailSecondairesGrics";
13
+ import type { EmployeEmploisCategorieGrics } from "./employeEmploisCategorieGrics";
14
+ import type { EmployeEmploisSecteurGrics } from "./employeEmploisSecteurGrics";
15
+ import type { EmployeEmploisClasseGrics } from "./employeEmploisClasseGrics";
16
16
 
17
17
  export interface EmployeEmploisGrics {
18
- referenceEmploi: string
19
- idEmploye: string
20
- dateDebut: string
21
- dateFin: string
22
- corpsEmploi: EmployeEmploisCorpsEmploiGrics
23
- etatEmploi: EmployeEmploisEtatEmploiGrics
24
- groupePaie: EmployeEmploisGroupePaieGrics
25
- regimeAbsence: EmployeEmploisRegimeAbsenceGrics
26
- statutEngagement: EmployeEmploisStatutEngagementGrics
27
- lieuTravailPrincipal: EmployeEmploisLieuTravailPrincipalGrics
28
- lieuxTravailSecondaires: EmployeEmploisLieuxTravailSecondairesGrics[]
29
- categorieEmploi: EmployeEmploisCategorieGrics
30
- secteur: EmployeEmploisSecteurGrics
31
- classe: EmployeEmploisClasseGrics
32
- ordreEnseignement: string
33
- principal: boolean
34
- pourcentageSalaire: number
35
- pourcentagePoste: number
36
- cycliqueSaisonnier: boolean
18
+ referenceEmploi: string;
19
+ idEmploye: string;
20
+ dateDebut: string;
21
+ dateFin: string;
22
+ corpsEmploi: EmployeEmploisCorpsEmploiGrics;
23
+ etatEmploi: EmployeEmploisEtatEmploiGrics;
24
+ groupePaie: EmployeEmploisGroupePaieGrics;
25
+ regimeAbsence: EmployeEmploisRegimeAbsenceGrics;
26
+ statutEngagement: EmployeEmploisStatutEngagementGrics;
27
+ lieuTravailPrincipal: EmployeEmploisLieuTravailPrincipalGrics;
28
+ lieuxTravailSecondaires: EmployeEmploisLieuxTravailSecondairesGrics[];
29
+ categorieEmploi: EmployeEmploisCategorieGrics;
30
+ secteur: EmployeEmploisSecteurGrics;
31
+ classe: EmployeEmploisClasseGrics;
32
+ ordreEnseignement: string;
33
+ principal: boolean;
34
+ pourcentageSalaire: number;
35
+ pourcentagePoste: number;
36
+ cycliqueSaisonnier: boolean;
37
37
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisGroupePaieGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisLieuTravailPrincipalGrics {
7
- id: string
8
- description: string
9
- pourcentageEtp: number
7
+ id: string;
8
+ description: string;
9
+ pourcentageEtp: number;
10
10
  }
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisLieuxTravailSecondairesGrics {
7
- id: string
8
- description: string
9
- pourcentageEtp: number
7
+ id: string;
8
+ description: string;
9
+ pourcentageEtp: number;
10
10
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisRegimeAbsenceGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisSecteurGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export interface EmployeEmploisStatutEngagementGrics {
7
- id: string
8
- description: string
7
+ id: string;
8
+ description: string;
9
9
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class EmployeExperienceEmploiGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class EmployeExperienceEmployeGrics {
7
+ id: string;
8
+ nom: string;
9
+ prenom: string;
10
+ nomLegal: string;
11
+ prenomChoisi: string;
12
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ export class EmployeExperienceExperiencesGrics {
7
+ anneeBudgetaire: string;
8
+ nombreAnnees: number;
9
+ nombreJours: number;
10
+ commentaire: string;
11
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeExperienceEmploiGrics } from "./employeExperienceEmploiGrics";
7
+ import type { EmployeExperienceExperiencesGrics } from "./employeExperienceExperiencesGrics";
8
+
9
+ export class EmployeExperienceExperiencesTotalesGrics {
10
+ emploi: EmployeExperienceEmploiGrics;
11
+ employeurActuel: boolean;
12
+ nombreAnnees: number;
13
+ nombreJours: number;
14
+ experiences: EmployeExperienceExperiencesGrics[];
15
+ }
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeExperienceEmployeGrics } from "./employeExperienceEmployeGrics";
7
+ import type { EmployeExperienceExperiencesTotalesGrics } from "./employeExperienceExperiencesTotalesGrics";
8
+
9
+ export interface EmployeExperienceGrics {
10
+ employe: EmployeExperienceEmployeGrics;
11
+ experiencesTotales: EmployeExperienceExperiencesTotalesGrics[];
12
+ dateConsignee: string;
13
+ dateCalculPonctuel: string;
14
+ dateCalculAnnuel: string;
15
+ dateDebutCongeMaternite: string;
16
+ nombreSemainesAccordées: number;
17
+ }
@@ -0,0 +1,31 @@
1
+ /**
2
+ * This is a TypeGen auto-generated file.
3
+ * Any changes made to this file can be lost when this file is regenerated.
4
+ */
5
+
6
+ import type { EmployeAdressesPersonnellesGrics } from "./employeAdressesPersonnellesGrics";
7
+ import type { EmployeTelephonesPersonnelsGrics } from "./employeTelephonesPersonnelsGrics";
8
+ import type { EmployeTelephonesProfessionnelsGrics } from "./employeTelephonesProfessionnelsGrics";
9
+ import type { EmployeCourrielsPersonnels } from "./employeCourrielsPersonnels";
10
+ import type { EmployeCourrielsProfessionnels } from "./employeCourrielsProfessionnels";
11
+ import type { EmployeEmploisGrics } from "./employeEmploisGrics";
12
+
13
+ export interface EmployeGrics {
14
+ id: string;
15
+ nom: string;
16
+ prenom: string;
17
+ adressesPersonnelles: EmployeAdressesPersonnellesGrics[];
18
+ telephonesPersonnels: EmployeTelephonesPersonnelsGrics[];
19
+ telephonesProfessionnels: EmployeTelephonesProfessionnelsGrics[];
20
+ courrielsPersonnels: EmployeCourrielsPersonnels[];
21
+ courrielsProfessionnels: EmployeCourrielsProfessionnels[];
22
+ sexe: string;
23
+ dateNaissance: string;
24
+ dateEntree: string;
25
+ dateEngagement: string;
26
+ dateFinPeriodeEssai: string;
27
+ dateCessationDefinitive: string;
28
+ dateDebutServiceContinu: string;
29
+ dateFinServiceContinu: string;
30
+ emploiPrincipal: EmployeEmploisGrics;
31
+ }
@@ -0,0 +1,10 @@
1
+ export interface EmployeMinsLsCodev {
2
+ nom: string
3
+ prenom: string
4
+ courrielProfessionnel: string
5
+ matricule: string
6
+ numeroLieuPrincipal: string
7
+ nomLieuPrincipal: string
8
+ corpsEmploiPrincipalDescription: string
9
+ corpsEmploiPrincipal: string
10
+ }