flit-models 3.3.4 → 3.3.6
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.
|
@@ -13,7 +13,8 @@ export declare enum EnumTipoRelatorio {
|
|
|
13
13
|
FOLHA_PONTO = "FOLHA_PONTO",
|
|
14
14
|
SALDOS = "SALDOS",
|
|
15
15
|
SALDOS_ACUMULADOS = "SALDOS_ACUMULADOS",
|
|
16
|
-
AUDITOR_IA_MARCACOES = "AUDITOR_IA_MARCACOES"
|
|
16
|
+
AUDITOR_IA_MARCACOES = "AUDITOR_IA_MARCACOES",
|
|
17
|
+
HISTORICO_RELATORIOS_PONTO_APP = "HISTORICO_RELATORIOS_PONTO_APP"
|
|
17
18
|
}
|
|
18
19
|
export declare enum EnumStatusRelatorio {
|
|
19
20
|
PROCESSANDO = "PROCESSANDO",
|
|
@@ -20,6 +20,7 @@ var EnumTipoRelatorio;
|
|
|
20
20
|
EnumTipoRelatorio["SALDOS"] = "SALDOS";
|
|
21
21
|
EnumTipoRelatorio["SALDOS_ACUMULADOS"] = "SALDOS_ACUMULADOS";
|
|
22
22
|
EnumTipoRelatorio["AUDITOR_IA_MARCACOES"] = "AUDITOR_IA_MARCACOES";
|
|
23
|
+
EnumTipoRelatorio["HISTORICO_RELATORIOS_PONTO_APP"] = "HISTORICO_RELATORIOS_PONTO_APP";
|
|
23
24
|
})(EnumTipoRelatorio = exports.EnumTipoRelatorio || (exports.EnumTipoRelatorio = {}));
|
|
24
25
|
var EnumStatusRelatorio;
|
|
25
26
|
(function (EnumStatusRelatorio) {
|
|
@@ -1,38 +1,41 @@
|
|
|
1
1
|
import { AuditoriaModificadorFirestoreData } from './auditoria/modificador';
|
|
2
2
|
export declare enum CamposFormulaDeCalculoAbsenteismoEnum {
|
|
3
|
-
FALTAS = "
|
|
4
|
-
FALTAS_BH = "
|
|
5
|
-
ATRASOS = "
|
|
6
|
-
ATESTADOS = "
|
|
7
|
-
SUSPENSOES = "
|
|
3
|
+
FALTAS = "faltas",
|
|
4
|
+
FALTAS_BH = "faltas banco de horas",
|
|
5
|
+
ATRASOS = "atrasos",
|
|
6
|
+
ATESTADOS = "atestados",
|
|
7
|
+
SUSPENSOES = "suspensoes"
|
|
8
8
|
}
|
|
9
9
|
export declare enum ModeloAbsenteismoPadraoIdentificadorEnum {
|
|
10
|
-
ABSENTEISMO_COMPLETO = "
|
|
11
|
-
ABSENTEISMO_FALTA = "
|
|
12
|
-
ABSENTEISMO_ATRASO = "
|
|
10
|
+
ABSENTEISMO_COMPLETO = "absenteismo_completo",
|
|
11
|
+
ABSENTEISMO_FALTA = "absenteismo_falta",
|
|
12
|
+
ABSENTEISMO_ATRASO = "absenteismo_atraso"
|
|
13
13
|
}
|
|
14
14
|
export declare enum ColunasAbsenteismoEnum {
|
|
15
|
-
COLABORADOR = "
|
|
16
|
-
CPF = "
|
|
17
|
-
EMPRESA = "
|
|
18
|
-
DEPARTAMENTO = "
|
|
19
|
-
CARGO = "
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
15
|
+
COLABORADOR = "colaborador",
|
|
16
|
+
CPF = "cpf",
|
|
17
|
+
EMPRESA = "empresa",
|
|
18
|
+
DEPARTAMENTO = "departamento",
|
|
19
|
+
CARGO = "cargo",
|
|
20
|
+
VA = "va",
|
|
21
|
+
VR = "vr",
|
|
22
|
+
VT = "vt",
|
|
23
|
+
DIAS_TRABALHADOS = "dias_trabalhados",
|
|
24
|
+
HORAS_PREVISTAS = "horas_previstas",
|
|
25
|
+
HORAS_TRABALHADAS = "horas_trabalhadas",
|
|
26
|
+
HORAS_EXTRAS = "horas_extras",
|
|
27
|
+
SUSPENSOES = "suspensoes",
|
|
28
|
+
SUSPENSOES_PORCENTAGEM = "suspensoes_porcentagem",
|
|
29
|
+
ATESTADOS = "atestados",
|
|
30
|
+
ATESTADOS_PORCENTAGEM = "atestados_porcentagem",
|
|
31
|
+
FALTAS = "faltas",
|
|
32
|
+
FALTAS_PORCENTAGEM = "faltas_porcentagem",
|
|
33
|
+
FALTAS_BH = "faltas_bh",
|
|
34
|
+
FALTAS_BH_PORCENTAGEM = "faltas_bh_porcentagem",
|
|
35
|
+
ATRASOS = "atrasos",
|
|
36
|
+
ATRASOS_PORCENTAGEM = "atrasos_porcentagem",
|
|
37
|
+
ABSENTEISMO = "absenteismo",
|
|
38
|
+
ABSENTEISMO_PORCENTAGEM = "absenteismo_porcentagem"
|
|
36
39
|
}
|
|
37
40
|
export declare class ModeloAbsenteismo {
|
|
38
41
|
_id: string;
|
|
@@ -3,41 +3,44 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.modelosAbsenteismoPadroes = exports.ModeloAbsenteismo = exports.ColunasAbsenteismoEnum = exports.ModeloAbsenteismoPadraoIdentificadorEnum = exports.CamposFormulaDeCalculoAbsenteismoEnum = void 0;
|
|
4
4
|
var CamposFormulaDeCalculoAbsenteismoEnum;
|
|
5
5
|
(function (CamposFormulaDeCalculoAbsenteismoEnum) {
|
|
6
|
-
CamposFormulaDeCalculoAbsenteismoEnum["FALTAS"] = "
|
|
7
|
-
CamposFormulaDeCalculoAbsenteismoEnum["FALTAS_BH"] = "
|
|
8
|
-
CamposFormulaDeCalculoAbsenteismoEnum["ATRASOS"] = "
|
|
9
|
-
CamposFormulaDeCalculoAbsenteismoEnum["ATESTADOS"] = "
|
|
10
|
-
CamposFormulaDeCalculoAbsenteismoEnum["SUSPENSOES"] = "
|
|
6
|
+
CamposFormulaDeCalculoAbsenteismoEnum["FALTAS"] = "faltas";
|
|
7
|
+
CamposFormulaDeCalculoAbsenteismoEnum["FALTAS_BH"] = "faltas banco de horas";
|
|
8
|
+
CamposFormulaDeCalculoAbsenteismoEnum["ATRASOS"] = "atrasos";
|
|
9
|
+
CamposFormulaDeCalculoAbsenteismoEnum["ATESTADOS"] = "atestados";
|
|
10
|
+
CamposFormulaDeCalculoAbsenteismoEnum["SUSPENSOES"] = "suspensoes";
|
|
11
11
|
})(CamposFormulaDeCalculoAbsenteismoEnum = exports.CamposFormulaDeCalculoAbsenteismoEnum || (exports.CamposFormulaDeCalculoAbsenteismoEnum = {}));
|
|
12
12
|
var ModeloAbsenteismoPadraoIdentificadorEnum;
|
|
13
13
|
(function (ModeloAbsenteismoPadraoIdentificadorEnum) {
|
|
14
|
-
ModeloAbsenteismoPadraoIdentificadorEnum["ABSENTEISMO_COMPLETO"] = "
|
|
15
|
-
ModeloAbsenteismoPadraoIdentificadorEnum["ABSENTEISMO_FALTA"] = "
|
|
16
|
-
ModeloAbsenteismoPadraoIdentificadorEnum["ABSENTEISMO_ATRASO"] = "
|
|
14
|
+
ModeloAbsenteismoPadraoIdentificadorEnum["ABSENTEISMO_COMPLETO"] = "absenteismo_completo";
|
|
15
|
+
ModeloAbsenteismoPadraoIdentificadorEnum["ABSENTEISMO_FALTA"] = "absenteismo_falta";
|
|
16
|
+
ModeloAbsenteismoPadraoIdentificadorEnum["ABSENTEISMO_ATRASO"] = "absenteismo_atraso";
|
|
17
17
|
})(ModeloAbsenteismoPadraoIdentificadorEnum = exports.ModeloAbsenteismoPadraoIdentificadorEnum || (exports.ModeloAbsenteismoPadraoIdentificadorEnum = {}));
|
|
18
18
|
var ColunasAbsenteismoEnum;
|
|
19
19
|
(function (ColunasAbsenteismoEnum) {
|
|
20
|
-
ColunasAbsenteismoEnum["COLABORADOR"] = "
|
|
21
|
-
ColunasAbsenteismoEnum["CPF"] = "
|
|
22
|
-
ColunasAbsenteismoEnum["EMPRESA"] = "
|
|
23
|
-
ColunasAbsenteismoEnum["DEPARTAMENTO"] = "
|
|
24
|
-
ColunasAbsenteismoEnum["CARGO"] = "
|
|
25
|
-
ColunasAbsenteismoEnum["
|
|
26
|
-
ColunasAbsenteismoEnum["
|
|
27
|
-
ColunasAbsenteismoEnum["
|
|
28
|
-
ColunasAbsenteismoEnum["
|
|
29
|
-
ColunasAbsenteismoEnum["
|
|
30
|
-
ColunasAbsenteismoEnum["
|
|
31
|
-
ColunasAbsenteismoEnum["
|
|
32
|
-
ColunasAbsenteismoEnum["
|
|
33
|
-
ColunasAbsenteismoEnum["
|
|
34
|
-
ColunasAbsenteismoEnum["
|
|
35
|
-
ColunasAbsenteismoEnum["
|
|
36
|
-
ColunasAbsenteismoEnum["
|
|
37
|
-
ColunasAbsenteismoEnum["
|
|
38
|
-
ColunasAbsenteismoEnum["
|
|
39
|
-
ColunasAbsenteismoEnum["
|
|
40
|
-
ColunasAbsenteismoEnum["
|
|
20
|
+
ColunasAbsenteismoEnum["COLABORADOR"] = "colaborador";
|
|
21
|
+
ColunasAbsenteismoEnum["CPF"] = "cpf";
|
|
22
|
+
ColunasAbsenteismoEnum["EMPRESA"] = "empresa";
|
|
23
|
+
ColunasAbsenteismoEnum["DEPARTAMENTO"] = "departamento";
|
|
24
|
+
ColunasAbsenteismoEnum["CARGO"] = "cargo";
|
|
25
|
+
ColunasAbsenteismoEnum["VA"] = "va";
|
|
26
|
+
ColunasAbsenteismoEnum["VR"] = "vr";
|
|
27
|
+
ColunasAbsenteismoEnum["VT"] = "vt";
|
|
28
|
+
ColunasAbsenteismoEnum["DIAS_TRABALHADOS"] = "dias_trabalhados";
|
|
29
|
+
ColunasAbsenteismoEnum["HORAS_PREVISTAS"] = "horas_previstas";
|
|
30
|
+
ColunasAbsenteismoEnum["HORAS_TRABALHADAS"] = "horas_trabalhadas";
|
|
31
|
+
ColunasAbsenteismoEnum["HORAS_EXTRAS"] = "horas_extras";
|
|
32
|
+
ColunasAbsenteismoEnum["SUSPENSOES"] = "suspensoes";
|
|
33
|
+
ColunasAbsenteismoEnum["SUSPENSOES_PORCENTAGEM"] = "suspensoes_porcentagem";
|
|
34
|
+
ColunasAbsenteismoEnum["ATESTADOS"] = "atestados";
|
|
35
|
+
ColunasAbsenteismoEnum["ATESTADOS_PORCENTAGEM"] = "atestados_porcentagem";
|
|
36
|
+
ColunasAbsenteismoEnum["FALTAS"] = "faltas";
|
|
37
|
+
ColunasAbsenteismoEnum["FALTAS_PORCENTAGEM"] = "faltas_porcentagem";
|
|
38
|
+
ColunasAbsenteismoEnum["FALTAS_BH"] = "faltas_bh";
|
|
39
|
+
ColunasAbsenteismoEnum["FALTAS_BH_PORCENTAGEM"] = "faltas_bh_porcentagem";
|
|
40
|
+
ColunasAbsenteismoEnum["ATRASOS"] = "atrasos";
|
|
41
|
+
ColunasAbsenteismoEnum["ATRASOS_PORCENTAGEM"] = "atrasos_porcentagem";
|
|
42
|
+
ColunasAbsenteismoEnum["ABSENTEISMO"] = "absenteismo";
|
|
43
|
+
ColunasAbsenteismoEnum["ABSENTEISMO_PORCENTAGEM"] = "absenteismo_porcentagem";
|
|
41
44
|
})(ColunasAbsenteismoEnum = exports.ColunasAbsenteismoEnum || (exports.ColunasAbsenteismoEnum = {}));
|
|
42
45
|
var ModeloAbsenteismo = /** @class */ (function () {
|
|
43
46
|
function ModeloAbsenteismo(data) {
|
|
@@ -74,6 +77,9 @@ exports.modelosAbsenteismoPadroes = [
|
|
|
74
77
|
colunas: [
|
|
75
78
|
ColunasAbsenteismoEnum.COLABORADOR,
|
|
76
79
|
ColunasAbsenteismoEnum.CPF,
|
|
80
|
+
ColunasAbsenteismoEnum.VA,
|
|
81
|
+
ColunasAbsenteismoEnum.VR,
|
|
82
|
+
ColunasAbsenteismoEnum.VT,
|
|
77
83
|
ColunasAbsenteismoEnum.EMPRESA,
|
|
78
84
|
ColunasAbsenteismoEnum.DEPARTAMENTO,
|
|
79
85
|
ColunasAbsenteismoEnum.CARGO,
|
|
@@ -96,6 +102,9 @@ exports.modelosAbsenteismoPadroes = [
|
|
|
96
102
|
colunas: [
|
|
97
103
|
ColunasAbsenteismoEnum.COLABORADOR,
|
|
98
104
|
ColunasAbsenteismoEnum.CPF,
|
|
105
|
+
ColunasAbsenteismoEnum.VA,
|
|
106
|
+
ColunasAbsenteismoEnum.VR,
|
|
107
|
+
ColunasAbsenteismoEnum.VT,
|
|
99
108
|
ColunasAbsenteismoEnum.EMPRESA,
|
|
100
109
|
ColunasAbsenteismoEnum.DEPARTAMENTO,
|
|
101
110
|
ColunasAbsenteismoEnum.CARGO,
|
|
@@ -123,6 +132,9 @@ exports.modelosAbsenteismoPadroes = [
|
|
|
123
132
|
colunas: [
|
|
124
133
|
ColunasAbsenteismoEnum.COLABORADOR,
|
|
125
134
|
ColunasAbsenteismoEnum.CPF,
|
|
135
|
+
ColunasAbsenteismoEnum.VA,
|
|
136
|
+
ColunasAbsenteismoEnum.VR,
|
|
137
|
+
ColunasAbsenteismoEnum.VT,
|
|
126
138
|
ColunasAbsenteismoEnum.EMPRESA,
|
|
127
139
|
ColunasAbsenteismoEnum.DEPARTAMENTO,
|
|
128
140
|
ColunasAbsenteismoEnum.CARGO,
|
|
@@ -130,7 +142,6 @@ exports.modelosAbsenteismoPadroes = [
|
|
|
130
142
|
ColunasAbsenteismoEnum.HORAS_PREVISTAS,
|
|
131
143
|
ColunasAbsenteismoEnum.HORAS_TRABALHADAS,
|
|
132
144
|
ColunasAbsenteismoEnum.HORAS_EXTRAS,
|
|
133
|
-
ColunasAbsenteismoEnum.ATESTADOS,
|
|
134
145
|
ColunasAbsenteismoEnum.SUSPENSOES,
|
|
135
146
|
ColunasAbsenteismoEnum.SUSPENSOES_PORCENTAGEM,
|
|
136
147
|
ColunasAbsenteismoEnum.ATESTADOS,
|