sigesp 0.9.6-2022-12-04 → 0.9.8-20221205

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.
@@ -32,3 +32,22 @@ export interface IEmpresa {
32
32
  despar: string;
33
33
  descom: string;
34
34
  }
35
+ export interface IEnterprise {
36
+ id_empresa: string;
37
+ id_enterprise: string;
38
+ codigo: string;
39
+ denominacion: string;
40
+ titulo: string;
41
+ logo: string;
42
+ rif: string;
43
+ direccion: string;
44
+ spi_cuenta: string;
45
+ sc_cuenta_cxc: string;
46
+ sc_cuenta_iva: string;
47
+ sc_cuenta_inventario: string;
48
+ sc_cuenta_utilidad: string;
49
+ sc_cuenta_perdida: string;
50
+ sc_cuenta_pasivo_diferido: string;
51
+ sc_cuenta_ant: string;
52
+ spi_cuenta_sobrante: string;
53
+ }
@@ -9,7 +9,6 @@ export interface IState {
9
9
  codest: string;
10
10
  desest: string;
11
11
  ciucapest: string;
12
- desciu?: string;
13
12
  }
14
13
  export interface IMunicipality {
15
14
  codpai: string;
@@ -17,7 +16,6 @@ export interface IMunicipality {
17
16
  codmun: string;
18
17
  desmun: string;
19
18
  capmun: string;
20
- desciu?: string;
21
19
  }
22
20
  export interface IParish {
23
21
  codpai: string;
@@ -32,3 +30,11 @@ export interface ICity {
32
30
  codciu: string;
33
31
  desciu: string;
34
32
  }
33
+ export interface ICommunity {
34
+ codpai: string;
35
+ codest: string;
36
+ codmun: string;
37
+ codpar: string;
38
+ codcom: string;
39
+ descom: string;
40
+ }
@@ -0,0 +1,23 @@
1
+ import { IEnterprise } from '../../interfaces/Configuracion';
2
+ import { MBasicModel } from '../basic-model.model';
3
+ export declare class MEnterprise extends MBasicModel {
4
+ idEmpresa: number;
5
+ idEnterprise: number;
6
+ codigo: string;
7
+ razonSocial: string;
8
+ titulo: string;
9
+ logo: string;
10
+ rif: string;
11
+ direccion: string;
12
+ cuentaIngreso: string;
13
+ CuentaPorCobrar: string;
14
+ CuentaIva: string;
15
+ cuentaInventario: string;
16
+ cuentaUtilidad: string;
17
+ cuentaPerdida: string;
18
+ cuentaPasivoDiferido: string;
19
+ cuentAnterior: string;
20
+ cuentSobrante: string;
21
+ constructor(e?: IEnterprise);
22
+ dataInterface(): IEnterprise;
23
+ }
@@ -1,4 +1,4 @@
1
- import { ICountry, IState, IMunicipality, IParish, ICity } from '../../interfaces/Lugares';
1
+ import { ICountry, IState, IMunicipality, IParish, ICity, ICommunity } from '../../interfaces/Lugares';
2
2
  import { MBasicModel } from '../basic-model.model';
3
3
  export declare class MCountry extends MBasicModel {
4
4
  code: string;
@@ -13,7 +13,6 @@ export declare class MState extends MBasicModel {
13
13
  countryCode: string;
14
14
  name: string;
15
15
  capital: string;
16
- nameCapital: string;
17
16
  constructor(state: IState);
18
17
  dataInterface(): IState;
19
18
  }
@@ -23,7 +22,6 @@ export declare class MMunicipality extends MBasicModel {
23
22
  stateCode: string;
24
23
  name: string;
25
24
  capital: string;
26
- nameCapital: string;
27
25
  constructor(mun: IMunicipality);
28
26
  dataInterface(): IMunicipality;
29
27
  }
@@ -44,3 +42,13 @@ export declare class MCity extends MBasicModel {
44
42
  constructor(city: ICity);
45
43
  dataInterface(): ICity;
46
44
  }
45
+ export declare class MCommunity extends MBasicModel {
46
+ code: string;
47
+ countryCode: string;
48
+ stateCode: string;
49
+ municipalityCode: string;
50
+ parishCode: string;
51
+ name: string;
52
+ constructor(parish: ICommunity);
53
+ dataInterface(): ICommunity;
54
+ }
@@ -7,7 +7,6 @@ import { filterData } from './core/interfaces/Catalogo';
7
7
  import { MCuentaPresupuesto } from './core/models/SPG/cuentaPresupuesto.model';
8
8
  import { MCuentaInstitucional } from './core/models/SCG/cuentaInstitucional.model';
9
9
  import { MMoneda } from './core/models/STB/moneda.model';
10
- import { MComunidad } from './core/models/CFG/comunidad.model';
11
10
  import { ToastrService } from 'ngx-toastr';
12
11
  import { MUnidadTributaria } from './core/models/STB/unidadTributaria.model';
13
12
  import { AbstractControl, FormGroup } from '@angular/forms';
@@ -30,6 +29,7 @@ import { IResponse } from './core/interfaces/Response';
30
29
  import { MComponent } from './core/models/SSS/component.model';
31
30
  import { MLog } from './core/models/SSS/log.model';
32
31
  import { MSnoLog } from './core/models/SNO/MAuditoria.model';
32
+ import { MComunidad } from './core/models/CFG/comunidad.model';
33
33
  export declare class SigespService {
34
34
  private http;
35
35
  private dialog;
@@ -673,7 +673,7 @@ export declare class SigespService {
673
673
  * @author Dimaly Crespo
674
674
  *
675
675
  */
676
- getCompany(tipo: string, id?: number): Observable<IResponse>;
676
+ getCompany(tipo?: string, id?: number): Observable<IResponse>;
677
677
  /**
678
678
  * @description Obtiene los tipos de documentos registrados en CXP
679
679
  * @return Observable<IResponse>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.6-2022-12-04",
3
+ "version": "0.9.8-20221205",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },
package/public-api.d.ts CHANGED
@@ -3,8 +3,9 @@ export * from './lib/validation.service';
3
3
  export { AppModule } from './lib/app/app.module';
4
4
  export { MBasicModel } from './lib/core/models/basic-model.model';
5
5
  export { MEmpresa } from './lib/core/models/CFG/Empresa.model';
6
+ export { MEnterprise } from './lib/core/models/CFG/Enterprise.model';
6
7
  export { MComunidad } from './lib/core/models/CFG/comunidad.model';
7
- export { MCountry, MMunicipality, MParish, MState, MCity, } from './lib/core/models/CFG/locations.model';
8
+ export { MCountry, MMunicipality, MParish, MState, MCity, MCommunity } from './lib/core/models/CFG/locations.model';
8
9
  export { MTipoDocumentoCXP } from './lib/core/models/CXP/MTipoDocumentoCXP.model';
9
10
  export { MConceptosCXP } from './lib/core/models/CXP/MConceptosCXP.model';
10
11
  export { MCuentaPresupuesto } from './lib/core/models/SPG/cuentaPresupuesto.model';
@@ -137,7 +138,7 @@ export { ISistema } from './lib/core/interfaces/Sistema';
137
138
  export { IUnitAdministrative } from './lib/core/interfaces/Presupuesto';
138
139
  export { IServiceCharge, IConceptosCXP, ITipoDocumentoCXP } from './lib/core/interfaces/CuentasPorPagar';
139
140
  export { IAsignacionCargo, IConceptos, IConceptosPersonalNomina, IConceptosVacaciones, IConstanteNomina, IConstantePersonaNomina, IHojaTiempo, INomina, IPeriodoNomina, IPersonalNomina, IPrimasConcepto, IEncargaduria, ICodigoUnicoRac, INominaSimple, Reporte, SalarioNormal, Signo, TipoCestaTicket, } from './lib/core/interfaces/Nomina';
140
- export { IEmpresa, } from './lib/core/interfaces/Configuracion';
141
+ export { IEmpresa, IEnterprise, } from './lib/core/interfaces/Configuracion';
141
142
  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, IPersonalJubilado, IArchivoTXT, ICalculoPrestacion, ICambioEstatusPersonal, ICargaMasiva, IConfiguracionFideicomiso, IFideicomisoInteres, IFideicomisoPeriodo, IFideicomisoPeriodoInteres, IFideicomisoPeriodoInteresCatalogo, IConstancias, ITrabajosConcursantes, IEstudiosConcursantes, IFamiliaConcursante, IPrestamo, IPrestamoAmortizacion, IPrestamoPeriodo, IPrevioEvaluacion, IPrevioEvaluacionDt, IRConsolidadoConceptos, IRConstanciaTrabajo, IRPeriodo, IRRetenciones, IRSindicatos, IResultadosEvaluacion, ISueldoMinimo, IRListadoPersonal, IRListadoTipoPersonal, IPlanHorario, IHorariosPeriodosPlan, IPeriodosPlan } from './lib/core/interfaces/RecursosHumanos';
142
143
  export { ISnoLog } from './lib/core/interfaces/Auditoria';
143
144
  export { IDetaEntrada, IEntradaSuministros, IDetaContable } from './lib/core/interfaces/EntradaSuministro';
package/sigesp.d.ts CHANGED
@@ -2,31 +2,32 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
- export { AppComponent as ɵe } from './lib/app/app.component';
6
- export { ICatalogo as ɵh } from './lib/core/interfaces/Catalogo';
7
- export { ICentroCosto as ɵba } from './lib/core/interfaces/CentroCosto';
8
- export { IComprobantePresupuestarioEgresos as ɵt, IComprobantePresupuestarioIngresos as ɵu } from './lib/core/interfaces/ComprobantePresupuestario';
9
- export { IComunidad as ɵp } from './lib/core/interfaces/Comunidad';
10
- export { IConfiguracionSCG as ɵw } from './lib/core/interfaces/ConfiguracionSCG';
11
- export { IConfigurationSPG as ɵy } from './lib/core/interfaces/ConfigurationSPG';
12
- export { ICuentaEgresos as ɵs } from './lib/core/interfaces/CuentaEgresos';
13
- export { ICuentaInstitucional as ɵv } from './lib/core/interfaces/CuentaInstitucional';
14
- export { ICuentaPresupuesto as ɵq } from './lib/core/interfaces/CuentaPresupuesto';
5
+ export { AppComponent as ɵf } from './lib/app/app.component';
6
+ export { ICatalogo as ɵi } from './lib/core/interfaces/Catalogo';
7
+ export { ICentroCosto as ɵbb } from './lib/core/interfaces/CentroCosto';
8
+ export { IComprobantePresupuestarioEgresos as ɵu, IComprobantePresupuestarioIngresos as ɵv } from './lib/core/interfaces/ComprobantePresupuestario';
9
+ export { IComunidad as ɵq } from './lib/core/interfaces/Comunidad';
10
+ export { IConfiguracionSCG as ɵx } from './lib/core/interfaces/ConfiguracionSCG';
11
+ export { IConfigurationSPG as ɵz } from './lib/core/interfaces/ConfigurationSPG';
12
+ export { ICuentaEgresos as ɵt } from './lib/core/interfaces/CuentaEgresos';
13
+ export { ICuentaInstitucional as ɵw } from './lib/core/interfaces/CuentaInstitucional';
14
+ export { ICuentaPresupuesto as ɵr } from './lib/core/interfaces/CuentaPresupuesto';
15
15
  export { IEstructuraPresupuestariaFiveComplete as ɵb } from './lib/core/interfaces/EstructuraPresupuestaria';
16
- export { IFuenteFinanciamiento as ɵr } from './lib/core/interfaces/FuenteFinanciamiento';
17
- export { IAccountMarriage as ɵz } from './lib/core/interfaces/Integracion';
18
- export { IMoneda as ɵbc, IMonedaConfig as ɵbd } from './lib/core/interfaces/Moneda';
19
- export { ICargoNomina as ɵd, ICargoOrganigrama as ɵc } from './lib/core/interfaces/Nomina';
20
- export { IPlanUnicoCuenta as ɵx } from './lib/core/interfaces/PlanUnicoCuenta';
21
- export { IUnidadTributaria as ɵbb } from './lib/core/interfaces/UnidadTributaria';
16
+ export { IFuenteFinanciamiento as ɵs } from './lib/core/interfaces/FuenteFinanciamiento';
17
+ export { IAccountMarriage as ɵba } from './lib/core/interfaces/Integracion';
18
+ export { ICommunity as ɵc } from './lib/core/interfaces/Lugares';
19
+ export { IMoneda as ɵbd, IMonedaConfig as ɵbe } from './lib/core/interfaces/Moneda';
20
+ export { ICargoNomina as ɵe, ICargoOrganigrama as ɵd } from './lib/core/interfaces/Nomina';
21
+ export { IPlanUnicoCuenta as ɵy } from './lib/core/interfaces/PlanUnicoCuenta';
22
+ export { IUnidadTributaria as ɵbc } from './lib/core/interfaces/UnidadTributaria';
22
23
  export { IUsuario as ɵa } from './lib/core/interfaces/Usuario';
23
- export { IUsuarioPrefijo as ɵbe } from './lib/core/interfaces/UsuarioPrefijo';
24
- export { CatalogoDobleInputComponent as ɵm } from './lib/shared/components/catalogo-doble-input/catalogo-doble-input.component';
25
- export { CatalogoEstructurasComponent as ɵl } from './lib/shared/components/catalogo-estructuras/catalogo-estructuras.component';
26
- export { CatalogoComponent as ɵg } from './lib/shared/components/catalogo/catalogo.component';
27
- export { ConfirmComponent as ɵi } from './lib/shared/components/confirm/confirm.component';
28
- export { IconComponent as ɵj } from './lib/shared/components/icon/icon.component';
29
- export { TableSelectComponent as ɵk } from './lib/shared/components/table-select/table-select.component';
30
- export { CustonMaterialModule as ɵo } from './lib/shared/material/material.module';
31
- export { IsoCurrencyPipe as ɵn } from './lib/shared/pipes/iso-currency.pipe';
32
- export { SharedModule as ɵf } from './lib/shared/shared.module';
24
+ export { IUsuarioPrefijo as ɵbf } from './lib/core/interfaces/UsuarioPrefijo';
25
+ export { CatalogoDobleInputComponent as ɵn } from './lib/shared/components/catalogo-doble-input/catalogo-doble-input.component';
26
+ export { CatalogoEstructurasComponent as ɵm } from './lib/shared/components/catalogo-estructuras/catalogo-estructuras.component';
27
+ export { CatalogoComponent as ɵh } from './lib/shared/components/catalogo/catalogo.component';
28
+ export { ConfirmComponent as ɵj } from './lib/shared/components/confirm/confirm.component';
29
+ export { IconComponent as ɵk } from './lib/shared/components/icon/icon.component';
30
+ export { TableSelectComponent as ɵl } from './lib/shared/components/table-select/table-select.component';
31
+ export { CustonMaterialModule as ɵp } from './lib/shared/material/material.module';
32
+ export { IsoCurrencyPipe as ɵo } from './lib/shared/pipes/iso-currency.pipe';
33
+ export { SharedModule as ɵg } from './lib/shared/shared.module';