keevo-api-services-hcm 0.0.9 → 0.0.11
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/esm2022/lib/models/dominio/CodigoDirf.model.mjs +2 -0
- package/esm2022/lib/models/dominio/CodigoGps.model.mjs +2 -0
- package/esm2022/lib/models/dominio/categoriaocorrenciaestado.model.mjs +18 -0
- package/esm2022/lib/models/dominio/categoriatrabalhadortiposafastamento.model.mjs +2 -0
- package/esm2022/lib/models/dominio/cbo.model.mjs +2 -0
- package/esm2022/lib/models/dominio/codigoterceiro.model.mjs +2 -0
- package/esm2022/lib/models/dominio/considerarmesessemtrabalharporafastamento.model.mjs +2 -0
- package/esm2022/lib/models/dominio/cooperativa.model.mjs +2 -0
- package/esm2022/lib/models/dominio/fpas.model.mjs +2 -0
- package/esm2022/lib/models/dominio/tipopagamentosalario.model.mjs +2 -0
- package/esm2022/lib/models/dominio/tiposalario.model.mjs +2 -0
- package/esm2022/lib/services/dominio/categoria-ocorrencia-estado.service.mjs +39 -0
- package/esm2022/lib/services/dominio/categoria-trabalhador-tipos-afastamento.service.mjs +27 -0
- package/esm2022/lib/services/dominio/categoria-trabalhador.service.mjs +36 -0
- package/esm2022/lib/services/dominio/cbo.service.mjs +35 -0
- package/esm2022/lib/services/dominio/codigo-dirf.service.mjs +36 -0
- package/esm2022/lib/services/dominio/codigo-gps.service.mjs +35 -0
- package/esm2022/lib/services/dominio/codigo-terceiro.service.mjs +35 -0
- package/esm2022/lib/services/dominio/considerar-meses-sem-trabalhar-por-afastamento.service.mjs +35 -0
- package/esm2022/lib/services/dominio/contribuicao-patronal.service.mjs +35 -0
- package/esm2022/lib/services/dominio/cooperativa.service.mjs +35 -0
- package/esm2022/lib/services/dominio/fpas.service.mjs +35 -0
- package/esm2022/lib/services/dominio/tipo-pagamento-salario.service.mjs +35 -0
- package/esm2022/lib/services/dominio/tipo-salario.service.mjs +35 -0
- package/esm2022/lib/services/pessoa/colaborador.service.mjs +2 -2
- package/esm2022/public-api.mjs +17 -3
- package/fesm2022/keevo-api-services-hcm.mjs +403 -64
- package/fesm2022/keevo-api-services-hcm.mjs.map +1 -1
- package/lib/models/dominio/CodigoDirf.model.d.ts +5 -0
- package/lib/models/dominio/CodigoGps.model.d.ts +6 -0
- package/lib/models/dominio/categoriaocorrenciaestado.model.d.ts +24 -0
- package/lib/models/dominio/categoriatrabalhadortiposafastamento.model.d.ts +7 -0
- package/lib/models/dominio/cbo.model.d.ts +5 -0
- package/lib/models/dominio/considerarmesessemtrabalharporafastamento.model.d.ts +5 -0
- package/lib/models/dominio/cooperativa.model.d.ts +4 -0
- package/lib/models/dominio/tipopagamentosalario.model.d.ts +5 -0
- package/lib/models/dominio/tiposalario.model.d.ts +5 -0
- package/lib/services/dominio/categoria-ocorrencia-estado.service.d.ts +20 -0
- package/lib/services/dominio/categoria-trabalhador-tipos-afastamento.service.d.ts +14 -0
- package/lib/services/dominio/categoria-trabalhador.service.d.ts +19 -0
- package/lib/services/dominio/cbo.service.d.ts +18 -0
- package/lib/services/dominio/codigo-dirf.service.d.ts +19 -0
- package/lib/services/dominio/codigo-gps.service.d.ts +18 -0
- package/lib/services/{hcm → dominio}/codigo-terceiro.service.d.ts +1 -1
- package/lib/services/dominio/considerar-meses-sem-trabalhar-por-afastamento.service.d.ts +18 -0
- package/lib/services/dominio/contribuicao-patronal.service.d.ts +18 -0
- package/lib/services/dominio/cooperativa.service.d.ts +18 -0
- package/lib/services/{hcm → dominio}/fpas.service.d.ts +1 -1
- package/lib/services/dominio/tipo-pagamento-salario.service.d.ts +18 -0
- package/lib/services/dominio/tipo-salario.service.d.ts +18 -0
- package/package.json +2 -2
- package/public-api.d.ts +16 -2
- package/esm2022/lib/models/hcm/codigoterceiro/codigoterceiro.model.mjs +0 -2
- package/esm2022/lib/models/hcm/fpas/fpas.model.mjs +0 -2
- package/esm2022/lib/services/hcm/codigo-terceiro.service.mjs +0 -35
- package/esm2022/lib/services/hcm/fpas.service.mjs +0 -35
- /package/lib/models/{hcm/codigoterceiro → dominio}/codigoterceiro.model.d.ts +0 -0
- /package/lib/models/{hcm/fpas → dominio}/fpas.model.d.ts +0 -0
@@ -106,7 +106,7 @@ class ColaboradorService extends BaseApiService {
|
|
106
106
|
return this.post(this.hostEnv.apiUrlHcm, this.rotaAtualizaVinculoHierarquia, colaboradores);
|
107
107
|
}
|
108
108
|
Listar(filtro) {
|
109
|
-
return this.
|
109
|
+
return this.post(this.hostEnv.apiUrlHcm, this.rotaListar, filtro);
|
110
110
|
}
|
111
111
|
ListarTodos(idmaster, idempresaevocenter) {
|
112
112
|
return this.getAll(this.hostEnv.apiUrlHcm, `${this.rotaListarTodos}/${idmaster}/${idempresaevocenter}`);
|
@@ -541,68 +541,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
|
|
541
541
|
args: ['hostEnv']
|
542
542
|
}] }] });
|
543
543
|
|
544
|
-
class FpasService extends BaseApiService {
|
545
|
-
constructor(httpClient, hostEnv) {
|
546
|
-
super(httpClient);
|
547
|
-
this.httpClient = httpClient;
|
548
|
-
this.hostEnv = hostEnv;
|
549
|
-
this.rotaListar = 'hcm/api/v1/fpas/listar';
|
550
|
-
this.rotaExisteID = 'hcm/api/v1/fpas/existeid';
|
551
|
-
this.rotaSelecionar = 'hcm/api/v1/fpas/selecionar';
|
552
|
-
}
|
553
|
-
Listar() {
|
554
|
-
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
555
|
-
}
|
556
|
-
ExisteID(idfpas) {
|
557
|
-
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idfpas}`);
|
558
|
-
}
|
559
|
-
Selecionar(idfpas) {
|
560
|
-
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idfpas}`);
|
561
|
-
}
|
562
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: FpasService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
563
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: FpasService, providedIn: 'root' }); }
|
564
|
-
}
|
565
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: FpasService, decorators: [{
|
566
|
-
type: Injectable,
|
567
|
-
args: [{
|
568
|
-
providedIn: 'root'
|
569
|
-
}]
|
570
|
-
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
571
|
-
type: Inject,
|
572
|
-
args: ['hostEnv']
|
573
|
-
}] }] });
|
574
|
-
|
575
|
-
class CodigoTerceiroService extends BaseApiService {
|
576
|
-
constructor(httpClient, hostEnv) {
|
577
|
-
super(httpClient);
|
578
|
-
this.httpClient = httpClient;
|
579
|
-
this.hostEnv = hostEnv;
|
580
|
-
this.rotaListar = 'hcm/api/v1/codigoterceiro/listar';
|
581
|
-
this.rotaExisteID = 'hcm/api/v1/codigoterceiro/existeid';
|
582
|
-
this.rotaSelecionar = 'hcm/api/v1/codigoterceiro/selecionar';
|
583
|
-
}
|
584
|
-
Listar() {
|
585
|
-
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
586
|
-
}
|
587
|
-
ExisteID(idcodigoterceiro) {
|
588
|
-
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcodigoterceiro}`);
|
589
|
-
}
|
590
|
-
Selecionar(idcodigoterceiro) {
|
591
|
-
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcodigoterceiro}`);
|
592
|
-
}
|
593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoTerceiroService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
594
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoTerceiroService, providedIn: 'root' }); }
|
595
|
-
}
|
596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoTerceiroService, decorators: [{
|
597
|
-
type: Injectable,
|
598
|
-
args: [{
|
599
|
-
providedIn: 'root'
|
600
|
-
}]
|
601
|
-
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
602
|
-
type: Inject,
|
603
|
-
args: ['hostEnv']
|
604
|
-
}] }] });
|
605
|
-
|
606
544
|
class EmpresaBannerService extends BaseApiService {
|
607
545
|
constructor(httpClient, hostEnv) {
|
608
546
|
super(httpClient);
|
@@ -1132,6 +1070,407 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
|
|
1132
1070
|
}]
|
1133
1071
|
}], ctorParameters: () => [] });
|
1134
1072
|
|
1073
|
+
class CategoriaOcorrenciaEstadoService extends BaseApiService {
|
1074
|
+
constructor(httpClient, hostEnv) {
|
1075
|
+
super(httpClient);
|
1076
|
+
this.httpClient = httpClient;
|
1077
|
+
this.hostEnv = hostEnv;
|
1078
|
+
this.rotaExisteID = 'hcm/api/v1/CategoriaOcorrenciaEstado/ExisteID';
|
1079
|
+
this.rotaSelecionar = 'hcm/api/v1/CategoriaOcorrenciaEstado/selecionar';
|
1080
|
+
this.rotaListarTodos = 'hcm/api/v1/CategoriaOcorrenciaEstado/Listar';
|
1081
|
+
this.rotaListarPorTipoCategoria = 'hcm/api/v1/CategoriaOcorrenciaEstado/ListarPorTipoCategoria';
|
1082
|
+
}
|
1083
|
+
ExisteID(idcategoriaocorrenciaestado) {
|
1084
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcategoriaocorrenciaestado}`);
|
1085
|
+
}
|
1086
|
+
Selecionar(idcategoriaocorrenciaestado) {
|
1087
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcategoriaocorrenciaestado}`);
|
1088
|
+
}
|
1089
|
+
Listar() {
|
1090
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListarTodos);
|
1091
|
+
}
|
1092
|
+
ListarPorCategoria(idtipocategoriaocorrenciaestado) {
|
1093
|
+
return this.getAll(this.hostEnv.apiUrlHcm, `${this.rotaListarPorTipoCategoria}/${idtipocategoriaocorrenciaestado}`);
|
1094
|
+
}
|
1095
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaOcorrenciaEstadoService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1096
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaOcorrenciaEstadoService, providedIn: 'root' }); }
|
1097
|
+
}
|
1098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaOcorrenciaEstadoService, decorators: [{
|
1099
|
+
type: Injectable,
|
1100
|
+
args: [{
|
1101
|
+
providedIn: 'root'
|
1102
|
+
}]
|
1103
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1104
|
+
type: Inject,
|
1105
|
+
args: ['hostEnv']
|
1106
|
+
}] }] });
|
1107
|
+
|
1108
|
+
class CategoriaTrabalhadorTiposAfastamentoService extends BaseApiService {
|
1109
|
+
constructor(httpClient, hostEnv) {
|
1110
|
+
super(httpClient);
|
1111
|
+
this.httpClient = httpClient;
|
1112
|
+
this.hostEnv = hostEnv;
|
1113
|
+
this.rotaListarTodos = 'hcm/api/v1/CategoriaTrabalhadorTiposAfastamento/Listar';
|
1114
|
+
}
|
1115
|
+
Listar() {
|
1116
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListarTodos);
|
1117
|
+
}
|
1118
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaTrabalhadorTiposAfastamentoService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1119
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaTrabalhadorTiposAfastamentoService, providedIn: 'root' }); }
|
1120
|
+
}
|
1121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaTrabalhadorTiposAfastamentoService, decorators: [{
|
1122
|
+
type: Injectable,
|
1123
|
+
args: [{
|
1124
|
+
providedIn: 'root'
|
1125
|
+
}]
|
1126
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1127
|
+
type: Inject,
|
1128
|
+
args: ['hostEnv']
|
1129
|
+
}] }] });
|
1130
|
+
|
1131
|
+
class CategoriaTrabalhadorService extends BaseApiService {
|
1132
|
+
constructor(httpClient, hostEnv) {
|
1133
|
+
super(httpClient);
|
1134
|
+
this.httpClient = httpClient;
|
1135
|
+
this.hostEnv = hostEnv;
|
1136
|
+
this.rotaExisteID = 'hcm/api/v1/CategoriaTrabalhador/ExisteID';
|
1137
|
+
this.rotaSelecionar = 'hcm/api/v1/CategoriaTrabalhador/selecionar';
|
1138
|
+
this.rotaListarTodos = 'hcm/api/v1/CategoriaTrabalhador/Listar';
|
1139
|
+
this.rotaListarPorTipoCategoria = 'hcm/api/v1/CategoriaTrabalhador/ListarPorTipoCategoria';
|
1140
|
+
}
|
1141
|
+
ExisteID(idcategoriaocorrenciaestado) {
|
1142
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcategoriaocorrenciaestado}`);
|
1143
|
+
}
|
1144
|
+
Listar() {
|
1145
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListarTodos);
|
1146
|
+
}
|
1147
|
+
Selecionar(idcategoriaocorrenciaestado) {
|
1148
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcategoriaocorrenciaestado}`);
|
1149
|
+
}
|
1150
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaTrabalhadorService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1151
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaTrabalhadorService, providedIn: 'root' }); }
|
1152
|
+
}
|
1153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CategoriaTrabalhadorService, decorators: [{
|
1154
|
+
type: Injectable,
|
1155
|
+
args: [{
|
1156
|
+
providedIn: 'root'
|
1157
|
+
}]
|
1158
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1159
|
+
type: Inject,
|
1160
|
+
args: ['hostEnv']
|
1161
|
+
}] }] });
|
1162
|
+
|
1163
|
+
class CboService extends BaseApiService {
|
1164
|
+
constructor(httpClient, hostEnv) {
|
1165
|
+
super(httpClient);
|
1166
|
+
this.httpClient = httpClient;
|
1167
|
+
this.hostEnv = hostEnv;
|
1168
|
+
this.rotaExisteID = 'hcm/api/v1/cbo/ExisteID';
|
1169
|
+
this.rotaSelecionar = 'hcm/api/v1/cbo/selecionar';
|
1170
|
+
this.rotaListarTodos = 'hcm/api/v1/cbo/Listar';
|
1171
|
+
}
|
1172
|
+
ExisteID(idcbo) {
|
1173
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcbo}`);
|
1174
|
+
}
|
1175
|
+
Listar() {
|
1176
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListarTodos);
|
1177
|
+
}
|
1178
|
+
Selecionar(idcbo) {
|
1179
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcbo}`);
|
1180
|
+
}
|
1181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CboService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1182
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CboService, providedIn: 'root' }); }
|
1183
|
+
}
|
1184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CboService, decorators: [{
|
1185
|
+
type: Injectable,
|
1186
|
+
args: [{
|
1187
|
+
providedIn: 'root'
|
1188
|
+
}]
|
1189
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1190
|
+
type: Inject,
|
1191
|
+
args: ['hostEnv']
|
1192
|
+
}] }] });
|
1193
|
+
|
1194
|
+
class CodigoDirfService extends BaseApiService {
|
1195
|
+
constructor(httpClient, hostEnv) {
|
1196
|
+
super(httpClient);
|
1197
|
+
this.httpClient = httpClient;
|
1198
|
+
this.hostEnv = hostEnv;
|
1199
|
+
this.rotaExisteID = 'hcm/api/v1/codigodirf/ExisteID';
|
1200
|
+
this.rotaSelecionar = 'hcm/api/v1/codigodirf/selecionar';
|
1201
|
+
this.rotaListarTodos = 'hcm/api/v1/codigodirf/Listar';
|
1202
|
+
this.rotaListarPorTipoCategoria = 'hcm/api/v1/codigodirf/ListarPorTipoCategoria';
|
1203
|
+
}
|
1204
|
+
ExisteID(idcodigodirf) {
|
1205
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcodigodirf}`);
|
1206
|
+
}
|
1207
|
+
Listar() {
|
1208
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListarTodos);
|
1209
|
+
}
|
1210
|
+
Selecionar(idcodigodirf) {
|
1211
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcodigodirf}`);
|
1212
|
+
}
|
1213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoDirfService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1214
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoDirfService, providedIn: 'root' }); }
|
1215
|
+
}
|
1216
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoDirfService, decorators: [{
|
1217
|
+
type: Injectable,
|
1218
|
+
args: [{
|
1219
|
+
providedIn: 'root'
|
1220
|
+
}]
|
1221
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1222
|
+
type: Inject,
|
1223
|
+
args: ['hostEnv']
|
1224
|
+
}] }] });
|
1225
|
+
|
1226
|
+
class CodigoGpsService extends BaseApiService {
|
1227
|
+
constructor(httpClient, hostEnv) {
|
1228
|
+
super(httpClient);
|
1229
|
+
this.httpClient = httpClient;
|
1230
|
+
this.hostEnv = hostEnv;
|
1231
|
+
this.rotaExisteID = 'hcm/api/v1/codigogps/ExisteID';
|
1232
|
+
this.rotaSelecionar = 'hcm/api/v1/codigogps/selecionar';
|
1233
|
+
this.rotaListarTodos = 'hcm/api/v1/codigogps/Listar';
|
1234
|
+
}
|
1235
|
+
ExisteID(idcodigogps) {
|
1236
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcodigogps}`);
|
1237
|
+
}
|
1238
|
+
Listar() {
|
1239
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListarTodos);
|
1240
|
+
}
|
1241
|
+
Selecionar(idcodigogps) {
|
1242
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcodigogps}`);
|
1243
|
+
}
|
1244
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoGpsService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1245
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoGpsService, providedIn: 'root' }); }
|
1246
|
+
}
|
1247
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoGpsService, decorators: [{
|
1248
|
+
type: Injectable,
|
1249
|
+
args: [{
|
1250
|
+
providedIn: 'root'
|
1251
|
+
}]
|
1252
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1253
|
+
type: Inject,
|
1254
|
+
args: ['hostEnv']
|
1255
|
+
}] }] });
|
1256
|
+
|
1257
|
+
class CodigoTerceiroService extends BaseApiService {
|
1258
|
+
constructor(httpClient, hostEnv) {
|
1259
|
+
super(httpClient);
|
1260
|
+
this.httpClient = httpClient;
|
1261
|
+
this.hostEnv = hostEnv;
|
1262
|
+
this.rotaListar = 'hcm/api/v1/codigoterceiro/listar';
|
1263
|
+
this.rotaExisteID = 'hcm/api/v1/codigoterceiro/existeid';
|
1264
|
+
this.rotaSelecionar = 'hcm/api/v1/codigoterceiro/selecionar';
|
1265
|
+
}
|
1266
|
+
Listar() {
|
1267
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1268
|
+
}
|
1269
|
+
ExisteID(idcodigoterceiro) {
|
1270
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcodigoterceiro}`);
|
1271
|
+
}
|
1272
|
+
Selecionar(idcodigoterceiro) {
|
1273
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcodigoterceiro}`);
|
1274
|
+
}
|
1275
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoTerceiroService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1276
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoTerceiroService, providedIn: 'root' }); }
|
1277
|
+
}
|
1278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CodigoTerceiroService, decorators: [{
|
1279
|
+
type: Injectable,
|
1280
|
+
args: [{
|
1281
|
+
providedIn: 'root'
|
1282
|
+
}]
|
1283
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1284
|
+
type: Inject,
|
1285
|
+
args: ['hostEnv']
|
1286
|
+
}] }] });
|
1287
|
+
|
1288
|
+
class ConsiderarMesesSemTrabalharPorAfastamentoService extends BaseApiService {
|
1289
|
+
constructor(httpClient, hostEnv) {
|
1290
|
+
super(httpClient);
|
1291
|
+
this.httpClient = httpClient;
|
1292
|
+
this.hostEnv = hostEnv;
|
1293
|
+
this.rotaListar = 'hcm/api/v1/considerarmesessemtrabalharporafastamento/listar';
|
1294
|
+
this.rotaExisteID = 'hcm/api/v1/considerarmesessemtrabalharporafastamento/existeid';
|
1295
|
+
this.rotaSelecionar = 'hcm/api/v1/considerarmesessemtrabalharporafastamento/selecionar';
|
1296
|
+
}
|
1297
|
+
Listar() {
|
1298
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1299
|
+
}
|
1300
|
+
ExisteID(idcodigoterceiro) {
|
1301
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcodigoterceiro}`);
|
1302
|
+
}
|
1303
|
+
Selecionar(idcodigoterceiro) {
|
1304
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcodigoterceiro}`);
|
1305
|
+
}
|
1306
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ConsiderarMesesSemTrabalharPorAfastamentoService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1307
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ConsiderarMesesSemTrabalharPorAfastamentoService, providedIn: 'root' }); }
|
1308
|
+
}
|
1309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ConsiderarMesesSemTrabalharPorAfastamentoService, decorators: [{
|
1310
|
+
type: Injectable,
|
1311
|
+
args: [{
|
1312
|
+
providedIn: 'root'
|
1313
|
+
}]
|
1314
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1315
|
+
type: Inject,
|
1316
|
+
args: ['hostEnv']
|
1317
|
+
}] }] });
|
1318
|
+
|
1319
|
+
class ContribuicaoPatrimonialService extends BaseApiService {
|
1320
|
+
constructor(httpClient, hostEnv) {
|
1321
|
+
super(httpClient);
|
1322
|
+
this.httpClient = httpClient;
|
1323
|
+
this.hostEnv = hostEnv;
|
1324
|
+
this.rotaListar = 'hcm/api/v1/contribuicaopatronal/listar';
|
1325
|
+
this.rotaExisteID = 'hcm/api/v1/contribuicaopatronal/existeid';
|
1326
|
+
this.rotaSelecionar = 'hcm/api/v1/contribuicaopatronal/selecionar';
|
1327
|
+
}
|
1328
|
+
Listar() {
|
1329
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1330
|
+
}
|
1331
|
+
ExisteID(idcontribuicaopatronal) {
|
1332
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcontribuicaopatronal}`);
|
1333
|
+
}
|
1334
|
+
Selecionar(idcontribuicaopatronal) {
|
1335
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcontribuicaopatronal}`);
|
1336
|
+
}
|
1337
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ContribuicaoPatrimonialService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1338
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ContribuicaoPatrimonialService, providedIn: 'root' }); }
|
1339
|
+
}
|
1340
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: ContribuicaoPatrimonialService, decorators: [{
|
1341
|
+
type: Injectable,
|
1342
|
+
args: [{
|
1343
|
+
providedIn: 'root'
|
1344
|
+
}]
|
1345
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1346
|
+
type: Inject,
|
1347
|
+
args: ['hostEnv']
|
1348
|
+
}] }] });
|
1349
|
+
|
1350
|
+
class CooperativaService extends BaseApiService {
|
1351
|
+
constructor(httpClient, hostEnv) {
|
1352
|
+
super(httpClient);
|
1353
|
+
this.httpClient = httpClient;
|
1354
|
+
this.hostEnv = hostEnv;
|
1355
|
+
this.rotaListar = 'hcm/api/v1/cooperativa/listar';
|
1356
|
+
this.rotaExisteID = 'hcm/api/v1/cooperativa/existeid';
|
1357
|
+
this.rotaSelecionar = 'hcm/api/v1/cooperativa/selecionar';
|
1358
|
+
}
|
1359
|
+
Listar() {
|
1360
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1361
|
+
}
|
1362
|
+
ExisteID(idcooperativa) {
|
1363
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idcooperativa}`);
|
1364
|
+
}
|
1365
|
+
Selecionar(idcooperativa) {
|
1366
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idcooperativa}`);
|
1367
|
+
}
|
1368
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CooperativaService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1369
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CooperativaService, providedIn: 'root' }); }
|
1370
|
+
}
|
1371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: CooperativaService, decorators: [{
|
1372
|
+
type: Injectable,
|
1373
|
+
args: [{
|
1374
|
+
providedIn: 'root'
|
1375
|
+
}]
|
1376
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1377
|
+
type: Inject,
|
1378
|
+
args: ['hostEnv']
|
1379
|
+
}] }] });
|
1380
|
+
|
1381
|
+
class FpasService extends BaseApiService {
|
1382
|
+
constructor(httpClient, hostEnv) {
|
1383
|
+
super(httpClient);
|
1384
|
+
this.httpClient = httpClient;
|
1385
|
+
this.hostEnv = hostEnv;
|
1386
|
+
this.rotaListar = 'hcm/api/v1/fpas/listar';
|
1387
|
+
this.rotaExisteID = 'hcm/api/v1/fpas/existeid';
|
1388
|
+
this.rotaSelecionar = 'hcm/api/v1/fpas/selecionar';
|
1389
|
+
}
|
1390
|
+
Listar() {
|
1391
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1392
|
+
}
|
1393
|
+
ExisteID(idfpas) {
|
1394
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idfpas}`);
|
1395
|
+
}
|
1396
|
+
Selecionar(idfpas) {
|
1397
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idfpas}`);
|
1398
|
+
}
|
1399
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: FpasService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1400
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: FpasService, providedIn: 'root' }); }
|
1401
|
+
}
|
1402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: FpasService, decorators: [{
|
1403
|
+
type: Injectable,
|
1404
|
+
args: [{
|
1405
|
+
providedIn: 'root'
|
1406
|
+
}]
|
1407
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1408
|
+
type: Inject,
|
1409
|
+
args: ['hostEnv']
|
1410
|
+
}] }] });
|
1411
|
+
|
1412
|
+
class TipoPagamentoSalarioService extends BaseApiService {
|
1413
|
+
constructor(httpClient, hostEnv) {
|
1414
|
+
super(httpClient);
|
1415
|
+
this.httpClient = httpClient;
|
1416
|
+
this.hostEnv = hostEnv;
|
1417
|
+
this.rotaListar = 'hcm/api/v1/tipopagamentosalario/listar';
|
1418
|
+
this.rotaExisteID = 'hcm/api/v1/tipopagamentosalario/existeid';
|
1419
|
+
this.rotaSelecionar = 'hcm/api/v1/tipopagamentosalario/selecionar';
|
1420
|
+
}
|
1421
|
+
Listar() {
|
1422
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1423
|
+
}
|
1424
|
+
ExisteID(idtipopagamentosalario) {
|
1425
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idtipopagamentosalario}`);
|
1426
|
+
}
|
1427
|
+
Selecionar(idtipopagamentosalario) {
|
1428
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idtipopagamentosalario}`);
|
1429
|
+
}
|
1430
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TipoPagamentoSalarioService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1431
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TipoPagamentoSalarioService, providedIn: 'root' }); }
|
1432
|
+
}
|
1433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TipoPagamentoSalarioService, decorators: [{
|
1434
|
+
type: Injectable,
|
1435
|
+
args: [{
|
1436
|
+
providedIn: 'root'
|
1437
|
+
}]
|
1438
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1439
|
+
type: Inject,
|
1440
|
+
args: ['hostEnv']
|
1441
|
+
}] }] });
|
1442
|
+
|
1443
|
+
class TipoSalarioService extends BaseApiService {
|
1444
|
+
constructor(httpClient, hostEnv) {
|
1445
|
+
super(httpClient);
|
1446
|
+
this.httpClient = httpClient;
|
1447
|
+
this.hostEnv = hostEnv;
|
1448
|
+
this.rotaListar = 'hcm/api/v1/tiposalario/listar';
|
1449
|
+
this.rotaExisteID = 'hcm/api/v1/tiposalario/existeid';
|
1450
|
+
this.rotaSelecionar = 'hcm/api/v1/tiposalario/selecionar';
|
1451
|
+
}
|
1452
|
+
Listar() {
|
1453
|
+
return this.getAll(this.hostEnv.apiUrlHcm, this.rotaListar);
|
1454
|
+
}
|
1455
|
+
ExisteID(idtipopagamentosalario) {
|
1456
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaExisteID}/${idtipopagamentosalario}`);
|
1457
|
+
}
|
1458
|
+
Selecionar(idtipopagamentosalario) {
|
1459
|
+
return this.get(this.hostEnv.apiUrlHcm, `${this.rotaSelecionar}/${idtipopagamentosalario}`);
|
1460
|
+
}
|
1461
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TipoSalarioService, deps: [{ token: i1.HttpClient }, { token: 'hostEnv' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1462
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TipoSalarioService, providedIn: 'root' }); }
|
1463
|
+
}
|
1464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: TipoSalarioService, decorators: [{
|
1465
|
+
type: Injectable,
|
1466
|
+
args: [{
|
1467
|
+
providedIn: 'root'
|
1468
|
+
}]
|
1469
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
1470
|
+
type: Inject,
|
1471
|
+
args: ['hostEnv']
|
1472
|
+
}] }] });
|
1473
|
+
|
1135
1474
|
/*
|
1136
1475
|
* Public API Surface of keevo-api-services-hcm
|
1137
1476
|
*/
|
@@ -1143,5 +1482,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
|
|
1143
1482
|
* Generated bundle index. Do not edit.
|
1144
1483
|
*/
|
1145
1484
|
|
1146
|
-
export { AnalistaPessoaService, CargoService, CentroCustoService, CentroResultadoService, CodigoTerceiroService, ColaboradorService, DadosConfiguracoesService, DepartamentoService, EmpresaBannerService, EmpresaParametrosService, EmpresaService, EquipeMembroService, EquipeService, FpasService, HierarquiaOrganizacionalService, KeexService, LiderService, RegistroService, RelacionamentoLotacaoService, SubTipoOcorrenciaService, TipoEstadoService, TipoOcorrenciaService, TomadorService, UnidadeAdministrativaService, UnidadehierarquicaService, ValidatorsService };
|
1485
|
+
export { AnalistaPessoaService, CargoService, CategoriaOcorrenciaEstadoService, CategoriaTrabalhadorService, CategoriaTrabalhadorTiposAfastamentoService, CboService, CentroCustoService, CentroResultadoService, CodigoDirfService, CodigoGpsService, CodigoTerceiroService, ColaboradorService, ConsiderarMesesSemTrabalharPorAfastamentoService, ContribuicaoPatrimonialService, CooperativaService, DadosConfiguracoesService, DepartamentoService, EmpresaBannerService, EmpresaParametrosService, EmpresaService, EquipeMembroService, EquipeService, FpasService, HierarquiaOrganizacionalService, KeexService, LiderService, RegistroService, RelacionamentoLotacaoService, SubTipoOcorrenciaService, TipoEstadoService, TipoOcorrenciaService, TipoPagamentoSalarioService, TipoSalarioService, TomadorService, UnidadeAdministrativaService, UnidadehierarquicaService, ValidatorsService };
|
1147
1486
|
//# sourceMappingURL=keevo-api-services-hcm.mjs.map
|