sigesp 0.9.83-20230111 → 0.9.85-20231103
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 +230 -28
- 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/Cliente.js +2 -0
- package/esm2015/lib/core/interfaces/Constantes.js +7 -1
- package/esm2015/lib/core/interfaces/CuentaInstitucional.js +1 -1
- package/esm2015/lib/core/interfaces/Integracion.js +1 -1
- package/esm2015/lib/core/models/SCG/accountMarriage.model.js +23 -5
- package/esm2015/lib/core/models/SCG/cuentaInstitucional.model.js +45 -17
- package/esm2015/lib/core/models/SCG/planUnicoCuenta.model.js +14 -4
- package/esm2015/lib/core/models/SFV/MClienteModel.js +116 -0
- package/esm2015/lib/sigesp.service.js +17 -1
- package/esm2015/public-api.js +4 -2
- package/fesm2015/sigesp.js +214 -24
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Cliente.d.ts +36 -0
- package/lib/core/interfaces/Constantes.d.ts +1 -0
- package/lib/core/interfaces/CuentaInstitucional.d.ts +1 -0
- package/lib/core/interfaces/Integracion.d.ts +1 -0
- package/lib/core/models/SCG/accountMarriage.model.d.ts +6 -2
- package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +2 -0
- package/lib/core/models/SCG/planUnicoCuenta.model.d.ts +4 -2
- package/lib/core/models/SFV/MClienteModel.d.ts +40 -0
- package/lib/sigesp.service.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -1
- package/sigesp.metadata.json +1 -1
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export interface IClient {
|
|
2
|
+
id_empresa: number;
|
|
3
|
+
id_cliente: number;
|
|
4
|
+
id_categoria: number;
|
|
5
|
+
id_vendedor: number;
|
|
6
|
+
esttipcli: number;
|
|
7
|
+
codigo: string;
|
|
8
|
+
cedrifcli: string;
|
|
9
|
+
nomcli: string;
|
|
10
|
+
dircli: string;
|
|
11
|
+
telclipri: string;
|
|
12
|
+
telclisec: string;
|
|
13
|
+
fecregcli: string;
|
|
14
|
+
emacli: string;
|
|
15
|
+
estcli: string;
|
|
16
|
+
cedrep: string;
|
|
17
|
+
nomrep: string;
|
|
18
|
+
emarep: string;
|
|
19
|
+
comentario: string;
|
|
20
|
+
codpai: string;
|
|
21
|
+
codest: string;
|
|
22
|
+
codmun: string;
|
|
23
|
+
codpar: string;
|
|
24
|
+
codpos: string;
|
|
25
|
+
nomapecon: string;
|
|
26
|
+
ubicon: string;
|
|
27
|
+
telcon: string;
|
|
28
|
+
emacon: string;
|
|
29
|
+
aplicarcxc: number;
|
|
30
|
+
despar: string;
|
|
31
|
+
desmun: string;
|
|
32
|
+
desest: string;
|
|
33
|
+
despai: string;
|
|
34
|
+
cliesp: number;
|
|
35
|
+
limitecredito: number;
|
|
36
|
+
}
|
|
@@ -71,6 +71,7 @@ export declare const EstatusPrestamo: ISelect[];
|
|
|
71
71
|
export declare const TipoCuota: ISelect[];
|
|
72
72
|
export declare const Acciones: ISelect[];
|
|
73
73
|
export declare const Preaviso: ISelect[];
|
|
74
|
+
export declare const EstatusCliente: ISelect[];
|
|
74
75
|
export declare const Orden: ISelect[];
|
|
75
76
|
export declare const Longitud: ISelect1[];
|
|
76
77
|
export declare const Nivel: ISelect7[];
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { IAccountMarriage } from '../../interfaces/Integracion';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MAccountMarriage extends MBasicModel {
|
|
3
4
|
idEmpresa: number;
|
|
4
5
|
cuentaContable: number;
|
|
5
6
|
cuentaInstitucional: number;
|
|
6
|
-
|
|
7
|
+
idDt: number;
|
|
8
|
+
isNew: boolean;
|
|
9
|
+
constructor(marriage?: IAccountMarriage);
|
|
10
|
+
dataInterface(): IAccountMarriage;
|
|
7
11
|
}
|
|
@@ -26,5 +26,7 @@ export declare class MCuentaInstitucional extends MBasicModel {
|
|
|
26
26
|
denominacionCuentaReferencia: string;
|
|
27
27
|
denominacionEstatus: string;
|
|
28
28
|
isNew: boolean;
|
|
29
|
+
idDtCuenta: number;
|
|
29
30
|
constructor(institucional?: ICuentaInstitucional);
|
|
31
|
+
dataInterface(): ICuentaInstitucional;
|
|
30
32
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { IPlanUnicoCuenta } from '../../interfaces/PlanUnicoCuenta';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MPlanUnicoCuenta extends MBasicModel {
|
|
3
4
|
denominacion: string;
|
|
4
5
|
cuenta: string;
|
|
5
|
-
constructor(plan
|
|
6
|
+
constructor(plan?: IPlanUnicoCuenta);
|
|
7
|
+
dataInterface(): IPlanUnicoCuenta;
|
|
6
8
|
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { IClient } from "../../interfaces/Cliente";
|
|
2
|
+
export declare class MClient {
|
|
3
|
+
idEmpresa: number;
|
|
4
|
+
idCliente: number;
|
|
5
|
+
idCategoria: number;
|
|
6
|
+
idVendedor: number;
|
|
7
|
+
estatusTipoCliente: number;
|
|
8
|
+
codigo: string;
|
|
9
|
+
cedulaRifCliente: string;
|
|
10
|
+
nombreCliente: string;
|
|
11
|
+
direccionCliente: string;
|
|
12
|
+
telefonoClientePrincipal: string;
|
|
13
|
+
telefonoClienteSecundario: string;
|
|
14
|
+
fechaRegistroCliente: string;
|
|
15
|
+
emailCliente: string;
|
|
16
|
+
estatusCliente: string;
|
|
17
|
+
cedulaRepresentante: string;
|
|
18
|
+
nombreRepresentante: string;
|
|
19
|
+
emailRepresentante: string;
|
|
20
|
+
comentario: string;
|
|
21
|
+
codigoPais: string;
|
|
22
|
+
codigoEstado: string;
|
|
23
|
+
codigoMunicipio: string;
|
|
24
|
+
codigoParroquia: string;
|
|
25
|
+
codigoPostal: string;
|
|
26
|
+
nompreApellidoContato: string;
|
|
27
|
+
ubicacionContacto: string;
|
|
28
|
+
telelefonoContacto: string;
|
|
29
|
+
emailContacto: string;
|
|
30
|
+
aplicarCuentaPorCobrar: number;
|
|
31
|
+
descripcionParroquia: string;
|
|
32
|
+
descripcionMunicipio: string;
|
|
33
|
+
descripcionEstado: string;
|
|
34
|
+
descripcionPais: string;
|
|
35
|
+
clienteEspecial: number;
|
|
36
|
+
limiteCredito: number;
|
|
37
|
+
denominacionEstataus: string;
|
|
38
|
+
constructor(e?: IClient);
|
|
39
|
+
dataInterface(): IClient;
|
|
40
|
+
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -808,6 +808,14 @@ export declare class SigespService {
|
|
|
808
808
|
* @author Dimaly Crespo
|
|
809
809
|
*/
|
|
810
810
|
getHojaTiempo(tipo: string, idPersonal?: number, idNomina?: number): Observable<any>;
|
|
811
|
+
/**
|
|
812
|
+
* @description Obtiene los clientes
|
|
813
|
+
* @return Observable<IResponse>
|
|
814
|
+
* @author Dimaly Crespo
|
|
815
|
+
* @tipo [basico,codigo,cedula]
|
|
816
|
+
*
|
|
817
|
+
*/
|
|
818
|
+
getCliente(tipo?: string, id?: number, codigo?: string, cedula?: string): Observable<IResponse>;
|
|
811
819
|
/**
|
|
812
820
|
* @description Valida si la fecha esta dentro del periodo fiscal y el mes esta abierto o cerrado
|
|
813
821
|
* @return Observable<IResponse>
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { MUnidadTributaria } from './lib/core/models/STB/unidadTributaria.model'
|
|
|
44
44
|
export { MDeduction, MConceptoRetencion } from './lib/core/models/STB/deduction.model';
|
|
45
45
|
export { MDeductionType } from './lib/core/models/STB/deductionType.model';
|
|
46
46
|
export { MMoneda, MMonedaConfig, } from './lib/core/models/CFG/moneda.model';
|
|
47
|
+
export { MClient } from './lib/core/models/SFV/MClienteModel';
|
|
47
48
|
export { MUsuario } from './lib/core/models/SSS/user.model';
|
|
48
49
|
export { MConfigSSS } from './lib/core/models/SSS/securityConfiguration.model';
|
|
49
50
|
export { MUserDetail } from './lib/core/models/SSS/userDetail.model';
|
|
@@ -148,5 +149,6 @@ export { IConfiguracionSNO, IAnticipoPrestacion, IBenefiaciario, ICargosPersonal
|
|
|
148
149
|
export { ISnoLog } from './lib/core/interfaces/Auditoria';
|
|
149
150
|
export { IDetaEntrada, IEntradaSuministros, IDetaContable } from './lib/core/interfaces/EntradaSuministro';
|
|
150
151
|
export { ITipoDepositos } from './lib/core/interfaces/ITipoDepositos';
|
|
151
|
-
export {
|
|
152
|
+
export { IClient } from './lib/core/interfaces/Cliente';
|
|
153
|
+
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, } from './lib/core/interfaces/Constantes';
|
|
152
154
|
export { IUpdateDistribution2, IUpdateDistribution } from './lib/core/interfaces/CuentaEgresos';
|