sigesp 0.8.62-220119 → 0.8.63-220120
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 +108 -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/models/SNO/MNominaSimple.model.js +57 -0
- package/esm2015/lib/core/models/SNO/MPeriodoNomina.model.js +17 -17
- package/esm2015/lib/sigesp.service.js +34 -5
- package/esm2015/public-api.js +2 -1
- package/fesm2015/sigesp.js +106 -21
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +17 -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/sigesp.service.d.ts +21 -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
|
@@ -791,14 +791,27 @@ export declare class SigespService {
|
|
|
791
791
|
* @description obtiene el personal segun filtro
|
|
792
792
|
* @return Observable<IResponse>
|
|
793
793
|
* @date 15-11-2021
|
|
794
|
+
* @param tipo: valores ['catalogo','default','nomina']
|
|
795
|
+
* @params dato:object {nombre:string, apellido:string, cedula.string} use para la opcion 'catalogo'
|
|
794
796
|
*/
|
|
795
|
-
getPersonal(dato?: any): Observable<any>;
|
|
797
|
+
getPersonal(tipo: string, dato?: any): Observable<any>;
|
|
796
798
|
/**
|
|
797
799
|
* @description obtener personal Nomina segun filtro
|
|
798
800
|
* @return Observable<IResponse>
|
|
799
801
|
* @date 15-11-2021
|
|
802
|
+
* * @param tipo: valores ['catalogo','default','nomina']
|
|
803
|
+
* @params dato:object {nombre:string, apellido:string, cedula.string} use para la opcion 'catalogo'
|
|
804
|
+
|
|
800
805
|
*/
|
|
801
|
-
getPersonalNomina(dato?: any): Observable<any>;
|
|
806
|
+
getPersonalNomina(tipo: string, dato?: any): Observable<any>;
|
|
807
|
+
/**
|
|
808
|
+
* @param idPersonal: id del personal
|
|
809
|
+
* @param tipo: valores['nomina_personal']
|
|
810
|
+
* @description Obtiene las nominas del personal resumida
|
|
811
|
+
* @deprecated; 20-01-22
|
|
812
|
+
* @returns
|
|
813
|
+
*/
|
|
814
|
+
getPersonalNominaResumida(idPersonal: number, tipo: string): Observable<any>;
|
|
802
815
|
/**
|
|
803
816
|
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
804
817
|
* @return Json data
|
|
@@ -842,6 +855,12 @@ export declare class SigespService {
|
|
|
842
855
|
* @author Ing. Wilmer Briceño
|
|
843
856
|
*/
|
|
844
857
|
getResponsePerfilToolbar(stringbinario: string, position: number): boolean;
|
|
858
|
+
/**
|
|
859
|
+
* @description Obtiene el Ip del cliente
|
|
860
|
+
* @return Json data
|
|
861
|
+
* @author Ing. Wilmer Briceno
|
|
862
|
+
*/
|
|
863
|
+
getIPAddress(): Observable<Object>;
|
|
845
864
|
}
|
|
846
865
|
interface filtroCuentasPresupuesto {
|
|
847
866
|
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';
|