sigesp 0.8.62-220119 → 0.8.66-220126
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/bundles/sigesp.umd.js +137 -20
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Nomina.js +1 -1
- package/esm2015/lib/core/interfaces/Usuario.js +1 -1
- package/esm2015/lib/core/models/SNO/MNominaSimple.model.js +57 -0
- package/esm2015/lib/core/models/SNO/MPeriodoNomina.model.js +17 -17
- package/esm2015/lib/core/models/user.model.js +2 -1
- package/esm2015/lib/sigesp.service.js +61 -5
- package/esm2015/public-api.js +2 -1
- package/fesm2015/sigesp.js +134 -21
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +17 -0
- package/lib/core/interfaces/Usuario.d.ts +1 -0
- package/lib/core/models/SNO/MNominaSimple.model.d.ts +21 -0
- package/lib/core/models/SNO/MPeriodoNomina.model.d.ts +2 -0
- package/lib/core/models/user.model.d.ts +1 -0
- package/lib/sigesp.service.d.ts +34 -2
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/sigesp.metadata.json +1 -1
|
@@ -125,6 +125,21 @@ export interface INomina {
|
|
|
125
125
|
id_perresnom: string;
|
|
126
126
|
periodos: IPeriodoNomina[];
|
|
127
127
|
}
|
|
128
|
+
export interface INominaSimple {
|
|
129
|
+
id_empresa: string;
|
|
130
|
+
id_nomina: string;
|
|
131
|
+
codnom: string;
|
|
132
|
+
dennom: string;
|
|
133
|
+
id_periodoactual: string;
|
|
134
|
+
totper: string;
|
|
135
|
+
cerper: string;
|
|
136
|
+
calculado: string;
|
|
137
|
+
prenomina: string;
|
|
138
|
+
id_carper: string;
|
|
139
|
+
descar: string;
|
|
140
|
+
codcar: string;
|
|
141
|
+
racnom: string;
|
|
142
|
+
}
|
|
128
143
|
export interface IPeriodoNomina {
|
|
129
144
|
id_empresa: string;
|
|
130
145
|
id_nomina: string;
|
|
@@ -141,6 +156,8 @@ export interface IPeriodoNomina {
|
|
|
141
156
|
ingconper: string;
|
|
142
157
|
fidconper: string;
|
|
143
158
|
fidintconper: string;
|
|
159
|
+
prenomina: string;
|
|
160
|
+
calculado: string;
|
|
144
161
|
}
|
|
145
162
|
export interface IPersonalNomina {
|
|
146
163
|
id_empresa: string;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { INominaSimple } from "../../interfaces/Nomina";
|
|
2
|
+
export declare class MNominaSimple {
|
|
3
|
+
idEmpresa: number;
|
|
4
|
+
idNnomina: number;
|
|
5
|
+
codigoNomina: string;
|
|
6
|
+
denominacioNomina: string;
|
|
7
|
+
idPeriodoActual: number;
|
|
8
|
+
totalPeriodo: number;
|
|
9
|
+
estatus: string;
|
|
10
|
+
estatusPeriodo: number;
|
|
11
|
+
calculada: boolean;
|
|
12
|
+
prenomina: boolean;
|
|
13
|
+
idCargo: number;
|
|
14
|
+
codigoCargo: string;
|
|
15
|
+
denominacionCargo: string;
|
|
16
|
+
nominaRac: number;
|
|
17
|
+
simbolo: string;
|
|
18
|
+
color: string;
|
|
19
|
+
constructor(e?: INominaSimple);
|
|
20
|
+
dataInterface(): INominaSimple;
|
|
21
|
+
}
|
|
@@ -16,6 +16,8 @@ export declare class MPeriodoNomina extends MBasicModel {
|
|
|
16
16
|
ingresoContabilizadoPeriodo: number;
|
|
17
17
|
fideicomisoContabilizado: number;
|
|
18
18
|
fideicomisoInteresContabilizadoPeriodo: number;
|
|
19
|
+
prenomina: boolean;
|
|
20
|
+
calculado: boolean;
|
|
19
21
|
constructor(e?: IPeriodoNomina);
|
|
20
22
|
dataInterface(): IPeriodoNomina;
|
|
21
23
|
estatusPeriodo(): string;
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare class SigespService {
|
|
|
37
37
|
URL: string;
|
|
38
38
|
currentComponent: MComponent;
|
|
39
39
|
userMenu: any;
|
|
40
|
+
ip_adress: string;
|
|
40
41
|
constructor(http: HttpClient, dialog: MatDialog, toast: ToastrService);
|
|
41
42
|
/**
|
|
42
43
|
* @description Valida que selo se escriban guiones y 9
|
|
@@ -791,14 +792,27 @@ export declare class SigespService {
|
|
|
791
792
|
* @description obtiene el personal segun filtro
|
|
792
793
|
* @return Observable<IResponse>
|
|
793
794
|
* @date 15-11-2021
|
|
795
|
+
* @param tipo: valores ['catalogo','default','nomina']
|
|
796
|
+
* @params dato:object {nombre:string, apellido:string, cedula.string} use para la opcion 'catalogo'
|
|
794
797
|
*/
|
|
795
|
-
getPersonal(dato?: any): Observable<any>;
|
|
798
|
+
getPersonal(tipo: string, dato?: any): Observable<any>;
|
|
796
799
|
/**
|
|
797
800
|
* @description obtener personal Nomina segun filtro
|
|
798
801
|
* @return Observable<IResponse>
|
|
799
802
|
* @date 15-11-2021
|
|
803
|
+
* * @param tipo: valores ['catalogo','default','nomina']
|
|
804
|
+
* @params dato:object {nombre:string, apellido:string, cedula.string} use para la opcion 'catalogo'
|
|
805
|
+
|
|
800
806
|
*/
|
|
801
|
-
getPersonalNomina(dato?: any): Observable<any>;
|
|
807
|
+
getPersonalNomina(tipo: string, dato?: any): Observable<any>;
|
|
808
|
+
/**
|
|
809
|
+
* @param idPersonal: id del personal
|
|
810
|
+
* @param tipo: valores['nomina_personal']
|
|
811
|
+
* @description Obtiene las nominas del personal resumida
|
|
812
|
+
* @deprecated; 20-01-22
|
|
813
|
+
* @returns
|
|
814
|
+
*/
|
|
815
|
+
getPersonalNominaResumida(idPersonal: number, tipo: string): Observable<any>;
|
|
802
816
|
/**
|
|
803
817
|
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
804
818
|
* @return Json data
|
|
@@ -842,6 +856,24 @@ export declare class SigespService {
|
|
|
842
856
|
* @author Ing. Wilmer Briceño
|
|
843
857
|
*/
|
|
844
858
|
getResponsePerfilToolbar(stringbinario: string, position: number): boolean;
|
|
859
|
+
/**
|
|
860
|
+
* @description Obtiene el Ip del cliente
|
|
861
|
+
* @return Json data
|
|
862
|
+
* @author Ing. Wilmer Briceno
|
|
863
|
+
*/
|
|
864
|
+
getIPAddress(): Observable<Object>;
|
|
865
|
+
/**
|
|
866
|
+
* @description Obtiene el Ip del cliente
|
|
867
|
+
* @return Json data
|
|
868
|
+
* @author Ing. Wilmer Briceno
|
|
869
|
+
*/
|
|
870
|
+
setIpAdress(): void;
|
|
871
|
+
/**
|
|
872
|
+
* @description Obtiene el Ip del cliente
|
|
873
|
+
* @return Json data
|
|
874
|
+
* @author Ing. Wilmer Briceno
|
|
875
|
+
*/
|
|
876
|
+
getIpAdress(): void;
|
|
845
877
|
}
|
|
846
878
|
interface filtroCuentasPresupuesto {
|
|
847
879
|
tipo?: 'E' | 'R';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ export { MUbicacionFisica } from './lib/core/models/SNO/MUbicacionFisica.model';
|
|
|
103
103
|
export { MVacacionesPersonal } from './lib/core/models/SNO/MVacacionesPersonal.model';
|
|
104
104
|
export { MEncargaduria } from './lib/core/models/SNO/MEncargaduria.model';
|
|
105
105
|
export { MCodigoUnicoRac } from './lib/core/models/SNO/MCodigoUnicoRac.model';
|
|
106
|
+
export { MNominaSimple } from './lib/core/models/SNO/MNominaSimple.model';
|
|
106
107
|
export { IProveedor, IOrganizationType, IProviderBeneficiary, IProviderBankAccount } from './lib/core/interfaces/Proveedor';
|
|
107
108
|
export { IConexion } from './lib/core/interfaces/Usuario';
|
|
108
109
|
export { IEstructuraPresupuestariaOne, IEstructuraPresupuestariaTwo, IEstructuraPresupuestariaThree, IEstructuraPresupuestariaFour, IEstructuraPresupuestariaFive } from './lib/core/interfaces/EstructuraPresupuestaria';
|
|
@@ -120,7 +121,7 @@ export { IConfigSSS, IUserDetail, IGroup, IComponent, IRights, IUserPermit, ILog
|
|
|
120
121
|
export { ISistema } from './lib/core/interfaces/Sistema';
|
|
121
122
|
export { IUnitAdministrative } from './lib/core/interfaces/Presupuesto';
|
|
122
123
|
export { IServiceCharge, IConceptosCXP, ITipoDocumentoCXP } from './lib/core/interfaces/CuentasPorPagar';
|
|
123
|
-
export { IAsignacionCargo, IConceptos, IConceptosPersonalNomina, IConceptosVacaciones, IConstanteNomina, IConstantePersonaNomina, IHojaTiempo, INomina, IPeriodoNomina, IPersonalNomina, IPrimasConcepto, ISelect, Reporte, SalarioNormal, Signo, TipoCestaTicket, IEncargaduria, ICodigoUnicoRac, } from './lib/core/interfaces/Nomina';
|
|
124
|
+
export { IAsignacionCargo, IConceptos, IConceptosPersonalNomina, IConceptosVacaciones, IConstanteNomina, IConstantePersonaNomina, IHojaTiempo, INomina, IPeriodoNomina, IPersonalNomina, IPrimasConcepto, ISelect, Reporte, SalarioNormal, Signo, TipoCestaTicket, IEncargaduria, ICodigoUnicoRac, INominaSimple, } from './lib/core/interfaces/Nomina';
|
|
124
125
|
export { IEmpresa } from './lib/core/interfaces/Configuracion';
|
|
125
126
|
export { IConfiguracionSNO, IAnticipoPrestacion, IBenefiaciario, ICargosPersonal, IDeudaAnterior, IEstudioRealizado, IFamiliares, IFideicomiso, IImpuestoSobreRenta, IIncidencia, IPermisos, IPersonal, IPersonalCuentasBancarias, IPrestacionesAntiguedad, ISalarioHistorico, ITrabajoAnterior, IVacacionesPersonal, IAcademico, ICampos, ICargaFamiliar, IClasificacionObrero, IDialogData, IDtRequisitosMinimos, IExperienciaLaboral, IFormacionAcademica, IFormacionInformal, IFuenteFinanciamiento, IGrados, IPrimaGrados, IRequisitosConcursante, IRequisitosConcursos, IRequisitosMinismos, ISolicitudEmpleo, ITabulador, ITabuladorNomina, IArchivoTxt, IArchivoTxtCampos, IAspectoEvaluacion, IComponente, IConcursante, IConcurso, IDedicacion, IDefinicionesBasicas, IEscalaEvaluacion, IEscalaEvaluacionDt, IEstructuraOrganizativa, IFeriados, IHorario, IItemsEvaluacion, IMetodoBanco, IMetodos, INivel, IRango, ITablaVacaciones, ITablaVacacionesPeriodo, ITipoEvaluacion, ITipoEvaluacionAspectos, ITipoPersonal, ITiposEnfermedad, IUbicacionFisica, ISelect3 } from './lib/core/interfaces/RecursosHumanos';
|
|
126
127
|
export { IDetaEntrada, IEntradaSuministros, IDetaContable } from './lib/core/interfaces/EntradaSuministro';
|