codevdesign 0.0.79 → 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/csqcChaise/chaiseConteneur.vue +362 -362
- package/composants/csqcChaise/chaiseItem.vue +54 -54
- package/composants/csqcDialogue.vue +112 -112
- package/composants/csqcEditeurTexteRiche.vue +318 -318
- package/composants/csqcEntete.vue +158 -158
- package/composants/csqcImportCSV.vue +125 -0
- package/composants/csqcRecherche.vue +212 -212
- package/composants/csqcRechercheUtilisateur.vue +125 -0
- package/composants/csqcTable/csqcTable.vue +386 -386
- package/composants/csqcTiroir.vue +155 -155
- package/index.ts +63 -61
- 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 +1 -2
- package/modeles/utilisateur.ts +8 -8
- package/package.json +1 -1
|
@@ -1,155 +1,155 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<v-navigation-drawer
|
|
3
|
-
v-model="visible"
|
|
4
|
-
location="right"
|
|
5
|
-
temporary
|
|
6
|
-
class="pa-0 elevation-2 csqc-ligneBleue"
|
|
7
|
-
:width="grosseurTiroir"
|
|
8
|
-
:persistent="persistant"
|
|
9
|
-
@keydown.esc="!persistant ? fermeture : ''"
|
|
10
|
-
@click:outside="!persistant ? fermeture : ''"
|
|
11
|
-
>
|
|
12
|
-
<v-card class="pa-0 ma-0 pl-8 pt-8">
|
|
13
|
-
<!-- Bouton en haut à droite -->
|
|
14
|
-
<v-btn
|
|
15
|
-
icon="mdi-close"
|
|
16
|
-
variant="text"
|
|
17
|
-
class="position-absolute couleurHover"
|
|
18
|
-
style="top: 5px; right: 5px"
|
|
19
|
-
@click="fermeture"
|
|
20
|
-
></v-btn>
|
|
21
|
-
|
|
22
|
-
<v-card-title
|
|
23
|
-
class="pa-0 ma-0 pb-6 text-wrap"
|
|
24
|
-
style="font-size: 24px"
|
|
25
|
-
>
|
|
26
|
-
<slot name="titre"></slot>
|
|
27
|
-
<div text-h5>{{ titre }}</div>
|
|
28
|
-
</v-card-title>
|
|
29
|
-
|
|
30
|
-
<v-card-text class="pa-0 ma-0 pb-6 pr-6">
|
|
31
|
-
<v-container>
|
|
32
|
-
<slot></slot>
|
|
33
|
-
<slot name="content"></slot>
|
|
34
|
-
</v-container>
|
|
35
|
-
</v-card-text>
|
|
36
|
-
<v-card-actions class="my-2 d-flex justify-end pr-6 pb-5">
|
|
37
|
-
<slot name="actions"></slot>
|
|
38
|
-
<v-btn
|
|
39
|
-
v-if="btnAnnuler"
|
|
40
|
-
color="primary"
|
|
41
|
-
variant="text"
|
|
42
|
-
:loading="operationEnCours"
|
|
43
|
-
@click="fermeture"
|
|
44
|
-
>
|
|
45
|
-
{{ props.btnAnnulerTexte ? props.btnAnnulerTexte : $t('csqc.bouton.annuler') }}
|
|
46
|
-
</v-btn>
|
|
47
|
-
|
|
48
|
-
<v-btn
|
|
49
|
-
v-if="btnOk"
|
|
50
|
-
class="Gouttiere"
|
|
51
|
-
color="primary"
|
|
52
|
-
variant="flat"
|
|
53
|
-
:loading="operationEnCours"
|
|
54
|
-
:disabled="btnOkDesactiver || operationEnCours"
|
|
55
|
-
@click="okBouton"
|
|
56
|
-
>
|
|
57
|
-
{{ props.btnOkTexte ? props.btnOkTexte : $t('csqc.bouton.ok') }}
|
|
58
|
-
</v-btn>
|
|
59
|
-
</v-card-actions>
|
|
60
|
-
</v-card>
|
|
61
|
-
</v-navigation-drawer>
|
|
62
|
-
</template>
|
|
63
|
-
<script lang="ts" setup>
|
|
64
|
-
import { ref, computed } from 'vue'
|
|
65
|
-
import { useDisplay } from 'vuetify'
|
|
66
|
-
|
|
67
|
-
const visible = ref(false)
|
|
68
|
-
const display = useDisplay()
|
|
69
|
-
|
|
70
|
-
// Déclaration des props
|
|
71
|
-
const props = defineProps({
|
|
72
|
-
titre: {
|
|
73
|
-
type: String,
|
|
74
|
-
default: '',
|
|
75
|
-
required: false,
|
|
76
|
-
},
|
|
77
|
-
btnAnnuler: {
|
|
78
|
-
type: Boolean,
|
|
79
|
-
default: true,
|
|
80
|
-
required: false,
|
|
81
|
-
},
|
|
82
|
-
btnOk: {
|
|
83
|
-
type: Boolean,
|
|
84
|
-
default: true,
|
|
85
|
-
required: false,
|
|
86
|
-
},
|
|
87
|
-
btnAnnulerTexte: {
|
|
88
|
-
type: String,
|
|
89
|
-
default: '',
|
|
90
|
-
required: false,
|
|
91
|
-
},
|
|
92
|
-
btnOkDesactiver: {
|
|
93
|
-
type: Boolean,
|
|
94
|
-
default: false,
|
|
95
|
-
required: false,
|
|
96
|
-
},
|
|
97
|
-
operationEnCours: { type: Boolean, default: false },
|
|
98
|
-
persistant: { type: Boolean, default: true },
|
|
99
|
-
btnOkTexte: {
|
|
100
|
-
type: String,
|
|
101
|
-
default: '',
|
|
102
|
-
required: false,
|
|
103
|
-
},
|
|
104
|
-
})
|
|
105
|
-
|
|
106
|
-
// Déclaration des événements
|
|
107
|
-
const emit = defineEmits(['fermer', 'ok'])
|
|
108
|
-
|
|
109
|
-
// Méthodes
|
|
110
|
-
const ouvrir = () => {
|
|
111
|
-
visible.value = true
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
const fermer = () => {
|
|
115
|
-
visible.value = false
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
const fermeture = () => {
|
|
119
|
-
emit('fermer')
|
|
120
|
-
fermer()
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
const okBouton = () => {
|
|
124
|
-
emit('ok')
|
|
125
|
-
fermer()
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
// Calcul des tailles du tiroir en fonction du breakpoint
|
|
129
|
-
const grosseurTiroir = computed(() => {
|
|
130
|
-
switch (display.name.value) {
|
|
131
|
-
case 'xs':
|
|
132
|
-
return ''
|
|
133
|
-
case 'sm':
|
|
134
|
-
return 0.95 * display.width.value
|
|
135
|
-
case 'md':
|
|
136
|
-
return 0.8 * display.width.value
|
|
137
|
-
case 'lg':
|
|
138
|
-
return 0.7 * display.width.value
|
|
139
|
-
case 'xl':
|
|
140
|
-
return 0.6 * display.width.value
|
|
141
|
-
case 'xxl':
|
|
142
|
-
return 0.5 * display.width.value
|
|
143
|
-
default:
|
|
144
|
-
return ''
|
|
145
|
-
}
|
|
146
|
-
})
|
|
147
|
-
|
|
148
|
-
defineExpose({ ouvrir, fermer })
|
|
149
|
-
</script>
|
|
150
|
-
|
|
151
|
-
<style>
|
|
152
|
-
.csqc-ligneBleue {
|
|
153
|
-
border-left: 30px #095797 solid !important;
|
|
154
|
-
}
|
|
155
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<v-navigation-drawer
|
|
3
|
+
v-model="visible"
|
|
4
|
+
location="right"
|
|
5
|
+
temporary
|
|
6
|
+
class="pa-0 elevation-2 csqc-ligneBleue"
|
|
7
|
+
:width="grosseurTiroir"
|
|
8
|
+
:persistent="persistant"
|
|
9
|
+
@keydown.esc="!persistant ? fermeture : ''"
|
|
10
|
+
@click:outside="!persistant ? fermeture : ''"
|
|
11
|
+
>
|
|
12
|
+
<v-card class="pa-0 ma-0 pl-8 pt-8">
|
|
13
|
+
<!-- Bouton en haut à droite -->
|
|
14
|
+
<v-btn
|
|
15
|
+
icon="mdi-close"
|
|
16
|
+
variant="text"
|
|
17
|
+
class="position-absolute couleurHover"
|
|
18
|
+
style="top: 5px; right: 5px"
|
|
19
|
+
@click="fermeture"
|
|
20
|
+
></v-btn>
|
|
21
|
+
|
|
22
|
+
<v-card-title
|
|
23
|
+
class="pa-0 ma-0 pb-6 text-wrap"
|
|
24
|
+
style="font-size: 24px"
|
|
25
|
+
>
|
|
26
|
+
<slot name="titre"></slot>
|
|
27
|
+
<div text-h5>{{ titre }}</div>
|
|
28
|
+
</v-card-title>
|
|
29
|
+
|
|
30
|
+
<v-card-text class="pa-0 ma-0 pb-6 pr-6">
|
|
31
|
+
<v-container>
|
|
32
|
+
<slot></slot>
|
|
33
|
+
<slot name="content"></slot>
|
|
34
|
+
</v-container>
|
|
35
|
+
</v-card-text>
|
|
36
|
+
<v-card-actions class="my-2 d-flex justify-end pr-6 pb-5">
|
|
37
|
+
<slot name="actions"></slot>
|
|
38
|
+
<v-btn
|
|
39
|
+
v-if="btnAnnuler"
|
|
40
|
+
color="primary"
|
|
41
|
+
variant="text"
|
|
42
|
+
:loading="operationEnCours"
|
|
43
|
+
@click="fermeture"
|
|
44
|
+
>
|
|
45
|
+
{{ props.btnAnnulerTexte ? props.btnAnnulerTexte : $t('csqc.bouton.annuler') }}
|
|
46
|
+
</v-btn>
|
|
47
|
+
|
|
48
|
+
<v-btn
|
|
49
|
+
v-if="btnOk"
|
|
50
|
+
class="Gouttiere"
|
|
51
|
+
color="primary"
|
|
52
|
+
variant="flat"
|
|
53
|
+
:loading="operationEnCours"
|
|
54
|
+
:disabled="btnOkDesactiver || operationEnCours"
|
|
55
|
+
@click="okBouton"
|
|
56
|
+
>
|
|
57
|
+
{{ props.btnOkTexte ? props.btnOkTexte : $t('csqc.bouton.ok') }}
|
|
58
|
+
</v-btn>
|
|
59
|
+
</v-card-actions>
|
|
60
|
+
</v-card>
|
|
61
|
+
</v-navigation-drawer>
|
|
62
|
+
</template>
|
|
63
|
+
<script lang="ts" setup>
|
|
64
|
+
import { ref, computed } from 'vue'
|
|
65
|
+
import { useDisplay } from 'vuetify'
|
|
66
|
+
|
|
67
|
+
const visible = ref(false)
|
|
68
|
+
const display = useDisplay()
|
|
69
|
+
|
|
70
|
+
// Déclaration des props
|
|
71
|
+
const props = defineProps({
|
|
72
|
+
titre: {
|
|
73
|
+
type: String,
|
|
74
|
+
default: '',
|
|
75
|
+
required: false,
|
|
76
|
+
},
|
|
77
|
+
btnAnnuler: {
|
|
78
|
+
type: Boolean,
|
|
79
|
+
default: true,
|
|
80
|
+
required: false,
|
|
81
|
+
},
|
|
82
|
+
btnOk: {
|
|
83
|
+
type: Boolean,
|
|
84
|
+
default: true,
|
|
85
|
+
required: false,
|
|
86
|
+
},
|
|
87
|
+
btnAnnulerTexte: {
|
|
88
|
+
type: String,
|
|
89
|
+
default: '',
|
|
90
|
+
required: false,
|
|
91
|
+
},
|
|
92
|
+
btnOkDesactiver: {
|
|
93
|
+
type: Boolean,
|
|
94
|
+
default: false,
|
|
95
|
+
required: false,
|
|
96
|
+
},
|
|
97
|
+
operationEnCours: { type: Boolean, default: false },
|
|
98
|
+
persistant: { type: Boolean, default: true },
|
|
99
|
+
btnOkTexte: {
|
|
100
|
+
type: String,
|
|
101
|
+
default: '',
|
|
102
|
+
required: false,
|
|
103
|
+
},
|
|
104
|
+
})
|
|
105
|
+
|
|
106
|
+
// Déclaration des événements
|
|
107
|
+
const emit = defineEmits(['fermer', 'ok'])
|
|
108
|
+
|
|
109
|
+
// Méthodes
|
|
110
|
+
const ouvrir = () => {
|
|
111
|
+
visible.value = true
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const fermer = () => {
|
|
115
|
+
visible.value = false
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const fermeture = () => {
|
|
119
|
+
emit('fermer')
|
|
120
|
+
fermer()
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const okBouton = () => {
|
|
124
|
+
emit('ok')
|
|
125
|
+
fermer()
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// Calcul des tailles du tiroir en fonction du breakpoint
|
|
129
|
+
const grosseurTiroir = computed(() => {
|
|
130
|
+
switch (display.name.value) {
|
|
131
|
+
case 'xs':
|
|
132
|
+
return ''
|
|
133
|
+
case 'sm':
|
|
134
|
+
return 0.95 * display.width.value
|
|
135
|
+
case 'md':
|
|
136
|
+
return 0.8 * display.width.value
|
|
137
|
+
case 'lg':
|
|
138
|
+
return 0.7 * display.width.value
|
|
139
|
+
case 'xl':
|
|
140
|
+
return 0.6 * display.width.value
|
|
141
|
+
case 'xxl':
|
|
142
|
+
return 0.5 * display.width.value
|
|
143
|
+
default:
|
|
144
|
+
return ''
|
|
145
|
+
}
|
|
146
|
+
})
|
|
147
|
+
|
|
148
|
+
defineExpose({ ouvrir, fermer })
|
|
149
|
+
</script>
|
|
150
|
+
|
|
151
|
+
<style>
|
|
152
|
+
.csqc-ligneBleue {
|
|
153
|
+
border-left: 30px #095797 solid !important;
|
|
154
|
+
}
|
|
155
|
+
</style>
|
package/index.ts
CHANGED
|
@@ -1,61 +1,63 @@
|
|
|
1
|
-
import csqcAlerteErreur from './composants/csqcAlerteErreur.vue'
|
|
2
|
-
import csqcDialogue from './composants/csqcDialogue.vue'
|
|
3
|
-
import csqcOptionSwitch from './composants/csqcOptionSwitch.vue'
|
|
4
|
-
import csqcRecherche from './composants/csqcRecherche.vue'
|
|
5
|
-
import csqcSnackbar from './composants/csqcSnackbar.vue'
|
|
6
|
-
import csqcTiroir from './composants/csqcTiroir.vue'
|
|
7
|
-
import pivEntete from './composants/gabarit/pivEntete.vue'
|
|
8
|
-
import pivFooter from './composants/gabarit/pivPiedPage.vue'
|
|
9
|
-
import csqcMenu from './composants/gabarit/csqcMenu.vue'
|
|
10
|
-
import csqcConfirmation from './composants/csqcConfirmation.vue'
|
|
11
|
-
import csqcTable from './composants/csqcTable/csqcTable.vue'
|
|
12
|
-
import csqcCodeBudgetaire from './composants/codeBudgetaireGenerique.vue'
|
|
13
|
-
import csqcChaise from './composants/csqcChaise/chaiseConteneur.vue'
|
|
14
|
-
import csqcAide from './composants/csqcAide.vue'
|
|
15
|
-
import csqcEntete from './composants/csqcEntete.vue'
|
|
16
|
-
import csqcTexteBilingue from './composants/csqcTexteBilingue.vue'
|
|
17
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
18
|
-
import csqcEditeurTexteRiche from './composants/csqcEditeurTexteRiche.vue'
|
|
19
|
-
import
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
import
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
1
|
+
import csqcAlerteErreur from './composants/csqcAlerteErreur.vue'
|
|
2
|
+
import csqcDialogue from './composants/csqcDialogue.vue'
|
|
3
|
+
import csqcOptionSwitch from './composants/csqcOptionSwitch.vue'
|
|
4
|
+
import csqcRecherche from './composants/csqcRecherche.vue'
|
|
5
|
+
import csqcSnackbar from './composants/csqcSnackbar.vue'
|
|
6
|
+
import csqcTiroir from './composants/csqcTiroir.vue'
|
|
7
|
+
import pivEntete from './composants/gabarit/pivEntete.vue'
|
|
8
|
+
import pivFooter from './composants/gabarit/pivPiedPage.vue'
|
|
9
|
+
import csqcMenu from './composants/gabarit/csqcMenu.vue'
|
|
10
|
+
import csqcConfirmation from './composants/csqcConfirmation.vue'
|
|
11
|
+
import csqcTable from './composants/csqcTable/csqcTable.vue'
|
|
12
|
+
import csqcCodeBudgetaire from './composants/codeBudgetaireGenerique.vue'
|
|
13
|
+
import csqcChaise from './composants/csqcChaise/chaiseConteneur.vue'
|
|
14
|
+
import csqcAide from './composants/csqcAide.vue'
|
|
15
|
+
import csqcEntete from './composants/csqcEntete.vue'
|
|
16
|
+
import csqcTexteBilingue from './composants/csqcTexteBilingue.vue'
|
|
17
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
18
|
+
import csqcEditeurTexteRiche from './composants/csqcEditeurTexteRiche.vue'
|
|
19
|
+
import csqcImportCSV from './composants/csqcImportCSV.vue'
|
|
20
|
+
import validateurs from './composants/validateurs'
|
|
21
|
+
|
|
22
|
+
// modèles
|
|
23
|
+
import NotificationGabaritDefaut from './modeles/notificationGabaritDefaut'
|
|
24
|
+
import modeleSnackbar from './modeles/composants/snackbar'
|
|
25
|
+
import modeleDatatableColonne from './modeles/composants/datatableColonne'
|
|
26
|
+
import apiReponse from './modeles/apiReponse'
|
|
27
|
+
import data from './modeles/data'
|
|
28
|
+
import response from './modeles/response'
|
|
29
|
+
|
|
30
|
+
// i18n
|
|
31
|
+
import csqcEn from './locales/en.json'
|
|
32
|
+
import csqcFr from './locales/fr.json'
|
|
33
|
+
|
|
34
|
+
export {
|
|
35
|
+
csqcFr,
|
|
36
|
+
csqcEn,
|
|
37
|
+
csqcAlerteErreur,
|
|
38
|
+
csqcDialogue,
|
|
39
|
+
csqcConfirmation,
|
|
40
|
+
csqcOptionSwitch,
|
|
41
|
+
csqcRecherche,
|
|
42
|
+
csqcSnackbar,
|
|
43
|
+
csqcTable,
|
|
44
|
+
csqcTiroir,
|
|
45
|
+
csqcMenu,
|
|
46
|
+
csqcCodeBudgetaire,
|
|
47
|
+
csqcChaise,
|
|
48
|
+
pivFooter,
|
|
49
|
+
pivEntete,
|
|
50
|
+
csqcAide,
|
|
51
|
+
csqcEntete,
|
|
52
|
+
csqcTexteBilingue,
|
|
53
|
+
csqcEditeurTexteRiche,
|
|
54
|
+
validateurs,
|
|
55
|
+
csqcImportCSV,
|
|
56
|
+
|
|
57
|
+
modeleSnackbar,
|
|
58
|
+
modeleDatatableColonne,
|
|
59
|
+
apiReponse,
|
|
60
|
+
data,
|
|
61
|
+
response,
|
|
62
|
+
NotificationGabaritDefaut,
|
|
63
|
+
}
|
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
|
+
}
|