sigo-entities 0.0.285 → 0.0.286
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 +203 -167
- package/dist/index.d.ts +203 -167
- package/dist/index.js +12681 -12519
- package/dist/index.mjs +12604 -12449
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -537,6 +537,13 @@ declare class DatosReferenciaDTO {
|
|
|
537
537
|
Circuito: string;
|
|
538
538
|
}
|
|
539
539
|
|
|
540
|
+
declare class ActaFinalCubicacionSharedDTO {
|
|
541
|
+
DescripcionMO: string;
|
|
542
|
+
BaremoUnitario: number;
|
|
543
|
+
CantidadHP: number;
|
|
544
|
+
Valor: number;
|
|
545
|
+
}
|
|
546
|
+
|
|
540
547
|
declare class MailStructureENTITY {
|
|
541
548
|
ID_MailStructure: number;
|
|
542
549
|
Codigo: string;
|
|
@@ -752,6 +759,14 @@ declare class TipoClaveENTITY {
|
|
|
752
759
|
Estado: EstadoDTO;
|
|
753
760
|
}
|
|
754
761
|
|
|
762
|
+
declare class ReservaMaterialBaseENTITY {
|
|
763
|
+
ID_Reserva: number;
|
|
764
|
+
ID_GOM: number;
|
|
765
|
+
GOM: string;
|
|
766
|
+
Item: any[];
|
|
767
|
+
Fecha: Date;
|
|
768
|
+
}
|
|
769
|
+
|
|
755
770
|
declare class DatosItemDTO {
|
|
756
771
|
Tipo: string;
|
|
757
772
|
Valor: number;
|
|
@@ -862,16 +877,12 @@ declare class ReservaENTITY_old {
|
|
|
862
877
|
DatosReferencia: DatosReferenciaDTO[];
|
|
863
878
|
Bitacora: BitacoraDTO[];
|
|
864
879
|
}
|
|
865
|
-
declare class ReservaENTITY {
|
|
866
|
-
ID_Reserva: number;
|
|
867
|
-
ID_GOM: string;
|
|
868
|
-
GOM: string;
|
|
880
|
+
declare class ReservaENTITY extends ReservaMaterialBaseENTITY {
|
|
869
881
|
Pais: CodigoNombreDTO;
|
|
870
882
|
Delegacion: CodigoNombreDTO;
|
|
871
883
|
Ultima_Asignacion: AsignacionGomDTO;
|
|
872
884
|
Asignaciones: AsignacionGomDTO[];
|
|
873
885
|
Item: ItemDTO[];
|
|
874
|
-
Fecha: Date;
|
|
875
886
|
Movimiento: string;
|
|
876
887
|
Almacen: AlmacenDTO;
|
|
877
888
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -881,6 +892,58 @@ declare class ReservaENTITY {
|
|
|
881
892
|
Bitacora: BitacoraDTO[];
|
|
882
893
|
}
|
|
883
894
|
|
|
895
|
+
declare class RMItemDatosCatalogoItemDTO {
|
|
896
|
+
DatosPrecioMaterial: RMItemDatosCatalogoItemDatosPrecioMaterialDTO;
|
|
897
|
+
}
|
|
898
|
+
declare class RMItemDatosCatalogoItemDatosPrecioMaterialDTO {
|
|
899
|
+
Precio: number;
|
|
900
|
+
Moneda: string;
|
|
901
|
+
Simbolo: string;
|
|
902
|
+
Decimales: number;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
declare class ReservaMaterialItemDTO {
|
|
906
|
+
ID_Item: number;
|
|
907
|
+
Codigo: string;
|
|
908
|
+
Nombre: string;
|
|
909
|
+
Descripcion: string;
|
|
910
|
+
Variante: VarianteDTO;
|
|
911
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
912
|
+
Ind_SB: string;
|
|
913
|
+
Lote: string;
|
|
914
|
+
Cantidad: number;
|
|
915
|
+
CantidadDespacho: number;
|
|
916
|
+
CantidadUsados: number;
|
|
917
|
+
CantidadDevolucion: number;
|
|
918
|
+
CantidadAprobada: number;
|
|
919
|
+
POS: number;
|
|
920
|
+
Valor: number;
|
|
921
|
+
WBE: WBEDTO$1;
|
|
922
|
+
Total: number;
|
|
923
|
+
Moneda: string;
|
|
924
|
+
Simbolo: string;
|
|
925
|
+
Decimales: number;
|
|
926
|
+
Cantidades: any[];
|
|
927
|
+
DatosCatalogoItem: RMItemDatosCatalogoItemDTO;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
declare class ReservaMaterialENTITY extends ReservaMaterialBaseENTITY {
|
|
931
|
+
Item: ReservaMaterialItemDTO[];
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
declare class ReservaMaterialCodigoRazonSocialDTO {
|
|
935
|
+
Codigo: string;
|
|
936
|
+
RazonSocial: string;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
declare class ReservaManoObraBaseENTITY {
|
|
940
|
+
ID_ManoObra: number;
|
|
941
|
+
ID_GOM: string;
|
|
942
|
+
GOM: string;
|
|
943
|
+
Valorizacion: any;
|
|
944
|
+
Fecha: Date;
|
|
945
|
+
}
|
|
946
|
+
|
|
884
947
|
declare class WBEDTO {
|
|
885
948
|
ID_WBE: number;
|
|
886
949
|
CodigoWBE: string;
|
|
@@ -943,25 +1006,91 @@ declare class DatosCatalogoMODTO {
|
|
|
943
1006
|
DatosUnidadObraMaterial: DatosUnidadObraMaterialDTO;
|
|
944
1007
|
}
|
|
945
1008
|
|
|
946
|
-
declare class ReservaManoObraENTITY {
|
|
947
|
-
ID_ManoObra: number;
|
|
948
|
-
ID_GOM: string;
|
|
949
|
-
GOM: string;
|
|
1009
|
+
declare class ReservaManoObraENTITY extends ReservaManoObraBaseENTITY {
|
|
950
1010
|
Pais: CodigoNombreDTO;
|
|
951
1011
|
Delegacion: CodigoNombreDTO;
|
|
952
1012
|
Ultima_Asignacion: AsignacionGomDTO;
|
|
953
1013
|
Asignaciones: AsignacionGomDTO[];
|
|
954
|
-
Valorizacion: ValorizacionManoObraDTO[];
|
|
955
|
-
Fecha: Date;
|
|
956
1014
|
Movimiento: string;
|
|
957
1015
|
Almacen: AlmacenDTO;
|
|
958
1016
|
Zona: string;
|
|
959
1017
|
DatosReferencia: DatosReferenciaDTO[];
|
|
960
1018
|
Bitacora: BitacoraDTO[];
|
|
1019
|
+
Valorizacion: ValorizacionManoObraDTO[];
|
|
961
1020
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
962
1021
|
Estados_Internos: EstadoInternoDTO[];
|
|
963
1022
|
}
|
|
964
1023
|
|
|
1024
|
+
declare class ReservaMOWBEDTO {
|
|
1025
|
+
ID_WBE: number;
|
|
1026
|
+
CodigoWBE: string;
|
|
1027
|
+
DescripcionWBE: string;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
declare class ReservaMODetalleChileValorizacionManoObraDTO {
|
|
1031
|
+
Codigo: string;
|
|
1032
|
+
Linea: string;
|
|
1033
|
+
DirDesde: string;
|
|
1034
|
+
AltDesde: string;
|
|
1035
|
+
DirHasta: string;
|
|
1036
|
+
AltHasta: string;
|
|
1037
|
+
Plano: string;
|
|
1038
|
+
Especialidad: CodigoNombreDTO;
|
|
1039
|
+
Actividad: CodigoNombreDTO;
|
|
1040
|
+
Clave: CodigoNombreDTO;
|
|
1041
|
+
Tarea: string;
|
|
1042
|
+
ManoObra: CodigoNombreUMDTO;
|
|
1043
|
+
UnidadObra: CodigoNombreUMDTO;
|
|
1044
|
+
HomePass: CodigoNombreDTO;
|
|
1045
|
+
LineaCodigoCub: string;
|
|
1046
|
+
CodigoCub: string;
|
|
1047
|
+
CanMOCub: number;
|
|
1048
|
+
CanMOInf: number;
|
|
1049
|
+
CanMOApr: number;
|
|
1050
|
+
CanUOCub: number;
|
|
1051
|
+
CanUOInf: number;
|
|
1052
|
+
TotalUO: number;
|
|
1053
|
+
CanUOApr: number;
|
|
1054
|
+
Origen: number;
|
|
1055
|
+
CodigoBarra: string;
|
|
1056
|
+
PuntoBaremo: number;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
declare class ReservaMODatosCatalogoMODTO {
|
|
1060
|
+
DatosManoObraGlobal: DatosManoObraGlobalDTO;
|
|
1061
|
+
DatosPrecioEspecialidad: DatosPrecioEspecialidadDTO;
|
|
1062
|
+
DatosUnidadObraMaterial: DatosUnidadObraMaterialDTO;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
declare class ReservaMOValorizacionManoObraDTO {
|
|
1066
|
+
Amap: number;
|
|
1067
|
+
Cantidad: number;
|
|
1068
|
+
CantidadUsado: number;
|
|
1069
|
+
CantidadTransito: number;
|
|
1070
|
+
CantidadAprobada: number;
|
|
1071
|
+
Codigo: string;
|
|
1072
|
+
Descripcion: string;
|
|
1073
|
+
Estado: number;
|
|
1074
|
+
Precio: number;
|
|
1075
|
+
Total: number;
|
|
1076
|
+
Unidad: string;
|
|
1077
|
+
Moneda: string;
|
|
1078
|
+
Simbolo: string;
|
|
1079
|
+
Decimales: number;
|
|
1080
|
+
WBE: ReservaMOWBEDTO;
|
|
1081
|
+
DetalleChile: ReservaMODetalleChileValorizacionManoObraDTO;
|
|
1082
|
+
CantidadUO: number;
|
|
1083
|
+
CantidadUOUsado: number;
|
|
1084
|
+
CantidadUOTransito: number;
|
|
1085
|
+
CantidadUOAprobada: number;
|
|
1086
|
+
Cantidades: never[];
|
|
1087
|
+
DatosCatalogoMO: ReservaMODatosCatalogoMODTO;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
declare class ReservaManoObraChileENTITY extends ReservaManoObraBaseENTITY {
|
|
1091
|
+
Valorizacion: ReservaMOValorizacionManoObraDTO[];
|
|
1092
|
+
}
|
|
1093
|
+
|
|
965
1094
|
declare class EmpresaProduccionDTO {
|
|
966
1095
|
CodigoEmpresa: string;
|
|
967
1096
|
DescripcionEmpresa: string;
|
|
@@ -1015,12 +1144,6 @@ declare class ReservaManoObraRegularizacionENTITY {
|
|
|
1015
1144
|
Bitacora: BitacoraDTO[];
|
|
1016
1145
|
}
|
|
1017
1146
|
|
|
1018
|
-
declare class ContrataDTO$1 {
|
|
1019
|
-
FechaRegistro: Date;
|
|
1020
|
-
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
1021
|
-
Estados_Internos: EstadoInternoDTO[];
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
1147
|
declare class PeriodoDTO$4 {
|
|
1025
1148
|
ID_Periodo: number;
|
|
1026
1149
|
Codigo: string;
|
|
@@ -1035,6 +1158,7 @@ declare class CertificacionProduccionDTO$1 {
|
|
|
1035
1158
|
Mes: number;
|
|
1036
1159
|
Anio: number;
|
|
1037
1160
|
UltimoPeriodo: PeriodoDTO$4;
|
|
1161
|
+
Periodos: PeriodoDTO$4[];
|
|
1038
1162
|
UsuarioEdicion: UsuarioEdicionDTO;
|
|
1039
1163
|
FechaRegistro: Date;
|
|
1040
1164
|
}
|
|
@@ -1113,7 +1237,6 @@ declare class ValorizacionDTO {
|
|
|
1113
1237
|
CantidadUO: number;
|
|
1114
1238
|
Codigo: string;
|
|
1115
1239
|
Descripcion: string;
|
|
1116
|
-
Contrata: ContrataDTO$1;
|
|
1117
1240
|
Certificacion: CertificacionProduccionDTO$1;
|
|
1118
1241
|
Produccion: CertificacionProduccionDTO$1;
|
|
1119
1242
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -1236,6 +1359,12 @@ declare class TrabajoENTITY {
|
|
|
1236
1359
|
PartesDiarios: ParteDiarioDTO$1[];
|
|
1237
1360
|
}
|
|
1238
1361
|
|
|
1362
|
+
declare class ContrataDTO$1 {
|
|
1363
|
+
FechaRegistro: Date;
|
|
1364
|
+
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
1365
|
+
Estados_Internos: EstadoInternoDTO[];
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1239
1368
|
declare class FaseDTO$1 {
|
|
1240
1369
|
ID_Fase: number;
|
|
1241
1370
|
TipoFase: number;
|
|
@@ -1603,7 +1732,7 @@ declare class EstadoInternoWithoutSubstateDTO {
|
|
|
1603
1732
|
Descripcion: string;
|
|
1604
1733
|
Icono: string;
|
|
1605
1734
|
Color: string;
|
|
1606
|
-
Orden:
|
|
1735
|
+
Orden: number;
|
|
1607
1736
|
ColorFondo: string;
|
|
1608
1737
|
Tipo: string;
|
|
1609
1738
|
UsuarioEdicion: UsuarioEdicionDTO;
|
|
@@ -1620,12 +1749,18 @@ declare class DetalleChileObraDTO {
|
|
|
1620
1749
|
inioe: Date;
|
|
1621
1750
|
finoe: Date;
|
|
1622
1751
|
PE: string;
|
|
1752
|
+
ITOCTC: string;
|
|
1623
1753
|
central: string;
|
|
1624
1754
|
cliente: string;
|
|
1755
|
+
Direccion: string;
|
|
1625
1756
|
comuna: string;
|
|
1626
1757
|
nombreproyecto: string;
|
|
1758
|
+
ito: string;
|
|
1759
|
+
red: string;
|
|
1627
1760
|
PEP2: string;
|
|
1628
1761
|
PEP1: string;
|
|
1762
|
+
GESTOR: string;
|
|
1763
|
+
ActaFinal: ActaFinalCubicacionSharedDTO;
|
|
1629
1764
|
CostoTotal: number;
|
|
1630
1765
|
Historico: HistoricoDTO[];
|
|
1631
1766
|
UltimoEstadoCliente: EstadoInternoWithoutSubstateDTO;
|
|
@@ -2157,50 +2292,9 @@ declare class CubicajeENTITY {
|
|
|
2157
2292
|
Actividad: string;
|
|
2158
2293
|
}
|
|
2159
2294
|
|
|
2160
|
-
declare class
|
|
2161
|
-
Precio: number;
|
|
2162
|
-
Moneda: string;
|
|
2163
|
-
Simbolo: string;
|
|
2164
|
-
Decimales: number;
|
|
2165
|
-
}
|
|
2166
|
-
|
|
2167
|
-
declare class GOM_DatosMateriales_DatosCatalogoItem {
|
|
2168
|
-
DatosPrecioMaterial: GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial;
|
|
2169
|
-
}
|
|
2170
|
-
|
|
2171
|
-
declare class GOMDatosMaterialesVarianteDTO {
|
|
2172
|
-
ID_Variante: number;
|
|
2173
|
-
Descripcion: string;
|
|
2174
|
-
}
|
|
2175
|
-
|
|
2176
|
-
declare class GOMEmpresaDTO {
|
|
2177
|
-
Codigo: string;
|
|
2178
|
-
RazonSocial: string;
|
|
2179
|
-
}
|
|
2180
|
-
|
|
2181
|
-
declare class GOMDatosMaterialesDTO {
|
|
2182
|
-
ID_Item: number;
|
|
2183
|
-
Empresa: GOMEmpresaDTO;
|
|
2184
|
-
Codigo: string;
|
|
2185
|
-
Nombre: string;
|
|
2186
|
-
Descripcion: string;
|
|
2187
|
-
Variante: GOMDatosMaterialesVarianteDTO;
|
|
2188
|
-
UnidadMedida: UnidadMedidaDTO$2;
|
|
2189
|
-
Ind_SB: string;
|
|
2190
|
-
Lote: string;
|
|
2295
|
+
declare class GomDatosManoObraCantidadDTO {
|
|
2191
2296
|
Cantidad: number;
|
|
2192
|
-
|
|
2193
|
-
CantidadUsados: number;
|
|
2194
|
-
CantidadDevolucion: number;
|
|
2195
|
-
CantidadAprobada: number;
|
|
2196
|
-
POS: number;
|
|
2197
|
-
Valor: number;
|
|
2198
|
-
Total: number;
|
|
2199
|
-
Moneda: string;
|
|
2200
|
-
Simbolo: string;
|
|
2201
|
-
Decimales: number;
|
|
2202
|
-
Cantidades: any[];
|
|
2203
|
-
DatosCatalogoItem: GOM_DatosMateriales_DatosCatalogoItem;
|
|
2297
|
+
Fecha: Date;
|
|
2204
2298
|
}
|
|
2205
2299
|
|
|
2206
2300
|
declare class GOMDatosManoObraDetalleChileDTO {
|
|
@@ -2257,117 +2351,38 @@ declare class GOMDatosManoObraDTO {
|
|
|
2257
2351
|
CantidadUOUsado: number;
|
|
2258
2352
|
CantidadUOTransito: number;
|
|
2259
2353
|
CantidadUOAprobada: number;
|
|
2260
|
-
Cantidades:
|
|
2354
|
+
Cantidades: GomDatosManoObraCantidadDTO[];
|
|
2261
2355
|
DatosCatalogoMO: GOMDatosManoObraDatosCatalogoMODTO;
|
|
2262
2356
|
}
|
|
2263
2357
|
|
|
2264
|
-
declare class
|
|
2265
|
-
ID_GOM: number;
|
|
2266
|
-
GOM: string;
|
|
2267
|
-
ID_incidencia: number;
|
|
2268
|
-
AreaGOM: string;
|
|
2269
|
-
ZonaAsignada: string;
|
|
2270
|
-
DatosMateriales: GOMDatosMaterialesDTO[];
|
|
2271
|
-
DatosManoObra: GOMDatosManoObraDTO[];
|
|
2272
|
-
Fecha: Date;
|
|
2273
|
-
Puntos: any[];
|
|
2274
|
-
DatosPuntos: any[];
|
|
2275
|
-
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
2276
|
-
Novedades: any[];
|
|
2277
|
-
Anexos: any[];
|
|
2278
|
-
Estados_Internos: EstadoInternoDTO[];
|
|
2279
|
-
}
|
|
2280
|
-
|
|
2281
|
-
declare class ReservaMOWBEDTO {
|
|
2282
|
-
ID_WBE: number;
|
|
2283
|
-
CodigoWBE: string;
|
|
2284
|
-
DescripcionWBE: string;
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
|
-
declare class ReservaMODetalleChileValorizacionManoObraDTO {
|
|
2288
|
-
Codigo: string;
|
|
2289
|
-
Linea: string;
|
|
2290
|
-
DirDesde: string;
|
|
2291
|
-
AltDesde: string;
|
|
2292
|
-
DirHasta: string;
|
|
2293
|
-
AltHasta: string;
|
|
2294
|
-
Plano: string;
|
|
2295
|
-
Especialidad: CodigoNombreDTO;
|
|
2296
|
-
Actividad: CodigoNombreDTO;
|
|
2297
|
-
Clave: CodigoNombreDTO;
|
|
2298
|
-
Tarea: string;
|
|
2299
|
-
ManoObra: CodigoNombreUMDTO;
|
|
2300
|
-
UnidadObra: CodigoNombreUMDTO;
|
|
2301
|
-
HomePass: CodigoNombreDTO;
|
|
2302
|
-
LineaCodigoCub: string;
|
|
2303
|
-
CodigoCub: string;
|
|
2304
|
-
CanMOCub: number;
|
|
2305
|
-
CanMOInf: number;
|
|
2306
|
-
CanMOApr: number;
|
|
2307
|
-
CanUOCub: number;
|
|
2308
|
-
CanUOInf: number;
|
|
2309
|
-
TotalUO: number;
|
|
2310
|
-
CanUOApr: number;
|
|
2311
|
-
Origen: number;
|
|
2312
|
-
CodigoBarra: string;
|
|
2313
|
-
PuntoBaremo: number;
|
|
2314
|
-
}
|
|
2315
|
-
|
|
2316
|
-
declare class ReservaMODatosCatalogoMODTO {
|
|
2317
|
-
DatosManoObraGlobal: DatosManoObraGlobalDTO;
|
|
2318
|
-
DatosPrecioEspecialidad: DatosPrecioEspecialidadDTO;
|
|
2319
|
-
DatosUnidadObraMaterial: DatosUnidadObraMaterialDTO;
|
|
2320
|
-
}
|
|
2321
|
-
|
|
2322
|
-
declare class ReservaMOValorizacionManoObraDTO {
|
|
2323
|
-
Amap: number;
|
|
2324
|
-
Cantidad: number;
|
|
2325
|
-
CantidadUsado: number;
|
|
2326
|
-
CantidadTransito: number;
|
|
2327
|
-
CantidadAprobada: number;
|
|
2328
|
-
Codigo: string;
|
|
2329
|
-
Descripcion: string;
|
|
2330
|
-
Estado: number;
|
|
2358
|
+
declare class GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial {
|
|
2331
2359
|
Precio: number;
|
|
2332
|
-
Total: number;
|
|
2333
|
-
Unidad: string;
|
|
2334
2360
|
Moneda: string;
|
|
2335
2361
|
Simbolo: string;
|
|
2336
2362
|
Decimales: number;
|
|
2337
|
-
WBE: ReservaMOWBEDTO;
|
|
2338
|
-
DetalleChile: ReservaMODetalleChileValorizacionManoObraDTO;
|
|
2339
|
-
CantidadUO: number;
|
|
2340
|
-
CantidadUOUsado: number;
|
|
2341
|
-
CantidadUOTransito: number;
|
|
2342
|
-
CantidadUOAprobada: number;
|
|
2343
|
-
Cantidades: never[];
|
|
2344
|
-
DatosCatalogoMO: ReservaMODatosCatalogoMODTO;
|
|
2345
2363
|
}
|
|
2346
2364
|
|
|
2347
|
-
declare class
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
GOM: string;
|
|
2351
|
-
Valorizacion: ReservaMOValorizacionManoObraDTO[];
|
|
2352
|
-
Fecha: Date;
|
|
2365
|
+
declare class GOMDatosMaterialesVarianteDTO {
|
|
2366
|
+
ID_Variante: number;
|
|
2367
|
+
Descripcion: string;
|
|
2353
2368
|
}
|
|
2354
2369
|
|
|
2355
|
-
declare class
|
|
2356
|
-
DatosPrecioMaterial:
|
|
2370
|
+
declare class GOM_DatosMateriales_DatosCatalogoItem {
|
|
2371
|
+
DatosPrecioMaterial: GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial;
|
|
2357
2372
|
}
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
Decimales: number;
|
|
2373
|
+
|
|
2374
|
+
declare class GOMEmpresaDTO {
|
|
2375
|
+
Codigo: string;
|
|
2376
|
+
RazonSocial: string;
|
|
2363
2377
|
}
|
|
2364
2378
|
|
|
2365
|
-
declare class
|
|
2379
|
+
declare class GOMDatosMaterialesDTO {
|
|
2366
2380
|
ID_Item: number;
|
|
2381
|
+
Empresa: GOMEmpresaDTO;
|
|
2367
2382
|
Codigo: string;
|
|
2368
2383
|
Nombre: string;
|
|
2369
2384
|
Descripcion: string;
|
|
2370
|
-
Variante:
|
|
2385
|
+
Variante: GOMDatosMaterialesVarianteDTO;
|
|
2371
2386
|
UnidadMedida: UnidadMedidaDTO$2;
|
|
2372
2387
|
Ind_SB: string;
|
|
2373
2388
|
Lote: string;
|
|
@@ -2378,26 +2393,47 @@ declare class ReservaMaterialItemDTO {
|
|
|
2378
2393
|
CantidadAprobada: number;
|
|
2379
2394
|
POS: number;
|
|
2380
2395
|
Valor: number;
|
|
2381
|
-
WBE: WBEDTO$1;
|
|
2382
2396
|
Total: number;
|
|
2383
2397
|
Moneda: string;
|
|
2384
2398
|
Simbolo: string;
|
|
2385
2399
|
Decimales: number;
|
|
2386
|
-
Cantidades:
|
|
2387
|
-
DatosCatalogoItem:
|
|
2400
|
+
Cantidades: GomDatosManoObraCantidadDTO[];
|
|
2401
|
+
DatosCatalogoItem: GOM_DatosMateriales_DatosCatalogoItem;
|
|
2388
2402
|
}
|
|
2389
2403
|
|
|
2390
|
-
declare class
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2404
|
+
declare class GomNovedadesTipoNovedadDTO {
|
|
2405
|
+
ID_TipoNovedad: number;
|
|
2406
|
+
Codigo: string;
|
|
2407
|
+
Descripcion: string;
|
|
2408
|
+
Estado: EstadoDTO;
|
|
2409
|
+
Pais: CodigoNombreDTO;
|
|
2410
|
+
Bitacora: BitacoraDTO[];
|
|
2411
|
+
}
|
|
2412
|
+
|
|
2413
|
+
declare class GomNovedadesDTO {
|
|
2414
|
+
ID_Novedad: number;
|
|
2415
|
+
ID_Trabajo: number;
|
|
2395
2416
|
Fecha: Date;
|
|
2417
|
+
Novedad: string;
|
|
2418
|
+
Usuario: UsuarioDTO;
|
|
2419
|
+
TipoNovedad: GomNovedadesTipoNovedadDTO;
|
|
2396
2420
|
}
|
|
2397
2421
|
|
|
2398
|
-
declare class
|
|
2399
|
-
|
|
2400
|
-
|
|
2422
|
+
declare class GomENTITY {
|
|
2423
|
+
ID_GOM: number;
|
|
2424
|
+
GOM: string;
|
|
2425
|
+
ID_incidencia: number;
|
|
2426
|
+
AreaGOM: string;
|
|
2427
|
+
ZonaAsignada: string;
|
|
2428
|
+
DatosMateriales: GOMDatosMaterialesDTO[];
|
|
2429
|
+
DatosManoObra: GOMDatosManoObraDTO[];
|
|
2430
|
+
Fecha: Date;
|
|
2431
|
+
Puntos: any[];
|
|
2432
|
+
DatosPuntos: any[];
|
|
2433
|
+
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
2434
|
+
Novedades: GomNovedadesDTO[];
|
|
2435
|
+
Anexos: FilesDocDTO[];
|
|
2436
|
+
Estados_Internos: EstadoInternoDTO[];
|
|
2401
2437
|
}
|
|
2402
2438
|
|
|
2403
2439
|
declare class ActaFinalCubicacionDTO {
|
|
@@ -4398,4 +4434,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
4398
4434
|
Coordenadas: IDataSheetCoordenadas[];
|
|
4399
4435
|
}
|
|
4400
4436
|
|
|
4401
|
-
export { ActaFinalCubicacionDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, 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, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, 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, GOMDatosManoObraDTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY,
|
|
4437
|
+
export { ActaFinalCubicacionDTO, ActaFinalCubicacionSharedDTO, ActividadZonasActividadDTO, ActividadesDTO, AddressListENTITY, AgenciaENTITY, AgenciasDTO, AlmacenDTO, AlmacenENTITY, AlmacenLogisticaDTO, AlmacenUsuarioGIADTO, AreaGOMDTO, AreaGomDTO, AsignacionGomDTO, AsignacionGomDTO_Old, AtencionOrdenesLiquidadasENTITY, AtiendeBodegaDTO, AutoInventarioENTITY, BaremosAlemaniaENTITY, BaremosChileENTITY, BaremosColombiaENTITY, BaremosTOAChileENTITY, BaremosTOAENTITY, BitacoraAntiguaDTO, BitacoraDTO, BitacoraLiqDTO, BitacoraOpcionSitemaDTO, BodegaENTITY, CabeceraCubicajeDTO, CambioEstadoFacturadoRequest, CambioEstadoFaseRequest, CambiosEstadosFaseLiberacionPagosDTO, CausacionDTO, CentroCostosENTITY, CertificacionProduccionDTO$1 as CertificacionProduccionDTO, ChileTdCENTITY, ClienteDTO, ClienteTdCDTO, Cliente_ContratistaDTO, CodigoDescripcionDTO, type CodigoMovimientoAlmacen, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialENTITY, ContratistaDTO, ContratistasDTO, Contratistas_PE_DTO, ContratoDTO, ContratoOTDTO, ContratoOTENTITY, ContratoOTGeneralDTO, ContratoOT_PRE_DTO, ContratoOT_ZT_DTO, ContratoObraOTDTO, ConversionLogisticaDTO, CoordenadasDTO, CoordenadasTdCDTO, CorteBobinaStockAlmacenDTO, CuadrillaDTO, CuadrillaLiberacionPagosDTO, CubicacionChile9512ENTITY, CubicajeCabeceraDTO, CubicajeDetalleDTO, CubicajeENTITY, CubicajeHistoricoDTO, 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, DetalleCubicajeDTO, DetalleDTO, DetalleManoObraChileDTO, DetalleSalidaAlmacenDTO, DevolucionAlmacenENTITY, EECC_DTO, EmpalmeDTO, EmpresaDTO$4 as EmpresaDTO, EmpresaENTITY, EmpresaLiberacionPagosDTO, EmpresaLogisticaDTO, EmpresaPCMODTO, EmpresaPersonalDTO, EmpresaProduccionDTO, EmpresaStockPersonalDTO, EmpresaTdCDTO, EmpresaUsuarioDTO, EmpresaValDTO, EmpresaZonasActividadDTO, 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, GOMDatosManoObraDTO, GOMDatosManoObraDatosCatalogoMODTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomDatosManoObraCantidadDTO, GomENTITY, GomNovedadesDTO, GomNovedadesTipoNovedadDTO, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistorialCubicacionDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasChileDTO, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemDetallePMDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraChileENTITY, MacroObraENTITY, MailStructureENTITY, ManoObraBaremoDTO, ManoObraGlobalENTITY, ManoObraGlobalPCMODTO, ManoObraLiberacionPagosDTO, MarcaDTO, MaterialMOGlobalDTO, MedidorDTO, ModelMOSQLPeruENTITY, ModelObraSQLPeruENTITY, ModeloDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, NodoDocDTO, NombreDescripcionDTO, NotasDTO, NotificacionesENTITY, OTDTO, OTGlobalDTO, ObraChile9512ENTITY, ObraENTITY, OpcionSistemaENTITY, OperacionDTO, OperacionDataAdicional, OptionCatalogoDTO, OrigenCUB, PagosECDTO, PaisStockPersonalDTO, ParteDiarioDTO$1 as ParteDiarioDTO, type PayloadTokenDTO, PerfilesENTITY, PeriodoENTITY, PeriodoLiberacionPagosDTO, PermisosAppDTO, PersonalDTO, PersonalENTITY, PersonalLogisticaDTO$1 as PersonalLogisticaDTO, PrecioContratistaMOAL02ENTITY, PrecioContratistaMOAL04ENTITY, PrecioContratistaMOENTITY, PrecioEspecialidadENTITY, PrecioMaterialENTITY, PreciosDTO, PreciosVigentesDTO, PresupuestadoTotalObraChilaDTO, PresupuestadoTotalObraDTO, PresupuestadoTotalObraEmpresaCuadrillaDTO, PresupuestadoTotalObraEmpresaDTO, PrioridadNotificacion, ProdCursoBaremoFasesCuadrillaDTO, ProdCursoBaremoFasesManoObraDTO, ProdCursoBaremoFasesPeriodoDTO, ProdCursoBaremoFasesUltimaFaseDTO, ProdCursoBaremoFasesUltimoEstadoInternoDTO, ProductosServiciosLiqDTO, ProductosServiciosValDTO, ProfileDTO, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RM_ZonasActividadENTITY, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraBaseENTITY, ReservaManoObraChileENTITY, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaMaterialBaseENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, ResultadoDTO, ResumenAvanceChileDTO, ResumenAvanceDataDocumentacionDTO, ResumenAvanceDataGranTotal, ResumentAvanceDocumentacionHPDTO, RptProduccionCurso_Baremos_FasesENTITY, SalidaAlmacenENTITY, SeguimientoObraDTO, SincronizacionPersonalDTO, SistemaDto, SistemaENTITY, SizeDTO, SocketDTO, StockAlmacenENTITY, StockAlmacenEquiposENTITY, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TecnicoValDTO, TipoActividadMOENTITY, TipoAlmacenDTO, TipoClaveENTITY, TipoDocumentoIdentidadDTO, TipoDocumentoUsuarioDTO, TipoEmpresaDTO, TipoEspecialidadMOENTITY, type TipoLiq, TipoMOPCMODTO, TipoMiembroGrupoEmpresaDTO, TipoMovimientoAlmacenDTO, TipoMovimientoAlmacenENTITY, TipoNotificacion, TipoOpcionDTO, TipoOpcionSistemaENTITY, TipoSistemaDTO, TipoStockStockPersonalDTO, type TipoVal, Tipo_MO, TotalGeneralObraChileDTO, TotalGeneralObraDTO, TrabajoAlemaniaENTITY, TrabajoENTITY, TrabajoMacroObraAlemaniaENTITY, TransaccionFoliosENTITY, TransaccionesDTO, UbicacionAlmacenDTO, UbicacionDTO$1 as UbicacionDTO, UbicacionObraDTO, UbicacionTdCDTO, Ultima_FaseLiberacionPagosDTO, Ultima_PreLiquidacionAlemaniaDTO$1 as Ultima_PreLiquidacionAlemaniaDTO, Ultimo_Estado_InternoLiberacionPagosDTO, Ultimo_PrecioDTO, UnidadMedidaDTO$2 as UnidadMedidaDTO, UnidadMedidaLiberacionPagosDTO, UnidadObraMaterialENTITY, 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, ZonaTrabajoENTITY, ZonalesDTO, ZonasDTO, convertStringsToDates, latLngDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData, validateArrayBody };
|