sigo-entities 0.0.101 → 0.0.103
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/README.md +4 -4
- package/dist/index.d.mts +79 -20
- package/dist/index.d.ts +79 -20
- package/dist/index.js +3044 -2727
- package/dist/index.mjs +3044 -2729
- package/package.json +27 -27
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# sigo-entities
|
|
2
|
-
Desarrollo de modelos de datos SIGO
|
|
3
|
-
npm i sigo-entities@latest
|
|
4
|
-
## Test
|
|
1
|
+
# sigo-entities
|
|
2
|
+
Desarrollo de modelos de datos SIGO
|
|
3
|
+
npm i sigo-entities@latest
|
|
4
|
+
## Test
|
package/dist/index.d.mts
CHANGED
|
@@ -107,7 +107,7 @@ declare class DetalleDTO {
|
|
|
107
107
|
Estado: EstadoDTO;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
declare class EmpresaDTO$
|
|
110
|
+
declare class EmpresaDTO$4 {
|
|
111
111
|
Codigo: string;
|
|
112
112
|
RazonSocial: string;
|
|
113
113
|
Propia: boolean;
|
|
@@ -271,7 +271,7 @@ declare class GranFamiliaItemDTO {
|
|
|
271
271
|
Nombre: string;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
declare class UnidadMedidaDTO$
|
|
274
|
+
declare class UnidadMedidaDTO$2 {
|
|
275
275
|
ID_UnidadMedida: number;
|
|
276
276
|
Nombre: string;
|
|
277
277
|
}
|
|
@@ -282,7 +282,7 @@ declare class ItemDetalleLogisticaDTO {
|
|
|
282
282
|
Nombre: string;
|
|
283
283
|
Descripcion: string;
|
|
284
284
|
Variante: CodigoNombreDTO;
|
|
285
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
285
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
286
286
|
GranFamiliaItem: GranFamiliaItemDTO;
|
|
287
287
|
FamiliaItem: FamiliaItemDTO;
|
|
288
288
|
Ind_SB: string;
|
|
@@ -323,7 +323,7 @@ declare class PersonalLogisticaDTO$1 {
|
|
|
323
323
|
Apellidos: string;
|
|
324
324
|
Nombres: string;
|
|
325
325
|
Lotes: LoteDTO$1[];
|
|
326
|
-
Empresa: EmpresaDTO$
|
|
326
|
+
Empresa: EmpresaDTO$4;
|
|
327
327
|
Firma: string;
|
|
328
328
|
}
|
|
329
329
|
|
|
@@ -490,7 +490,7 @@ declare class ItemDTO {
|
|
|
490
490
|
Nombre: string;
|
|
491
491
|
Descripcion: string;
|
|
492
492
|
Variante: VarianteDTO;
|
|
493
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
493
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
494
494
|
Ind_SB: string;
|
|
495
495
|
Lote: string;
|
|
496
496
|
Cantidad: number;
|
|
@@ -534,7 +534,7 @@ declare class ContrataDTO {
|
|
|
534
534
|
Estados_Internos: EstadoInternoDTO[];
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
declare class PeriodoDTO$
|
|
537
|
+
declare class PeriodoDTO$3 {
|
|
538
538
|
ID_Periodo: number;
|
|
539
539
|
Codigo: string;
|
|
540
540
|
FechaInicio: Date;
|
|
@@ -547,7 +547,7 @@ declare class PeriodoDTO$2 {
|
|
|
547
547
|
declare class CertificacionProduccionDTO {
|
|
548
548
|
Mes: number;
|
|
549
549
|
Anio: number;
|
|
550
|
-
UltimoPeriodo: PeriodoDTO$
|
|
550
|
+
UltimoPeriodo: PeriodoDTO$3;
|
|
551
551
|
UsuarioEdicion: UsuarioEdicionDTO;
|
|
552
552
|
FechaRegistro: Date;
|
|
553
553
|
}
|
|
@@ -557,7 +557,7 @@ declare class MaterialesDTO {
|
|
|
557
557
|
CodigoLlave: string;
|
|
558
558
|
Descripcion: string;
|
|
559
559
|
Estado: EstadoDTO;
|
|
560
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
560
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
561
561
|
Cantidad: number;
|
|
562
562
|
CantidadStock: number;
|
|
563
563
|
CantidadSinStock: number;
|
|
@@ -698,7 +698,7 @@ declare class Ultima_asignacionDTO {
|
|
|
698
698
|
Turno: TurnoDTO;
|
|
699
699
|
Fecha: Date;
|
|
700
700
|
Usuario: UsuarioDTO;
|
|
701
|
-
Empresa: EmpresaDTO$
|
|
701
|
+
Empresa: EmpresaDTO$4;
|
|
702
702
|
Valorizaciones: ValorizacionesDTO[];
|
|
703
703
|
}
|
|
704
704
|
|
|
@@ -761,7 +761,7 @@ declare class FaseDTO {
|
|
|
761
761
|
NroDocumento: string;
|
|
762
762
|
UsuarioDocumento: UsuarioDTO;
|
|
763
763
|
FechaDocumento: Date;
|
|
764
|
-
UltimoPeriodo: PeriodoDTO$
|
|
764
|
+
UltimoPeriodo: PeriodoDTO$3;
|
|
765
765
|
}
|
|
766
766
|
|
|
767
767
|
declare class ValorizacionAlemaniaDTO {
|
|
@@ -882,7 +882,7 @@ declare class MaterialLogisticaDTO {
|
|
|
882
882
|
ID_Item: number;
|
|
883
883
|
Codigo: string;
|
|
884
884
|
Descripcion: string;
|
|
885
|
-
Unidad: UnidadMedidaDTO$
|
|
885
|
+
Unidad: UnidadMedidaDTO$2;
|
|
886
886
|
CantidadMax: number;
|
|
887
887
|
}
|
|
888
888
|
|
|
@@ -908,32 +908,32 @@ declare class ManoObraGlobalENTITY {
|
|
|
908
908
|
Codigo: string;
|
|
909
909
|
Alcance: string;
|
|
910
910
|
ContratoOT: ContratoOTDTO;
|
|
911
|
-
Unidad: UnidadMedidaDTO$
|
|
911
|
+
Unidad: UnidadMedidaDTO$2;
|
|
912
912
|
Material: MaterialAmapDTO[];
|
|
913
913
|
DetalleChile: DetalleManoObraChileDTO;
|
|
914
914
|
Bitacora: BitacoraDTO[];
|
|
915
915
|
Estado: EstadoDTO;
|
|
916
916
|
}
|
|
917
917
|
|
|
918
|
-
declare class CuadrillaDTO$
|
|
918
|
+
declare class CuadrillaDTO$2 {
|
|
919
919
|
Codigo: string;
|
|
920
920
|
Descripcion: string;
|
|
921
921
|
Identificacion: string;
|
|
922
922
|
}
|
|
923
923
|
|
|
924
|
-
declare class EmpresaDTO$
|
|
924
|
+
declare class EmpresaDTO$3 {
|
|
925
925
|
Codigo: string;
|
|
926
926
|
RazonSocial: string;
|
|
927
927
|
Propia: string;
|
|
928
928
|
}
|
|
929
929
|
|
|
930
|
-
declare class ManoObraDTO$
|
|
930
|
+
declare class ManoObraDTO$2 {
|
|
931
931
|
Codigo: string;
|
|
932
932
|
Nombre: string;
|
|
933
933
|
UnidadMedida: string;
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
-
declare class PeriodoDTO$
|
|
936
|
+
declare class PeriodoDTO$2 {
|
|
937
937
|
FechaInicio: Date;
|
|
938
938
|
FechaFin: Date;
|
|
939
939
|
FechaMaxima: Date;
|
|
@@ -952,11 +952,70 @@ declare class BaremosAlemaniaENTITY {
|
|
|
952
952
|
Contrato: string;
|
|
953
953
|
ZonaAsignada: string;
|
|
954
954
|
Agencia: string;
|
|
955
|
+
Cuadrilla: CuadrillaDTO$2;
|
|
956
|
+
Empresa: EmpresaDTO$3;
|
|
957
|
+
Especialidad: CodigoNombreDTO;
|
|
958
|
+
Actividad: CodigoNombreDTO;
|
|
959
|
+
ManoObra: ManoObraDTO$2;
|
|
960
|
+
MaterialesUtilizados: Array<any>;
|
|
961
|
+
MaterialesRetirados: Array<any>;
|
|
962
|
+
Cantidad: number;
|
|
963
|
+
PuntoBaremo: number;
|
|
964
|
+
Precio: number;
|
|
965
|
+
PrecioContratista: number;
|
|
966
|
+
Simbolo: string;
|
|
967
|
+
Moneda: string;
|
|
968
|
+
Periodo: PeriodoDTO$2;
|
|
969
|
+
Anio: number;
|
|
970
|
+
Mes: number;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
declare class PeriodoDTO$1 {
|
|
974
|
+
FechaInicio: Date;
|
|
975
|
+
FechaFin: Date;
|
|
976
|
+
FechaMaxima: Date;
|
|
977
|
+
Anio: number;
|
|
978
|
+
Mes: number;
|
|
979
|
+
Codigo: string;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
declare class CuadrillaDTO$1 {
|
|
983
|
+
Codigo: string;
|
|
984
|
+
Descripcion: string;
|
|
985
|
+
Identificacion: string;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
declare class EmpresaDTO$2 {
|
|
989
|
+
Codigo: string;
|
|
990
|
+
RazonSocial: string;
|
|
991
|
+
Propia: string;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
declare class ManoObraDTO$1 {
|
|
995
|
+
Codigo: string;
|
|
996
|
+
Nombre: string;
|
|
997
|
+
UnidadMedida: string;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
declare class UnidadMedidaDTO$1 {
|
|
1001
|
+
Codigo: string;
|
|
1002
|
+
Nombre: string;
|
|
1003
|
+
UnidadMedida: string;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
declare class BaremosChileENTITY {
|
|
1007
|
+
foreignKey: string;
|
|
1008
|
+
Obra: string;
|
|
1009
|
+
Contrato: string;
|
|
1010
|
+
ID_GOM: number;
|
|
1011
|
+
ZonaAsignada: string;
|
|
1012
|
+
Agencia: string;
|
|
955
1013
|
Cuadrilla: CuadrillaDTO$1;
|
|
956
1014
|
Empresa: EmpresaDTO$2;
|
|
957
1015
|
Especialidad: CodigoNombreDTO;
|
|
958
1016
|
Actividad: CodigoNombreDTO;
|
|
959
1017
|
ManoObra: ManoObraDTO$1;
|
|
1018
|
+
UnidadObra: UnidadMedidaDTO$1;
|
|
960
1019
|
MaterialesUtilizados: Array<any>;
|
|
961
1020
|
MaterialesRetirados: Array<any>;
|
|
962
1021
|
Cantidad: number;
|
|
@@ -1315,7 +1374,7 @@ declare class ItemENTITY {
|
|
|
1315
1374
|
Nombre: string;
|
|
1316
1375
|
Descripcion: string;
|
|
1317
1376
|
Variante: CodigoNombreDTO[];
|
|
1318
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
1377
|
+
UnidadMedida: UnidadMedidaDTO$2[];
|
|
1319
1378
|
Ind_SB: string;
|
|
1320
1379
|
Merma: boolean;
|
|
1321
1380
|
Decimales: boolean;
|
|
@@ -1835,7 +1894,7 @@ declare class ValorizadaTOAENTITY {
|
|
|
1835
1894
|
Tipo_Trabajo: string;
|
|
1836
1895
|
TipoTrabajo: string;
|
|
1837
1896
|
Agencia: string;
|
|
1838
|
-
Estado:
|
|
1897
|
+
Estado: string;
|
|
1839
1898
|
Ciudad: string;
|
|
1840
1899
|
SubTipoActividad: string;
|
|
1841
1900
|
Actividad: string;
|
|
@@ -1932,7 +1991,7 @@ declare class LiquidadaTOAENTITY {
|
|
|
1932
1991
|
SubTipoActividad: string;
|
|
1933
1992
|
TipoTrabajo: string;
|
|
1934
1993
|
Actividad: string;
|
|
1935
|
-
Estado:
|
|
1994
|
+
Estado: string;
|
|
1936
1995
|
HabilidadTrabajo: string;
|
|
1937
1996
|
ZonaTrabajo: string;
|
|
1938
1997
|
PlantaAsignada: string;
|
|
@@ -1975,4 +2034,4 @@ declare class LiquidadaTOAENTITY {
|
|
|
1975
2034
|
Bitacora: BitacoraLiqDTO[];
|
|
1976
2035
|
}
|
|
1977
2036
|
|
|
1978
|
-
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$
|
|
2037
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, type EstadoLiq, EstadoLiqDTO, type EstadoVal, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OTGlobalDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, type TipoVal, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -107,7 +107,7 @@ declare class DetalleDTO {
|
|
|
107
107
|
Estado: EstadoDTO;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
declare class EmpresaDTO$
|
|
110
|
+
declare class EmpresaDTO$4 {
|
|
111
111
|
Codigo: string;
|
|
112
112
|
RazonSocial: string;
|
|
113
113
|
Propia: boolean;
|
|
@@ -271,7 +271,7 @@ declare class GranFamiliaItemDTO {
|
|
|
271
271
|
Nombre: string;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
declare class UnidadMedidaDTO$
|
|
274
|
+
declare class UnidadMedidaDTO$2 {
|
|
275
275
|
ID_UnidadMedida: number;
|
|
276
276
|
Nombre: string;
|
|
277
277
|
}
|
|
@@ -282,7 +282,7 @@ declare class ItemDetalleLogisticaDTO {
|
|
|
282
282
|
Nombre: string;
|
|
283
283
|
Descripcion: string;
|
|
284
284
|
Variante: CodigoNombreDTO;
|
|
285
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
285
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
286
286
|
GranFamiliaItem: GranFamiliaItemDTO;
|
|
287
287
|
FamiliaItem: FamiliaItemDTO;
|
|
288
288
|
Ind_SB: string;
|
|
@@ -323,7 +323,7 @@ declare class PersonalLogisticaDTO$1 {
|
|
|
323
323
|
Apellidos: string;
|
|
324
324
|
Nombres: string;
|
|
325
325
|
Lotes: LoteDTO$1[];
|
|
326
|
-
Empresa: EmpresaDTO$
|
|
326
|
+
Empresa: EmpresaDTO$4;
|
|
327
327
|
Firma: string;
|
|
328
328
|
}
|
|
329
329
|
|
|
@@ -490,7 +490,7 @@ declare class ItemDTO {
|
|
|
490
490
|
Nombre: string;
|
|
491
491
|
Descripcion: string;
|
|
492
492
|
Variante: VarianteDTO;
|
|
493
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
493
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
494
494
|
Ind_SB: string;
|
|
495
495
|
Lote: string;
|
|
496
496
|
Cantidad: number;
|
|
@@ -534,7 +534,7 @@ declare class ContrataDTO {
|
|
|
534
534
|
Estados_Internos: EstadoInternoDTO[];
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
declare class PeriodoDTO$
|
|
537
|
+
declare class PeriodoDTO$3 {
|
|
538
538
|
ID_Periodo: number;
|
|
539
539
|
Codigo: string;
|
|
540
540
|
FechaInicio: Date;
|
|
@@ -547,7 +547,7 @@ declare class PeriodoDTO$2 {
|
|
|
547
547
|
declare class CertificacionProduccionDTO {
|
|
548
548
|
Mes: number;
|
|
549
549
|
Anio: number;
|
|
550
|
-
UltimoPeriodo: PeriodoDTO$
|
|
550
|
+
UltimoPeriodo: PeriodoDTO$3;
|
|
551
551
|
UsuarioEdicion: UsuarioEdicionDTO;
|
|
552
552
|
FechaRegistro: Date;
|
|
553
553
|
}
|
|
@@ -557,7 +557,7 @@ declare class MaterialesDTO {
|
|
|
557
557
|
CodigoLlave: string;
|
|
558
558
|
Descripcion: string;
|
|
559
559
|
Estado: EstadoDTO;
|
|
560
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
560
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
561
561
|
Cantidad: number;
|
|
562
562
|
CantidadStock: number;
|
|
563
563
|
CantidadSinStock: number;
|
|
@@ -698,7 +698,7 @@ declare class Ultima_asignacionDTO {
|
|
|
698
698
|
Turno: TurnoDTO;
|
|
699
699
|
Fecha: Date;
|
|
700
700
|
Usuario: UsuarioDTO;
|
|
701
|
-
Empresa: EmpresaDTO$
|
|
701
|
+
Empresa: EmpresaDTO$4;
|
|
702
702
|
Valorizaciones: ValorizacionesDTO[];
|
|
703
703
|
}
|
|
704
704
|
|
|
@@ -761,7 +761,7 @@ declare class FaseDTO {
|
|
|
761
761
|
NroDocumento: string;
|
|
762
762
|
UsuarioDocumento: UsuarioDTO;
|
|
763
763
|
FechaDocumento: Date;
|
|
764
|
-
UltimoPeriodo: PeriodoDTO$
|
|
764
|
+
UltimoPeriodo: PeriodoDTO$3;
|
|
765
765
|
}
|
|
766
766
|
|
|
767
767
|
declare class ValorizacionAlemaniaDTO {
|
|
@@ -882,7 +882,7 @@ declare class MaterialLogisticaDTO {
|
|
|
882
882
|
ID_Item: number;
|
|
883
883
|
Codigo: string;
|
|
884
884
|
Descripcion: string;
|
|
885
|
-
Unidad: UnidadMedidaDTO$
|
|
885
|
+
Unidad: UnidadMedidaDTO$2;
|
|
886
886
|
CantidadMax: number;
|
|
887
887
|
}
|
|
888
888
|
|
|
@@ -908,32 +908,32 @@ declare class ManoObraGlobalENTITY {
|
|
|
908
908
|
Codigo: string;
|
|
909
909
|
Alcance: string;
|
|
910
910
|
ContratoOT: ContratoOTDTO;
|
|
911
|
-
Unidad: UnidadMedidaDTO$
|
|
911
|
+
Unidad: UnidadMedidaDTO$2;
|
|
912
912
|
Material: MaterialAmapDTO[];
|
|
913
913
|
DetalleChile: DetalleManoObraChileDTO;
|
|
914
914
|
Bitacora: BitacoraDTO[];
|
|
915
915
|
Estado: EstadoDTO;
|
|
916
916
|
}
|
|
917
917
|
|
|
918
|
-
declare class CuadrillaDTO$
|
|
918
|
+
declare class CuadrillaDTO$2 {
|
|
919
919
|
Codigo: string;
|
|
920
920
|
Descripcion: string;
|
|
921
921
|
Identificacion: string;
|
|
922
922
|
}
|
|
923
923
|
|
|
924
|
-
declare class EmpresaDTO$
|
|
924
|
+
declare class EmpresaDTO$3 {
|
|
925
925
|
Codigo: string;
|
|
926
926
|
RazonSocial: string;
|
|
927
927
|
Propia: string;
|
|
928
928
|
}
|
|
929
929
|
|
|
930
|
-
declare class ManoObraDTO$
|
|
930
|
+
declare class ManoObraDTO$2 {
|
|
931
931
|
Codigo: string;
|
|
932
932
|
Nombre: string;
|
|
933
933
|
UnidadMedida: string;
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
-
declare class PeriodoDTO$
|
|
936
|
+
declare class PeriodoDTO$2 {
|
|
937
937
|
FechaInicio: Date;
|
|
938
938
|
FechaFin: Date;
|
|
939
939
|
FechaMaxima: Date;
|
|
@@ -952,11 +952,70 @@ declare class BaremosAlemaniaENTITY {
|
|
|
952
952
|
Contrato: string;
|
|
953
953
|
ZonaAsignada: string;
|
|
954
954
|
Agencia: string;
|
|
955
|
+
Cuadrilla: CuadrillaDTO$2;
|
|
956
|
+
Empresa: EmpresaDTO$3;
|
|
957
|
+
Especialidad: CodigoNombreDTO;
|
|
958
|
+
Actividad: CodigoNombreDTO;
|
|
959
|
+
ManoObra: ManoObraDTO$2;
|
|
960
|
+
MaterialesUtilizados: Array<any>;
|
|
961
|
+
MaterialesRetirados: Array<any>;
|
|
962
|
+
Cantidad: number;
|
|
963
|
+
PuntoBaremo: number;
|
|
964
|
+
Precio: number;
|
|
965
|
+
PrecioContratista: number;
|
|
966
|
+
Simbolo: string;
|
|
967
|
+
Moneda: string;
|
|
968
|
+
Periodo: PeriodoDTO$2;
|
|
969
|
+
Anio: number;
|
|
970
|
+
Mes: number;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
declare class PeriodoDTO$1 {
|
|
974
|
+
FechaInicio: Date;
|
|
975
|
+
FechaFin: Date;
|
|
976
|
+
FechaMaxima: Date;
|
|
977
|
+
Anio: number;
|
|
978
|
+
Mes: number;
|
|
979
|
+
Codigo: string;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
declare class CuadrillaDTO$1 {
|
|
983
|
+
Codigo: string;
|
|
984
|
+
Descripcion: string;
|
|
985
|
+
Identificacion: string;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
declare class EmpresaDTO$2 {
|
|
989
|
+
Codigo: string;
|
|
990
|
+
RazonSocial: string;
|
|
991
|
+
Propia: string;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
declare class ManoObraDTO$1 {
|
|
995
|
+
Codigo: string;
|
|
996
|
+
Nombre: string;
|
|
997
|
+
UnidadMedida: string;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
declare class UnidadMedidaDTO$1 {
|
|
1001
|
+
Codigo: string;
|
|
1002
|
+
Nombre: string;
|
|
1003
|
+
UnidadMedida: string;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
declare class BaremosChileENTITY {
|
|
1007
|
+
foreignKey: string;
|
|
1008
|
+
Obra: string;
|
|
1009
|
+
Contrato: string;
|
|
1010
|
+
ID_GOM: number;
|
|
1011
|
+
ZonaAsignada: string;
|
|
1012
|
+
Agencia: string;
|
|
955
1013
|
Cuadrilla: CuadrillaDTO$1;
|
|
956
1014
|
Empresa: EmpresaDTO$2;
|
|
957
1015
|
Especialidad: CodigoNombreDTO;
|
|
958
1016
|
Actividad: CodigoNombreDTO;
|
|
959
1017
|
ManoObra: ManoObraDTO$1;
|
|
1018
|
+
UnidadObra: UnidadMedidaDTO$1;
|
|
960
1019
|
MaterialesUtilizados: Array<any>;
|
|
961
1020
|
MaterialesRetirados: Array<any>;
|
|
962
1021
|
Cantidad: number;
|
|
@@ -1315,7 +1374,7 @@ declare class ItemENTITY {
|
|
|
1315
1374
|
Nombre: string;
|
|
1316
1375
|
Descripcion: string;
|
|
1317
1376
|
Variante: CodigoNombreDTO[];
|
|
1318
|
-
UnidadMedida: UnidadMedidaDTO$
|
|
1377
|
+
UnidadMedida: UnidadMedidaDTO$2[];
|
|
1319
1378
|
Ind_SB: string;
|
|
1320
1379
|
Merma: boolean;
|
|
1321
1380
|
Decimales: boolean;
|
|
@@ -1835,7 +1894,7 @@ declare class ValorizadaTOAENTITY {
|
|
|
1835
1894
|
Tipo_Trabajo: string;
|
|
1836
1895
|
TipoTrabajo: string;
|
|
1837
1896
|
Agencia: string;
|
|
1838
|
-
Estado:
|
|
1897
|
+
Estado: string;
|
|
1839
1898
|
Ciudad: string;
|
|
1840
1899
|
SubTipoActividad: string;
|
|
1841
1900
|
Actividad: string;
|
|
@@ -1932,7 +1991,7 @@ declare class LiquidadaTOAENTITY {
|
|
|
1932
1991
|
SubTipoActividad: string;
|
|
1933
1992
|
TipoTrabajo: string;
|
|
1934
1993
|
Actividad: string;
|
|
1935
|
-
Estado:
|
|
1994
|
+
Estado: string;
|
|
1936
1995
|
HabilidadTrabajo: string;
|
|
1937
1996
|
ZonaTrabajo: string;
|
|
1938
1997
|
PlantaAsignada: string;
|
|
@@ -1975,4 +2034,4 @@ declare class LiquidadaTOAENTITY {
|
|
|
1975
2034
|
Bitacora: BitacoraLiqDTO[];
|
|
1976
2035
|
}
|
|
1977
2036
|
|
|
1978
|
-
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$
|
|
2037
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DelegacionDTO, DelegacionZonalesDTO, DestinatarioDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, type EstadoLiq, EstadoLiqDTO, type EstadoVal, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, OTDTO, OTGlobalDTO, OpcionSistemaENTITY, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilENTITY, PermisosAppDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RepresentanteLegalDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SizeDTO, SocketDTO, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoOpcionDto, TipoStockStockPersonalDTO, type TipoVal, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_PreLiquidacionAlemaniaDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|