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
@@ -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 { TypeTelephone } from "./typeTelephone";
7
+
8
+ export interface EmployeTelephoneGrics {
9
+ numero: string;
10
+ poste: string;
11
+ typeTelephone: TypeTelephone;
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
+ import type { EmployeTelephoneGrics } from "./employeTelephoneGrics";
7
+
8
+ export interface EmployeTelephonesPersonnelsGrics {
9
+ description: string;
10
+ telephone: EmployeTelephoneGrics;
11
+ }
@@ -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
+ import type { EmployeTelephoneGrics } from "./employeTelephoneGrics";
7
+
8
+ export interface EmployeTelephonesProfessionnelsGrics {
9
+ description: string;
10
+ telephone: EmployeTelephoneGrics;
11
+ }
@@ -3,12 +3,12 @@
3
3
  * Any changes made to this file can be lost when this file is regenerated.
4
4
  */
5
5
 
6
- import type { GroupeCEIntervalle } from './groupeCEIntervalle'
6
+ import type { GroupeCEIntervalle } from "./groupeCEIntervalle";
7
7
 
8
8
  export interface GroupeCE {
9
- id: number
10
- commissionScolaireId: number
11
- nom: string
12
- groupeCEIntervalles: GroupeCEIntervalle[]
13
- parentId: number
9
+ id: number;
10
+ commissionScolaireId: number;
11
+ nom: string;
12
+ groupeCEIntervalles: GroupeCEIntervalle[];
13
+ parentId: number;
14
14
  }
@@ -4,10 +4,10 @@
4
4
  */
5
5
 
6
6
  export interface GroupeCEIntervalle {
7
- id: number
8
- corpsEmploiMin: string
9
- corpsEmploiMax: string
10
- groupeCEId: number
11
- min: number
12
- max: number
7
+ id: number;
8
+ corpsEmploiMin: string;
9
+ corpsEmploiMax: string;
10
+ groupeCEId: number;
11
+ min: number;
12
+ max: number;
13
13
  }
@@ -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 HistoriquesAbsenceBanqueGrics {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -0,0 +1,21 @@
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 { HistoriquesAbsenceLieuTravailGrics } from "./historiquesAbsenceLieuTravailGrics";
7
+ import type { HistoriquesAbsenceBanqueGrics } from "./historiquesAbsenceBanqueGrics";
8
+ import type { HistoriquesAbsenceSousBanqueGrics } from "./historiquesAbsenceSousBanqueGrics";
9
+
10
+ export interface HistoriquesAbsenceGrics {
11
+ id: number;
12
+ idMotifAbsence: string;
13
+ date: string;
14
+ heureFin: string;
15
+ heureDebut: string;
16
+ duree: number;
17
+ idEmploi: string;
18
+ lieuTravail: HistoriquesAbsenceLieuTravailGrics;
19
+ banque: HistoriquesAbsenceBanqueGrics;
20
+ sousBanque: HistoriquesAbsenceSousBanqueGrics;
21
+ }
@@ -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 HistoriquesAbsenceLieuTravailGrics {
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 class HistoriquesAbsenceSousBanqueGrics {
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 MotifsAbsenceBanque {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -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 { MotifsAbsenceRegimeAbsence } from "./motifsAbsenceRegimeAbsence";
7
+ import type { MotifsAbsenceSousMotifs } from "./motifsAbsenceSousMotifs";
8
+ import type { MotifsAbsenceTraitementBanques } from "./motifsAbsenceTraitementBanques";
9
+
10
+ export interface MotifsAbsenceGrics {
11
+ id: string;
12
+ description: string;
13
+ actif: boolean;
14
+ regimeAbsence: MotifsAbsenceRegimeAbsence;
15
+ sousMotifs: MotifsAbsenceSousMotifs[];
16
+ traitementBanques: MotifsAbsenceTraitementBanques[];
17
+ }
@@ -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 MotifsAbsenceRegimeAbsence {
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 MotifsAbsenceSousMotifs {
7
+ id: string;
8
+ description: string;
9
+ }
@@ -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
+ import type { MotifsAbsenceBanque } from "./motifsAbsenceBanque";
7
+
8
+ export interface MotifsAbsenceTraitementBanques {
9
+ ordreTraitement: string;
10
+ banque: MotifsAbsenceBanque;
11
+ }
@@ -0,0 +1,26 @@
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 { SyndicatGroupeCe } from "./syndicatGroupeCe";
7
+ import type { SyndicatResponsable } from "./syndicatResponsable";
8
+ import type { SyndicatUnite } from "./syndicatUnite";
9
+
10
+ export interface Syndicat {
11
+ id: number;
12
+ cSSId: number;
13
+ nom: string;
14
+ description: string;
15
+ estActif: boolean;
16
+ courriel: string;
17
+ adresse: string;
18
+ local: string;
19
+ telephone: string;
20
+ lienSiteWeb: string;
21
+ lienConventionCollective: string;
22
+ lienPlanClassification: string;
23
+ syndicatGroupeCEs: SyndicatGroupeCe[];
24
+ responsables: SyndicatResponsable[];
25
+ unites: SyndicatUnite[];
26
+ }
@@ -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 SyndicatGroupeCe {
7
+ id: number;
8
+ syndicatId: number;
9
+ groupeCEId: number;
10
+ }
@@ -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
+ export interface SyndicatResponsable {
7
+ id: number;
8
+ nom: string;
9
+ prenom: string;
10
+ courriel: string;
11
+ responsablePrincipal: boolean;
12
+ syndicatId: number;
13
+ utilisateurId: number;
14
+ poste: string;
15
+ }
@@ -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 class SyndicatUnite {
7
+ id: number;
8
+ syndicatId: number;
9
+ uniteId: number;
10
+ }
@@ -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 enum TypeTelephone {
7
+ telephone = 0,
8
+ mobile = 1,
9
+ telecopier = 2,
10
+ teleavertisseur = 3,
11
+ autre = 4,
12
+ }
package/modeles/unite.ts CHANGED
@@ -1,24 +1,23 @@
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 { UniteTypeEnseignement } from "./uniteTypeEnseignement";
7
-
8
- export interface Unite {
9
- id: number;
10
- numero: string;
11
- nom: string;
12
- numeroEcoleJeune: string;
13
- numeroCentreAdulte: string;
14
- estActif: boolean;
15
- typesEnseignementUnite: UniteTypeEnseignement[];
16
- commissionScolaireId: number;
17
- numeroNom: string;
18
- nomNumero: string;
19
- numeroEcoleJeuneStr: string;
20
- numeroCentreAdulteStr: string;
21
- estJeune: boolean;
22
- estAdulte: boolean;
23
- }
24
-
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 { UniteTypeEnseignement } from "./uniteTypeEnseignement";
7
+
8
+ export interface Unite {
9
+ id: number;
10
+ numero: string;
11
+ nom: string;
12
+ numeroEcoleJeune: string;
13
+ numeroCentreAdulte: string;
14
+ estActif: boolean;
15
+ typesEnseignementUnite: UniteTypeEnseignement[];
16
+ commissionScolaireId: number;
17
+ numeroNom: string;
18
+ nomNumero: string;
19
+ numeroEcoleJeuneStr: string;
20
+ numeroCentreAdulteStr: string;
21
+ estJeune: boolean;
22
+ estAdulte: boolean;
23
+ }
@@ -4,12 +4,12 @@
4
4
  */
5
5
 
6
6
  export interface Utilisateur {
7
- id: number
8
- identifiant: string
9
- nom: string
10
- prenom: string
11
- courriel: string
12
- matricule: string
13
- commissionScolaireId: number
14
- langue: string
7
+ id: number;
8
+ identifiant: string;
9
+ nom: string;
10
+ prenom: string;
11
+ courriel: string;
12
+ matricule: string;
13
+ commissionScolaireId: number;
14
+ langue: string;
15
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.78",
3
+ "version": "0.0.80",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",