sigesp 1.1.77-20251112 → 1.1.82-20251218

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.
@@ -22,6 +22,11 @@ export interface ISelect5 {
22
22
  value: string;
23
23
  denominacion: string;
24
24
  }
25
+ export interface ISelect6 {
26
+ value: string;
27
+ name: string;
28
+ tipo: string;
29
+ }
25
30
  export interface ICatalogo {
26
31
  columns: string[];
27
32
  dataSource: any[];
@@ -84,3 +89,4 @@ export declare const camposConstaciaTrabajo: ISelect3[];
84
89
  export declare const MetodosTicket: ISelect[];
85
90
  export declare const DiasSemana: ISelect7[];
86
91
  export declare const TipoDiferencial: ISelect7[];
92
+ export declare const MetodoPlantillas: ISelect6[];
@@ -0,0 +1,37 @@
1
+ export interface IPlantillaIntegracion {
2
+ id_empresa: string;
3
+ id_enterprise: string;
4
+ id_documento: string;
5
+ codigo: string;
6
+ denpla: string;
7
+ tipplan: string;
8
+ metpla: string;
9
+ codsis: string;
10
+ id_uniadm: string;
11
+ id_cencos: string;
12
+ id_fuefin: string;
13
+ id_ep1: string;
14
+ id_ep2: string;
15
+ id_ep3: string;
16
+ id_ep4: string;
17
+ id_ep5: string;
18
+ sc_cuenta_debe: string;
19
+ sc_cuenta_haber: string;
20
+ spg_cuenta: string;
21
+ viduti: string;
22
+ id_unidad: string;
23
+ fecreg: string;
24
+ horreg: string;
25
+ id_usureg: string;
26
+ perfiscal: string;
27
+ coduniadm?: string;
28
+ denuniadm?: string;
29
+ codcencos?: string;
30
+ dencencos?: string;
31
+ codfuefin?: string;
32
+ denfuefin?: string;
33
+ estructura?: string;
34
+ denctaspg?: string;
35
+ denctadeb?: string;
36
+ denctahab?: string;
37
+ }
@@ -227,6 +227,7 @@ export interface IPersonalNomina {
227
227
  descasicar: string;
228
228
  salnorper: string;
229
229
  observacion: string;
230
+ observacion_edi: string;
230
231
  codusu: string;
231
232
  id_banco: string;
232
233
  nomban: string;
@@ -0,0 +1,42 @@
1
+ import { IPlantillaIntegracion } from "../../interfaces/IPlantillaIntegracion";
2
+ import { MBasicModel } from '../basic-model.model';
3
+ export declare class MPlantillaIntegracion extends MBasicModel {
4
+ idEmpresa: number;
5
+ idEnterprise: number;
6
+ idDocumento: number;
7
+ codigo: string;
8
+ denominacionPlantilla: string;
9
+ tipoPlantilla: string;
10
+ metodoPlantilla: string;
11
+ codigoSistema: string;
12
+ idUnidadOrganizativa: number;
13
+ idCentroCosto: number;
14
+ idFuenteFinanciamiento: number;
15
+ idEp1: number;
16
+ idEp2: number;
17
+ idEp3: number;
18
+ idEp4: number;
19
+ idEp5: number;
20
+ cuentaDebe: string;
21
+ cuentaHaber: string;
22
+ spgCuenta: string;
23
+ vidaUtil: number;
24
+ idUnidad: number;
25
+ fechaRegistro: string;
26
+ horaRegistro: string;
27
+ idUsuarioRegistro: number;
28
+ codigoUnidadOrganizativa: string;
29
+ denominacionUnidadOrganizativa: string;
30
+ codigoCentroCosto: string;
31
+ denominacionCentroCosto: string;
32
+ codigoFuenteFinanciamiento: string;
33
+ denominacionFuenteFinanciamiento: string;
34
+ estructura: string;
35
+ denominacionCuentaSpg: string;
36
+ denominacionCuentaDebe: string;
37
+ denominacionCuentaHaber: string;
38
+ periodoFiscal: number;
39
+ denominacionMetodoPlantilla: string;
40
+ constructor(e?: IPlantillaIntegracion);
41
+ datainterface(): IPlantillaIntegracion;
42
+ }
@@ -116,6 +116,7 @@ export declare class MPersonalNomina extends MBasicModel {
116
116
  idPuestoTrabajo: number;
117
117
  codigoPuestoTrabajo: string;
118
118
  denominacionPuestoTrabajo: string;
119
+ observacion2: string;
119
120
  constructor(e?: IPersonalNomina);
120
121
  dataInterface(): IPersonalNomina;
121
122
  }
@@ -682,6 +682,17 @@ export declare class SigespService {
682
682
  */
683
683
  getPeriodosConfiguradosSCGSPG(lineaEmpresa: number): Observable<any>;
684
684
  userHasRights(column: 'administrador' | 'insertar' | 'actualizar' | 'consultar' | 'eliminar' | 'anular' | 'descargar' | 'ejecutar__procesar_' | 'imprimir' | 'enviar__correo_' | 'visible'): Observable<IResponse>;
685
+ /**
686
+ * @description Obtener las plantillas de integracion
687
+ * @return Observable<IResponse>
688
+ * @param fecha: fecha a comparar
689
+ * @param lineaEmpresa: linea empresa del documento
690
+ * @param periodoFiscal : fecha del periodo a evaluar '1900-01-01'
691
+ * @author Dimaly Crespo
692
+ * @fecha 27-11-2025
693
+ *
694
+ */
695
+ getPlantillaIntegracion(idEnterprise: number, sistema: string, periodoFiscal: number): Observable<any>;
685
696
  /**
686
697
  * @description Retorna los headers para hacer las peticiones
687
698
  * @params type: Tipo MIME permitido por defecto se toma application/json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.77-20251112",
3
+ "version": "1.1.82-20251218",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },
package/public-api.d.ts CHANGED
@@ -42,6 +42,7 @@ export { MCuentaIngresos } from './lib/core/models/SCG/IncomeAccount';
42
42
  export { MConfigurationSPG } from './lib/core/models/SPG/configurationSPG.model';
43
43
  export { MAccountMarriage } from './lib/core/models/SCG/accountMarriage.model';
44
44
  export { MCentroCosto } from './lib/core/models/SCG/centroCosto.model';
45
+ export { MPlantillaIntegracion } from './lib/core/models/SCG/MPlantillaIntegracion.model';
45
46
  export { MServiceType } from './lib/core/models/SOC/serviceType.model';
46
47
  export { MService } from './lib/core/models/SOC/service.model';
47
48
  export { MClause } from './lib/core/models/SOC/clause.model';
@@ -135,6 +136,7 @@ export { MRConsolidadoConceptos, MRArchivoTXT, MRConstanciaTrabajo } from './lib
135
136
  export { MSnoLog } from './lib/core/models/SNO/MAuditoria.model';
136
137
  export { MPlanHorario, MPeriodosPlan } from './lib/core/models/SNO/MPlanHorario.model';
137
138
  export { IProveedor, IOrganizationType, IProviderBeneficiary, IProviderBankAccount, IDeductionProv, IDocumentProv, ISpecialtyProv } from './lib/core/interfaces/Proveedor';
139
+ export { IPlantillaIntegracion } from './lib/core/interfaces/IPlantillaIntegracion';
138
140
  export { IConexion } from './lib/core/interfaces/Usuario';
139
141
  export { IResponse } from './lib/core/interfaces/Response';
140
142
  export { ICentroCosto } from './lib/core/interfaces/CentroCosto';
@@ -160,5 +162,5 @@ export { ISnoLog } from './lib/core/interfaces/Auditoria';
160
162
  export { IDetaEntrada, IEntradaSuministros, IDetaContable } from './lib/core/interfaces/EntradaSuministro';
161
163
  export { ITipoDepositos } from './lib/core/interfaces/ITipoDepositos';
162
164
  export { IClient } from './lib/core/interfaces/Cliente';
163
- export { ICatalogo, ISelect, ISelect1, ISelect5, ISelect3, ISelect4, filterData, TipoDefiniciones, EstadoCivil, Sexo, Sexo2, NivelAcademico, Turno, SituacionPersonal, CausaEgreso, EstatusPersonal, EstatusPersonalNomina, Estatus, EstatusEstudio, TipoVivienda, LetraRif, Estudios, academico, TipoEmpresa, TipoPermiso, Nexofamiliar, NivelAcademicoFamiliar, TipoBeneficiario, Nacionalidad, FormaPago, EstatusVacaciones, TipoPeriodoNomina, TipoNomina, ContabilizacionNomina, Destino, TipoHorario, TipoCuota, Acciones, Preaviso, Orden, Longitud, Meses, TipoJubilacion, camposConstaciaTrabajo, MetodosTicket, EstatusPrestamo, ISelect7, EstatusCliente, DiasSemana, TipoCargo, TipoDiferencial } from './lib/core/interfaces/Constantes';
165
+ export { ICatalogo, ISelect, ISelect1, ISelect5, ISelect3, ISelect4, filterData, TipoDefiniciones, EstadoCivil, Sexo, Sexo2, NivelAcademico, Turno, SituacionPersonal, CausaEgreso, EstatusPersonal, EstatusPersonalNomina, Estatus, EstatusEstudio, TipoVivienda, LetraRif, Estudios, academico, TipoEmpresa, TipoPermiso, Nexofamiliar, NivelAcademicoFamiliar, TipoBeneficiario, Nacionalidad, FormaPago, EstatusVacaciones, TipoPeriodoNomina, TipoNomina, ContabilizacionNomina, Destino, TipoHorario, TipoCuota, Acciones, Preaviso, Orden, Longitud, Meses, TipoJubilacion, camposConstaciaTrabajo, MetodosTicket, EstatusPrestamo, ISelect7, EstatusCliente, DiasSemana, TipoCargo, TipoDiferencial, ISelect6, MetodoPlantillas } from './lib/core/interfaces/Constantes';
164
166
  export { IUpdateDistribution2, IUpdateDistribution } from './lib/core/interfaces/CuentaEgresos';