sigo-entities 0.0.174 → 0.0.176
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/dist/index.d.mts +165 -4
- package/dist/index.d.ts +165 -4
- package/dist/index.js +4703 -3786
- package/dist/index.mjs +4639 -3738
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -774,7 +774,7 @@ declare class MaterialesDTO {
|
|
|
774
774
|
Motivo: CodigoDescripcionDTO;
|
|
775
775
|
}
|
|
776
776
|
|
|
777
|
-
declare class DetalleChileDTO {
|
|
777
|
+
declare class DetalleChileDTO$1 {
|
|
778
778
|
Codigo: string;
|
|
779
779
|
Linea: string;
|
|
780
780
|
DirDesde: string;
|
|
@@ -853,7 +853,7 @@ declare class ValorizacionDTO {
|
|
|
853
853
|
Unidad: string;
|
|
854
854
|
MaterialesUtilizados: MaterialesDTO[];
|
|
855
855
|
MaterialesRetirados: MaterialesDTO[];
|
|
856
|
-
DetalleChile: DetalleChileDTO;
|
|
856
|
+
DetalleChile: DetalleChileDTO$1;
|
|
857
857
|
HomePass: HomePassDTO[];
|
|
858
858
|
SubManoObra: SubManoObraDTO[];
|
|
859
859
|
PrecioContrata: number;
|
|
@@ -1000,7 +1000,7 @@ declare class ValorizacionAlemaniaDTO {
|
|
|
1000
1000
|
Unidad: string;
|
|
1001
1001
|
MaterialesUtilizados: MaterialesDTO[];
|
|
1002
1002
|
MaterialesRetirados: MaterialesDTO[];
|
|
1003
|
-
DetalleChile: DetalleChileDTO;
|
|
1003
|
+
DetalleChile: DetalleChileDTO$1;
|
|
1004
1004
|
HomePass: HomePassDTO[];
|
|
1005
1005
|
SubManoObra: SubManoObraDTO[];
|
|
1006
1006
|
PrecioContrata: number;
|
|
@@ -1040,6 +1040,167 @@ declare class TrabajoAlemaniaENTITY {
|
|
|
1040
1040
|
PartesDiarios: ParteDiarioDTO[];
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
1043
|
+
declare class GOMDTO {
|
|
1044
|
+
ID_GOM: number;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
declare class AreaGOMDTO {
|
|
1048
|
+
GOMS: GOMDTO[];
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
declare class CausacionDTO {
|
|
1052
|
+
FechaCausacion: Date;
|
|
1053
|
+
FechaLiquidacion: Date;
|
|
1054
|
+
TipoLiquidacion: string;
|
|
1055
|
+
NumeroLiquidacion: string;
|
|
1056
|
+
Estado: string;
|
|
1057
|
+
TotalBaremos: number;
|
|
1058
|
+
ManoDeObra: number;
|
|
1059
|
+
Materiales: number;
|
|
1060
|
+
Total: number;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
declare class ContratoObraOTDTO {
|
|
1064
|
+
ID_ContratoOT: number;
|
|
1065
|
+
Codigo: string;
|
|
1066
|
+
Descripcion: string;
|
|
1067
|
+
Sistema: string;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
declare class HistoricoDTO {
|
|
1071
|
+
Actividad: string;
|
|
1072
|
+
Estado: string;
|
|
1073
|
+
Inicio: Date;
|
|
1074
|
+
Fin: Date;
|
|
1075
|
+
Usuario: string;
|
|
1076
|
+
Comentario: string;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
declare class EstadoInternoWithoutSubstateDTO {
|
|
1080
|
+
ID_EstadoInterno: number;
|
|
1081
|
+
Fecha: Date;
|
|
1082
|
+
Descripcion: string;
|
|
1083
|
+
Icono: string;
|
|
1084
|
+
Color: string;
|
|
1085
|
+
Orden: number;
|
|
1086
|
+
ColorFondo: string;
|
|
1087
|
+
Tipo: string;
|
|
1088
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
declare class DetalleChileDTO {
|
|
1092
|
+
codigo: string;
|
|
1093
|
+
nombre: string;
|
|
1094
|
+
contrato: string;
|
|
1095
|
+
agencia: string;
|
|
1096
|
+
numoe: string;
|
|
1097
|
+
nombreoe: string;
|
|
1098
|
+
tipooe: string;
|
|
1099
|
+
inioe: Date;
|
|
1100
|
+
finoe: Date;
|
|
1101
|
+
PE: string;
|
|
1102
|
+
central: string;
|
|
1103
|
+
cliente: string;
|
|
1104
|
+
comuna: string;
|
|
1105
|
+
nombreproyecto: string;
|
|
1106
|
+
PEP2: string;
|
|
1107
|
+
PEP1: string;
|
|
1108
|
+
CostoTotal: number;
|
|
1109
|
+
Historico: HistoricoDTO[];
|
|
1110
|
+
UltimoEstadoCliente: EstadoInternoWithoutSubstateDTO;
|
|
1111
|
+
EstadosCliente: EstadoInternoWithoutSubstateDTO[];
|
|
1112
|
+
codigoCalc: string;
|
|
1113
|
+
Causacion: CausacionDTO;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
declare class FacturaGeneradaDTO {
|
|
1117
|
+
fecha: Date;
|
|
1118
|
+
Usuario: string;
|
|
1119
|
+
Anio: number;
|
|
1120
|
+
Mes: number;
|
|
1121
|
+
Dia: number;
|
|
1122
|
+
Anexos: FilesDocDTO[];
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
declare class FacturacionDTO {
|
|
1126
|
+
FechaFacturaGenerada: FacturaGeneradaDTO;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
declare class NotasDTO {
|
|
1130
|
+
ID_Notas: number;
|
|
1131
|
+
Fecha: Date;
|
|
1132
|
+
Observacion: string;
|
|
1133
|
+
Usuario: UsuarioDTO;
|
|
1134
|
+
Empresa: EmpresaDTO$4;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
declare class PresupuestadoTotalObraEmpresaCuadrillaDTO {
|
|
1138
|
+
Codigo: string;
|
|
1139
|
+
Descripcion: string;
|
|
1140
|
+
TotalMOPB: number;
|
|
1141
|
+
TotalMOValor: number;
|
|
1142
|
+
TotalMATValor: number;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
declare class PresupuestadoTotalObraEmpresaDTO {
|
|
1146
|
+
RucContratista: string;
|
|
1147
|
+
RazonSocial: string;
|
|
1148
|
+
TotalMOPB: number;
|
|
1149
|
+
TotalMOValor: number;
|
|
1150
|
+
TotalMATValor: number;
|
|
1151
|
+
CierreMaterial: string;
|
|
1152
|
+
Cuadrillas: PresupuestadoTotalObraEmpresaCuadrillaDTO[];
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
declare class PresupuestadoTotalObraDTO {
|
|
1156
|
+
TotalMOPB: number;
|
|
1157
|
+
TotalMOValor: number;
|
|
1158
|
+
TotalMATValor: number;
|
|
1159
|
+
Empresas: PresupuestadoTotalObraEmpresaDTO[];
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
declare class TotalGeneralObraDTO {
|
|
1163
|
+
PresupuestadoTotalObra: PresupuestadoTotalObraDTO;
|
|
1164
|
+
ValorizadoTotalObra: PresupuestadoTotalObraDTO;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
declare class UbicacionObraDTO {
|
|
1168
|
+
Direccion: string;
|
|
1169
|
+
Localidad_Descrip: string;
|
|
1170
|
+
Coordenadas: CoordenadasDTO;
|
|
1171
|
+
Municipio: string;
|
|
1172
|
+
Zona: string;
|
|
1173
|
+
Tipo_Zona: string;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
declare class ObraENTITY {
|
|
1177
|
+
ID_incidencia: number;
|
|
1178
|
+
ID_MacroObra: number;
|
|
1179
|
+
Pais: CodigoNombreDTO;
|
|
1180
|
+
Delegacion: CodigoNombreDTO;
|
|
1181
|
+
Obra: string;
|
|
1182
|
+
OrdenTrabajo: string;
|
|
1183
|
+
Proyecto: string;
|
|
1184
|
+
Contrato: string;
|
|
1185
|
+
Origen: string;
|
|
1186
|
+
FechaRegistro: Date;
|
|
1187
|
+
FechaAprobacion: Date;
|
|
1188
|
+
Cliente: string;
|
|
1189
|
+
AreaGOM: AreaGOMDTO[];
|
|
1190
|
+
Observacion: string;
|
|
1191
|
+
ZonaAsignada: string;
|
|
1192
|
+
ContratoOT: ContratoObraOTDTO;
|
|
1193
|
+
Ubicacion: UbicacionObraDTO;
|
|
1194
|
+
Ultimo_Estado_Interno: EstadoInternoWithoutSubstateDTO;
|
|
1195
|
+
Estados_Internos: EstadoInternoWithoutSubstateDTO[];
|
|
1196
|
+
Notas: NotasDTO[];
|
|
1197
|
+
Anexos: FilesDocDTO[];
|
|
1198
|
+
Bitacora: BitacoraDTO[];
|
|
1199
|
+
Facturacion: FacturacionDTO;
|
|
1200
|
+
DetalleChile: DetalleChileDTO;
|
|
1201
|
+
TotalesGeneralObra: TotalGeneralObraDTO;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1043
1204
|
declare class HitoDTO {
|
|
1044
1205
|
Idx: number;
|
|
1045
1206
|
Estado: string;
|
|
@@ -2441,4 +2602,4 @@ declare class LiquidadaTOAENTITY {
|
|
|
2441
2602
|
Bitacora: BitacoraLiqDTO[];
|
|
2442
2603
|
}
|
|
2443
2604
|
|
|
2444
|
-
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGomDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CentroCostosENTITY, CertificacionProduccionDTO, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CorteBobinaStockAlmacenDTO, CuadrillaLiberacionPagosDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, 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, ManoObraLiberacionPagosDTO, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, OpcionSistemaENTITY, OperacionDataAdicional, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
2605
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CorteBobinaStockAlmacenDTO, CuadrillaLiberacionPagosDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraLiberacionPagosDTO, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDataAdicional, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, UbicacionObraDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -774,7 +774,7 @@ declare class MaterialesDTO {
|
|
|
774
774
|
Motivo: CodigoDescripcionDTO;
|
|
775
775
|
}
|
|
776
776
|
|
|
777
|
-
declare class DetalleChileDTO {
|
|
777
|
+
declare class DetalleChileDTO$1 {
|
|
778
778
|
Codigo: string;
|
|
779
779
|
Linea: string;
|
|
780
780
|
DirDesde: string;
|
|
@@ -853,7 +853,7 @@ declare class ValorizacionDTO {
|
|
|
853
853
|
Unidad: string;
|
|
854
854
|
MaterialesUtilizados: MaterialesDTO[];
|
|
855
855
|
MaterialesRetirados: MaterialesDTO[];
|
|
856
|
-
DetalleChile: DetalleChileDTO;
|
|
856
|
+
DetalleChile: DetalleChileDTO$1;
|
|
857
857
|
HomePass: HomePassDTO[];
|
|
858
858
|
SubManoObra: SubManoObraDTO[];
|
|
859
859
|
PrecioContrata: number;
|
|
@@ -1000,7 +1000,7 @@ declare class ValorizacionAlemaniaDTO {
|
|
|
1000
1000
|
Unidad: string;
|
|
1001
1001
|
MaterialesUtilizados: MaterialesDTO[];
|
|
1002
1002
|
MaterialesRetirados: MaterialesDTO[];
|
|
1003
|
-
DetalleChile: DetalleChileDTO;
|
|
1003
|
+
DetalleChile: DetalleChileDTO$1;
|
|
1004
1004
|
HomePass: HomePassDTO[];
|
|
1005
1005
|
SubManoObra: SubManoObraDTO[];
|
|
1006
1006
|
PrecioContrata: number;
|
|
@@ -1040,6 +1040,167 @@ declare class TrabajoAlemaniaENTITY {
|
|
|
1040
1040
|
PartesDiarios: ParteDiarioDTO[];
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
1043
|
+
declare class GOMDTO {
|
|
1044
|
+
ID_GOM: number;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
declare class AreaGOMDTO {
|
|
1048
|
+
GOMS: GOMDTO[];
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
declare class CausacionDTO {
|
|
1052
|
+
FechaCausacion: Date;
|
|
1053
|
+
FechaLiquidacion: Date;
|
|
1054
|
+
TipoLiquidacion: string;
|
|
1055
|
+
NumeroLiquidacion: string;
|
|
1056
|
+
Estado: string;
|
|
1057
|
+
TotalBaremos: number;
|
|
1058
|
+
ManoDeObra: number;
|
|
1059
|
+
Materiales: number;
|
|
1060
|
+
Total: number;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
declare class ContratoObraOTDTO {
|
|
1064
|
+
ID_ContratoOT: number;
|
|
1065
|
+
Codigo: string;
|
|
1066
|
+
Descripcion: string;
|
|
1067
|
+
Sistema: string;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
declare class HistoricoDTO {
|
|
1071
|
+
Actividad: string;
|
|
1072
|
+
Estado: string;
|
|
1073
|
+
Inicio: Date;
|
|
1074
|
+
Fin: Date;
|
|
1075
|
+
Usuario: string;
|
|
1076
|
+
Comentario: string;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
declare class EstadoInternoWithoutSubstateDTO {
|
|
1080
|
+
ID_EstadoInterno: number;
|
|
1081
|
+
Fecha: Date;
|
|
1082
|
+
Descripcion: string;
|
|
1083
|
+
Icono: string;
|
|
1084
|
+
Color: string;
|
|
1085
|
+
Orden: number;
|
|
1086
|
+
ColorFondo: string;
|
|
1087
|
+
Tipo: string;
|
|
1088
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
declare class DetalleChileDTO {
|
|
1092
|
+
codigo: string;
|
|
1093
|
+
nombre: string;
|
|
1094
|
+
contrato: string;
|
|
1095
|
+
agencia: string;
|
|
1096
|
+
numoe: string;
|
|
1097
|
+
nombreoe: string;
|
|
1098
|
+
tipooe: string;
|
|
1099
|
+
inioe: Date;
|
|
1100
|
+
finoe: Date;
|
|
1101
|
+
PE: string;
|
|
1102
|
+
central: string;
|
|
1103
|
+
cliente: string;
|
|
1104
|
+
comuna: string;
|
|
1105
|
+
nombreproyecto: string;
|
|
1106
|
+
PEP2: string;
|
|
1107
|
+
PEP1: string;
|
|
1108
|
+
CostoTotal: number;
|
|
1109
|
+
Historico: HistoricoDTO[];
|
|
1110
|
+
UltimoEstadoCliente: EstadoInternoWithoutSubstateDTO;
|
|
1111
|
+
EstadosCliente: EstadoInternoWithoutSubstateDTO[];
|
|
1112
|
+
codigoCalc: string;
|
|
1113
|
+
Causacion: CausacionDTO;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
declare class FacturaGeneradaDTO {
|
|
1117
|
+
fecha: Date;
|
|
1118
|
+
Usuario: string;
|
|
1119
|
+
Anio: number;
|
|
1120
|
+
Mes: number;
|
|
1121
|
+
Dia: number;
|
|
1122
|
+
Anexos: FilesDocDTO[];
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
declare class FacturacionDTO {
|
|
1126
|
+
FechaFacturaGenerada: FacturaGeneradaDTO;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
declare class NotasDTO {
|
|
1130
|
+
ID_Notas: number;
|
|
1131
|
+
Fecha: Date;
|
|
1132
|
+
Observacion: string;
|
|
1133
|
+
Usuario: UsuarioDTO;
|
|
1134
|
+
Empresa: EmpresaDTO$4;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
declare class PresupuestadoTotalObraEmpresaCuadrillaDTO {
|
|
1138
|
+
Codigo: string;
|
|
1139
|
+
Descripcion: string;
|
|
1140
|
+
TotalMOPB: number;
|
|
1141
|
+
TotalMOValor: number;
|
|
1142
|
+
TotalMATValor: number;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
declare class PresupuestadoTotalObraEmpresaDTO {
|
|
1146
|
+
RucContratista: string;
|
|
1147
|
+
RazonSocial: string;
|
|
1148
|
+
TotalMOPB: number;
|
|
1149
|
+
TotalMOValor: number;
|
|
1150
|
+
TotalMATValor: number;
|
|
1151
|
+
CierreMaterial: string;
|
|
1152
|
+
Cuadrillas: PresupuestadoTotalObraEmpresaCuadrillaDTO[];
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
declare class PresupuestadoTotalObraDTO {
|
|
1156
|
+
TotalMOPB: number;
|
|
1157
|
+
TotalMOValor: number;
|
|
1158
|
+
TotalMATValor: number;
|
|
1159
|
+
Empresas: PresupuestadoTotalObraEmpresaDTO[];
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
declare class TotalGeneralObraDTO {
|
|
1163
|
+
PresupuestadoTotalObra: PresupuestadoTotalObraDTO;
|
|
1164
|
+
ValorizadoTotalObra: PresupuestadoTotalObraDTO;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
declare class UbicacionObraDTO {
|
|
1168
|
+
Direccion: string;
|
|
1169
|
+
Localidad_Descrip: string;
|
|
1170
|
+
Coordenadas: CoordenadasDTO;
|
|
1171
|
+
Municipio: string;
|
|
1172
|
+
Zona: string;
|
|
1173
|
+
Tipo_Zona: string;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
declare class ObraENTITY {
|
|
1177
|
+
ID_incidencia: number;
|
|
1178
|
+
ID_MacroObra: number;
|
|
1179
|
+
Pais: CodigoNombreDTO;
|
|
1180
|
+
Delegacion: CodigoNombreDTO;
|
|
1181
|
+
Obra: string;
|
|
1182
|
+
OrdenTrabajo: string;
|
|
1183
|
+
Proyecto: string;
|
|
1184
|
+
Contrato: string;
|
|
1185
|
+
Origen: string;
|
|
1186
|
+
FechaRegistro: Date;
|
|
1187
|
+
FechaAprobacion: Date;
|
|
1188
|
+
Cliente: string;
|
|
1189
|
+
AreaGOM: AreaGOMDTO[];
|
|
1190
|
+
Observacion: string;
|
|
1191
|
+
ZonaAsignada: string;
|
|
1192
|
+
ContratoOT: ContratoObraOTDTO;
|
|
1193
|
+
Ubicacion: UbicacionObraDTO;
|
|
1194
|
+
Ultimo_Estado_Interno: EstadoInternoWithoutSubstateDTO;
|
|
1195
|
+
Estados_Internos: EstadoInternoWithoutSubstateDTO[];
|
|
1196
|
+
Notas: NotasDTO[];
|
|
1197
|
+
Anexos: FilesDocDTO[];
|
|
1198
|
+
Bitacora: BitacoraDTO[];
|
|
1199
|
+
Facturacion: FacturacionDTO;
|
|
1200
|
+
DetalleChile: DetalleChileDTO;
|
|
1201
|
+
TotalesGeneralObra: TotalGeneralObraDTO;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1043
1204
|
declare class HitoDTO {
|
|
1044
1205
|
Idx: number;
|
|
1045
1206
|
Estado: string;
|
|
@@ -2441,4 +2602,4 @@ declare class LiquidadaTOAENTITY {
|
|
|
2441
2602
|
Bitacora: BitacoraLiqDTO[];
|
|
2442
2603
|
}
|
|
2443
2604
|
|
|
2444
|
-
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGomDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CentroCostosENTITY, CertificacionProduccionDTO, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CorteBobinaStockAlmacenDTO, CuadrillaLiberacionPagosDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, 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, ManoObraLiberacionPagosDTO, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, OpcionSistemaENTITY, OperacionDataAdicional, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
2605
|
+
export { AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO, ClienteDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CorteBobinaStockAlmacenDTO, CuadrillaLiberacionPagosDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO, FaseENTITY, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IngresoAlmacenENTITY, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraLiberacionPagosDTO, MaterialAmapDTO, MaterialLogisticaDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDataAdicional, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO, UbicacionObraDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, ValidadoDTO, ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaDTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|