sigo-entities 0.0.264 → 0.0.266
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 +12 -12
- package/dist/index.d.mts +117 -1
- package/dist/index.d.ts +117 -1
- package/dist/index.js +8842 -8177
- package/dist/index.mjs +8695 -8037
- package/package.json +27 -27
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# sigo-entities
|
|
2
|
-
Desarrollo de modelos de datos SIGO
|
|
3
|
-
npm i sigo-entities@latest
|
|
4
|
-
## Test
|
|
5
|
-
# Iniciar sesión
|
|
6
|
-
npm login
|
|
7
|
-
|
|
8
|
-
# Cerrar sesión
|
|
9
|
-
npm logout
|
|
10
|
-
|
|
11
|
-
# Verificar usuario
|
|
12
|
-
npm whoami
|
|
1
|
+
# sigo-entities
|
|
2
|
+
Desarrollo de modelos de datos SIGO
|
|
3
|
+
npm i sigo-entities@latest
|
|
4
|
+
## Test
|
|
5
|
+
# Iniciar sesión
|
|
6
|
+
npm login
|
|
7
|
+
|
|
8
|
+
# Cerrar sesión
|
|
9
|
+
npm logout
|
|
10
|
+
|
|
11
|
+
# Verificar usuario
|
|
12
|
+
npm whoami
|
package/dist/index.d.mts
CHANGED
|
@@ -457,6 +457,20 @@ declare class PagosECDTO {
|
|
|
457
457
|
nroFactura: string;
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
+
declare class NodoDocDTO {
|
|
461
|
+
Titulo: string;
|
|
462
|
+
Codigo: string;
|
|
463
|
+
Descripcion: string;
|
|
464
|
+
Files: FilesDocDTO[];
|
|
465
|
+
Extension: string[];
|
|
466
|
+
Size: SizeDTO;
|
|
467
|
+
Requerido: boolean;
|
|
468
|
+
CantidadMin: number;
|
|
469
|
+
CantidadMax: number;
|
|
470
|
+
Children: NodoDocDTO[];
|
|
471
|
+
Estado: EstadoDTO;
|
|
472
|
+
}
|
|
473
|
+
|
|
460
474
|
declare class MailStructureENTITY {
|
|
461
475
|
ID_MailStructure: number;
|
|
462
476
|
Codigo: string;
|
|
@@ -2150,6 +2164,108 @@ declare class CambioEstadoFacturadoRequest {
|
|
|
2150
2164
|
CambiosEstadosFase: CambiosEstadosFaseLiberacionPagosDTO;
|
|
2151
2165
|
}
|
|
2152
2166
|
|
|
2167
|
+
declare class ProdCursoBaremoFasesUltimoEstadoInternoDTO {
|
|
2168
|
+
IsDebug: boolean;
|
|
2169
|
+
ID_EstadoInterno: number;
|
|
2170
|
+
ID_EstadoInternoPadre: number;
|
|
2171
|
+
Estado: EstadoDTO;
|
|
2172
|
+
Fecha: Date;
|
|
2173
|
+
Descripcion: string;
|
|
2174
|
+
Icono: string;
|
|
2175
|
+
Color: string;
|
|
2176
|
+
Orden: string;
|
|
2177
|
+
ColorFondo: string;
|
|
2178
|
+
Tipo: string;
|
|
2179
|
+
Observacion: string;
|
|
2180
|
+
Sistema: string;
|
|
2181
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
2182
|
+
Anexos: any[];
|
|
2183
|
+
Pais: CodigoNombreDTO;
|
|
2184
|
+
Bitacora: any[];
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
declare class ProdCursoBaremoFasesUltimaFaseDTO {
|
|
2188
|
+
ID_Fase: number;
|
|
2189
|
+
TipoFase: number;
|
|
2190
|
+
Descripcion: string;
|
|
2191
|
+
Porcentaje: number;
|
|
2192
|
+
UsuarioCambio: UsuarioDTO;
|
|
2193
|
+
FechaCambio: Date;
|
|
2194
|
+
Observacion: string;
|
|
2195
|
+
Anexos: any[];
|
|
2196
|
+
NroDocumento: string;
|
|
2197
|
+
UsuarioDocumento: UsuarioDTO;
|
|
2198
|
+
FechaDocumento: Date;
|
|
2199
|
+
UltimoPeriodo: PeriodoDTO$4;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
declare class ProdCursoBaremoFasesPeriodoDTO {
|
|
2203
|
+
ID_Periodo: number;
|
|
2204
|
+
FechaInicio: Date;
|
|
2205
|
+
FechaFin: Date;
|
|
2206
|
+
FechaMaxima: Date;
|
|
2207
|
+
Anio: number;
|
|
2208
|
+
Mes: number;
|
|
2209
|
+
Dia: number;
|
|
2210
|
+
Codigo: string;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
declare class ProdCursoBaremoFasesCuadrillaDTO {
|
|
2214
|
+
Codigo: string;
|
|
2215
|
+
Descripcion: string;
|
|
2216
|
+
Identificacion: string;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
declare class ProdCursoBaremoFasesManoObraDTO {
|
|
2220
|
+
Codigo: string;
|
|
2221
|
+
Nombre: string;
|
|
2222
|
+
UnidadMedida: string;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
declare class RptProduccionCurso_Baremos_FasesENTITY {
|
|
2226
|
+
foreignKey: string;
|
|
2227
|
+
ID_incidencia: number;
|
|
2228
|
+
ID_MacroObra: number;
|
|
2229
|
+
ID_Trabajo: number;
|
|
2230
|
+
ID_Valorizacion: number;
|
|
2231
|
+
Obra: string;
|
|
2232
|
+
Proyecto: string;
|
|
2233
|
+
Cluster: string;
|
|
2234
|
+
Gemainde: string;
|
|
2235
|
+
WorkProject: string;
|
|
2236
|
+
AddressID: string;
|
|
2237
|
+
Tipo: string;
|
|
2238
|
+
Contrato: string;
|
|
2239
|
+
ID_GOM: number;
|
|
2240
|
+
ZonaAsignada: string;
|
|
2241
|
+
Agencia: string;
|
|
2242
|
+
Cuadrilla: ProdCursoBaremoFasesCuadrillaDTO;
|
|
2243
|
+
Empresa: EmpresaDTO$4;
|
|
2244
|
+
Especialidad: CodigoNombreDTO;
|
|
2245
|
+
Actividad: CodigoNombreDTO;
|
|
2246
|
+
ManoObra: ProdCursoBaremoFasesManoObraDTO;
|
|
2247
|
+
UnidadObra: ProdCursoBaremoFasesManoObraDTO;
|
|
2248
|
+
LineaCodigoCub: string;
|
|
2249
|
+
ID: string;
|
|
2250
|
+
Ultima_Fase: ProdCursoBaremoFasesUltimaFaseDTO;
|
|
2251
|
+
Ultimo_Estado_Interno: ProdCursoBaremoFasesUltimoEstadoInternoDTO;
|
|
2252
|
+
CoeficienteMaterial: number;
|
|
2253
|
+
Cantidad: number;
|
|
2254
|
+
PuntoBaremo: number;
|
|
2255
|
+
Precio: number;
|
|
2256
|
+
PrecioContratista: number;
|
|
2257
|
+
Simbolo: string;
|
|
2258
|
+
Moneda: string;
|
|
2259
|
+
Decimales: number;
|
|
2260
|
+
isContratista: boolean;
|
|
2261
|
+
PB_Total: number;
|
|
2262
|
+
MO_Total: number;
|
|
2263
|
+
EstadoFase: string;
|
|
2264
|
+
FechaDocumento: Date;
|
|
2265
|
+
Periodo: ProdCursoBaremoFasesPeriodoDTO;
|
|
2266
|
+
CambiosEstadosFase: any[];
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2153
2269
|
declare class ConsumoMaterialENTITY {
|
|
2154
2270
|
ID_ConsumoMaterial: number;
|
|
2155
2271
|
ID_Recurso: string;
|
|
@@ -3488,4 +3604,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
3488
3604
|
Coordenadas: IDataSheetCoordenadas[];
|
|
3489
3605
|
}
|
|
3490
3606
|
|
|
3491
|
-
export { AddressListENTITY, AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialLogisticaDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, convertStringsToDates, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
3607
|
+
export { AddressListENTITY, AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialLogisticaDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, convertStringsToDates, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -457,6 +457,20 @@ declare class PagosECDTO {
|
|
|
457
457
|
nroFactura: string;
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
+
declare class NodoDocDTO {
|
|
461
|
+
Titulo: string;
|
|
462
|
+
Codigo: string;
|
|
463
|
+
Descripcion: string;
|
|
464
|
+
Files: FilesDocDTO[];
|
|
465
|
+
Extension: string[];
|
|
466
|
+
Size: SizeDTO;
|
|
467
|
+
Requerido: boolean;
|
|
468
|
+
CantidadMin: number;
|
|
469
|
+
CantidadMax: number;
|
|
470
|
+
Children: NodoDocDTO[];
|
|
471
|
+
Estado: EstadoDTO;
|
|
472
|
+
}
|
|
473
|
+
|
|
460
474
|
declare class MailStructureENTITY {
|
|
461
475
|
ID_MailStructure: number;
|
|
462
476
|
Codigo: string;
|
|
@@ -2150,6 +2164,108 @@ declare class CambioEstadoFacturadoRequest {
|
|
|
2150
2164
|
CambiosEstadosFase: CambiosEstadosFaseLiberacionPagosDTO;
|
|
2151
2165
|
}
|
|
2152
2166
|
|
|
2167
|
+
declare class ProdCursoBaremoFasesUltimoEstadoInternoDTO {
|
|
2168
|
+
IsDebug: boolean;
|
|
2169
|
+
ID_EstadoInterno: number;
|
|
2170
|
+
ID_EstadoInternoPadre: number;
|
|
2171
|
+
Estado: EstadoDTO;
|
|
2172
|
+
Fecha: Date;
|
|
2173
|
+
Descripcion: string;
|
|
2174
|
+
Icono: string;
|
|
2175
|
+
Color: string;
|
|
2176
|
+
Orden: string;
|
|
2177
|
+
ColorFondo: string;
|
|
2178
|
+
Tipo: string;
|
|
2179
|
+
Observacion: string;
|
|
2180
|
+
Sistema: string;
|
|
2181
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
2182
|
+
Anexos: any[];
|
|
2183
|
+
Pais: CodigoNombreDTO;
|
|
2184
|
+
Bitacora: any[];
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
declare class ProdCursoBaremoFasesUltimaFaseDTO {
|
|
2188
|
+
ID_Fase: number;
|
|
2189
|
+
TipoFase: number;
|
|
2190
|
+
Descripcion: string;
|
|
2191
|
+
Porcentaje: number;
|
|
2192
|
+
UsuarioCambio: UsuarioDTO;
|
|
2193
|
+
FechaCambio: Date;
|
|
2194
|
+
Observacion: string;
|
|
2195
|
+
Anexos: any[];
|
|
2196
|
+
NroDocumento: string;
|
|
2197
|
+
UsuarioDocumento: UsuarioDTO;
|
|
2198
|
+
FechaDocumento: Date;
|
|
2199
|
+
UltimoPeriodo: PeriodoDTO$4;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
declare class ProdCursoBaremoFasesPeriodoDTO {
|
|
2203
|
+
ID_Periodo: number;
|
|
2204
|
+
FechaInicio: Date;
|
|
2205
|
+
FechaFin: Date;
|
|
2206
|
+
FechaMaxima: Date;
|
|
2207
|
+
Anio: number;
|
|
2208
|
+
Mes: number;
|
|
2209
|
+
Dia: number;
|
|
2210
|
+
Codigo: string;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
declare class ProdCursoBaremoFasesCuadrillaDTO {
|
|
2214
|
+
Codigo: string;
|
|
2215
|
+
Descripcion: string;
|
|
2216
|
+
Identificacion: string;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
declare class ProdCursoBaremoFasesManoObraDTO {
|
|
2220
|
+
Codigo: string;
|
|
2221
|
+
Nombre: string;
|
|
2222
|
+
UnidadMedida: string;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
declare class RptProduccionCurso_Baremos_FasesENTITY {
|
|
2226
|
+
foreignKey: string;
|
|
2227
|
+
ID_incidencia: number;
|
|
2228
|
+
ID_MacroObra: number;
|
|
2229
|
+
ID_Trabajo: number;
|
|
2230
|
+
ID_Valorizacion: number;
|
|
2231
|
+
Obra: string;
|
|
2232
|
+
Proyecto: string;
|
|
2233
|
+
Cluster: string;
|
|
2234
|
+
Gemainde: string;
|
|
2235
|
+
WorkProject: string;
|
|
2236
|
+
AddressID: string;
|
|
2237
|
+
Tipo: string;
|
|
2238
|
+
Contrato: string;
|
|
2239
|
+
ID_GOM: number;
|
|
2240
|
+
ZonaAsignada: string;
|
|
2241
|
+
Agencia: string;
|
|
2242
|
+
Cuadrilla: ProdCursoBaremoFasesCuadrillaDTO;
|
|
2243
|
+
Empresa: EmpresaDTO$4;
|
|
2244
|
+
Especialidad: CodigoNombreDTO;
|
|
2245
|
+
Actividad: CodigoNombreDTO;
|
|
2246
|
+
ManoObra: ProdCursoBaremoFasesManoObraDTO;
|
|
2247
|
+
UnidadObra: ProdCursoBaremoFasesManoObraDTO;
|
|
2248
|
+
LineaCodigoCub: string;
|
|
2249
|
+
ID: string;
|
|
2250
|
+
Ultima_Fase: ProdCursoBaremoFasesUltimaFaseDTO;
|
|
2251
|
+
Ultimo_Estado_Interno: ProdCursoBaremoFasesUltimoEstadoInternoDTO;
|
|
2252
|
+
CoeficienteMaterial: number;
|
|
2253
|
+
Cantidad: number;
|
|
2254
|
+
PuntoBaremo: number;
|
|
2255
|
+
Precio: number;
|
|
2256
|
+
PrecioContratista: number;
|
|
2257
|
+
Simbolo: string;
|
|
2258
|
+
Moneda: string;
|
|
2259
|
+
Decimales: number;
|
|
2260
|
+
isContratista: boolean;
|
|
2261
|
+
PB_Total: number;
|
|
2262
|
+
MO_Total: number;
|
|
2263
|
+
EstadoFase: string;
|
|
2264
|
+
FechaDocumento: Date;
|
|
2265
|
+
Periodo: ProdCursoBaremoFasesPeriodoDTO;
|
|
2266
|
+
CambiosEstadosFase: any[];
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2153
2269
|
declare class ConsumoMaterialENTITY {
|
|
2154
2270
|
ID_ConsumoMaterial: number;
|
|
2155
2271
|
ID_Recurso: string;
|
|
@@ -3488,4 +3604,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
3488
3604
|
Coordenadas: IDataSheetCoordenadas[];
|
|
3489
3605
|
}
|
|
3490
3606
|
|
|
3491
|
-
export { AddressListENTITY, AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialLogisticaDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, convertStringsToDates, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|
|
3607
|
+
export { AddressListENTITY, AgenciaENTITY, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, ContratoDTO, ContratoOTDTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CumplimientoDTO, DataAdicionalDTO, DataCatalogoItemDTO, DatoUsuarioTipoOpcionDto, DatosAreaPersonalDTO, DatosCatalogoMODTO, DatosGIADTO, DatosGeneralesDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosManoObraGlobalDTO, DatosManoObraGlobalDetalleChileDTO, DatosPrecioEspecialidadDTO, DatosPrecioMaterialDTO, DatosPrecioMaterialDTO_Old, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTrabajoUsuarioDTO, DatosTransportistaChileDTO, DatosTransportistaDTO, DatosUnidadObraMaterialDTO, DelegacionDTO, DelegacionZonalesDTO, DeleteBaremoFaseDTO, DestinatarioDTO, DetalleChileObraDTO, DetalleChileValorizacionManoObraDTO, DetalleChileValorizacionManoObraRegularizacionDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EquipoLogisticaDTO, EquiposAIDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO$2 as EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, EstadoInternoENTITY, EstadoInternoWithoutSubstateDTO, type EstadoLiq, EstadoLiqDTO, EstadoNotificacion, type EstadoVal, Estado_Model_MO, FacturaGeneradaDTO, FacturacionDTO, FamiliaItemDTO, FaseDTO$1 as FaseDTO, FaseENTITY, FechaDTO, FechaVigenciaBaremosDTO, FechaVigenciaPCMODTO, FechasDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO$1 as FotosSSTDTO, GOMDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialAmapDTO, MaterialLogisticaDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PreciosVigentesDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ResultadoDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoAlmacenDTO, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UpdateUltimaFaseFacturacionDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioENTITY, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, UsuarioRegistrarDTO, UsuariosAutoinventarioENTITY, ValidadoDTO, ValorizacionAlemaniaDTO$1 as ValorizacionAlemaniaDTO, ValorizacionManoObraDTO, ValorizacionManoObraRegularizacionDTO, ValorizadaTOAENTITY, VarianteDTO, VigenciaBaremosDTO, VigenciaDTO, VigenciaPCMODTO, WBEDTO$1 as WBEDTO, ZonaTrabajoDTO, ZonalesDTO, convertStringsToDates, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
|