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.
- package/composants/csqcImportCSV.vue +125 -0
- package/composants/csqcRecherche.vue +212 -206
- package/composants/csqcRechercheUtilisateur.vue +125 -0
- package/composants/csqcTable/csqcTable.vue +3 -2
- package/index.ts +2 -0
- package/locales/en.json +21 -0
- package/locales/fr.json +34 -13
- package/modeles/assurancesAssuranceGeneraleGrics.ts +10 -0
- package/modeles/assurancesAssurancePersonnelleGrics.ts +13 -0
- package/modeles/assurancesContratGrics.ts +14 -0
- package/modeles/assurancesDetailsPrimeReguliereGrics.ts +12 -0
- package/modeles/assurancesDonneesAssureurGrics.ts +13 -0
- package/modeles/assurancesEmployeGrics.ts +11 -0
- package/modeles/assurancesGrics.ts +14 -0
- package/modeles/assurancesRegimeAssuranceGrics.ts +9 -0
- package/modeles/assurancesRegimeBaseEmployeurGrics.ts +9 -0
- package/modeles/assurancesRegimeBaseGrics.ts +9 -0
- package/modeles/employeAdresseGrics.ts +13 -0
- package/modeles/employeAdressesPersonnellesGrics.ts +12 -0
- package/modeles/employeAffectationCorpsEmploiGrics.ts +9 -0
- package/modeles/employeBanquesCongeBanqueGrics.ts +9 -0
- package/modeles/employeBanquesCongeGrics.ts +14 -0
- package/modeles/employeBanquesCongeRegimeAbsenceGrics.ts +9 -0
- package/modeles/employeCourrielsPersonnels.ts +9 -0
- package/modeles/employeCourrielsProfessionnels.ts +9 -0
- package/modeles/employeEmploisCategorieGrics.ts +2 -2
- package/modeles/employeEmploisClasseGrics.ts +2 -2
- package/modeles/employeEmploisCorpsEmploiGrics.ts +2 -2
- package/modeles/employeEmploisEtatEmploiGrics.ts +2 -2
- package/modeles/employeEmploisGrics.ts +29 -29
- package/modeles/employeEmploisGroupePaieGrics.ts +2 -2
- package/modeles/employeEmploisLieuTravailPrincipalGrics.ts +3 -3
- package/modeles/employeEmploisLieuxTravailSecondairesGrics.ts +3 -3
- package/modeles/employeEmploisRegimeAbsenceGrics.ts +2 -2
- package/modeles/employeEmploisSecteurGrics.ts +2 -2
- package/modeles/employeEmploisStatutEngagementGrics.ts +2 -2
- package/modeles/employeExperienceEmploiGrics.ts +9 -0
- package/modeles/employeExperienceEmployeGrics.ts +12 -0
- package/modeles/employeExperienceExperiencesGrics.ts +11 -0
- package/modeles/employeExperienceExperiencesTotalesGrics.ts +15 -0
- package/modeles/employeExperienceGrics.ts +17 -0
- package/modeles/employeGrics.ts +31 -0
- package/modeles/employeMinsLsCodev.ts +10 -0
- package/modeles/employeTelephoneGrics.ts +12 -0
- package/modeles/employeTelephonesPersonnelsGrics.ts +11 -0
- package/modeles/employeTelephonesProfessionnelsGrics.ts +11 -0
- package/modeles/groupeCE.ts +6 -6
- package/modeles/groupeCEIntervalle.ts +6 -6
- package/modeles/historiquesAbsenceBanqueGrics.ts +9 -0
- package/modeles/historiquesAbsenceGrics.ts +21 -0
- package/modeles/historiquesAbsenceLieuTravailGrics.ts +9 -0
- package/modeles/historiquesAbsenceSousBanqueGrics.ts +9 -0
- package/modeles/motifsAbsenceBanque.ts +9 -0
- package/modeles/motifsAbsenceGrics.ts +17 -0
- package/modeles/motifsAbsenceRegimeAbsence.ts +9 -0
- package/modeles/motifsAbsenceSousMotifs.ts +9 -0
- package/modeles/motifsAbsenceTraitementBanques.ts +11 -0
- package/modeles/syndicat.ts +26 -0
- package/modeles/syndicatGroupeCe.ts +10 -0
- package/modeles/syndicatResponsable.ts +15 -0
- package/modeles/syndicatUnite.ts +10 -0
- package/modeles/typeTelephone.ts +12 -0
- package/modeles/unite.ts +23 -24
- package/modeles/utilisateur.ts +8 -8
- 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
|
-
|
|
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
|
-
"
|
|
34
|
-
"
|
|
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": "
|
|
38
|
-
"aucunEmploi": "
|
|
39
|
-
"corpsEmploi": "
|
|
40
|
-
"identifiantOuMatricule": "Office 365
|
|
41
|
-
"placeholderRechercheUtilisateur": "
|
|
42
|
-
"revenirRecherche": "
|
|
43
|
-
"utilisateurIntrouvable": "
|
|
44
|
-
"utilisateurs": "
|
|
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,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,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,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,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
|
+
}
|
|
@@ -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
|
|
7
|
-
import type { EmployeEmploisEtatEmploiGrics } from
|
|
8
|
-
import type { EmployeEmploisGroupePaieGrics } from
|
|
9
|
-
import type { EmployeEmploisRegimeAbsenceGrics } from
|
|
10
|
-
import type { EmployeEmploisStatutEngagementGrics } from
|
|
11
|
-
import type { EmployeEmploisLieuTravailPrincipalGrics } from
|
|
12
|
-
import type { EmployeEmploisLieuxTravailSecondairesGrics } from
|
|
13
|
-
import type { EmployeEmploisCategorieGrics } from
|
|
14
|
-
import type { EmployeEmploisSecteurGrics } from
|
|
15
|
-
import type { EmployeEmploisClasseGrics } from
|
|
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
|
}
|
|
@@ -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
|
+
}
|