sigo-entities 0.0.265 → 0.0.267
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 +437 -1
- package/dist/index.d.ts +437 -1
- package/dist/index.js +7857 -5378
- package/dist/index.mjs +7943 -5451
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1653,6 +1653,27 @@ declare class AddressListENTITY {
|
|
|
1653
1653
|
BusinessHPList: HPListDTO[];
|
|
1654
1654
|
}
|
|
1655
1655
|
|
|
1656
|
+
declare class IncidenciasDTO {
|
|
1657
|
+
ID_Incidencia: number;
|
|
1658
|
+
Obra: string;
|
|
1659
|
+
Proyecto: string;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
declare class MacroObraENTITY {
|
|
1663
|
+
ID_MacroObra: number;
|
|
1664
|
+
Codigo: string;
|
|
1665
|
+
Proyecto: string;
|
|
1666
|
+
Cliente: string;
|
|
1667
|
+
Contrato: string;
|
|
1668
|
+
Observacion: string;
|
|
1669
|
+
ZonaAsignada: string;
|
|
1670
|
+
ContratoOT: ContratoObraOTDTO;
|
|
1671
|
+
FechaRegistro: Date;
|
|
1672
|
+
Incidencias: IncidenciasDTO[];
|
|
1673
|
+
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
1674
|
+
Estados_Internos: EstadoInternoDTO[];
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1656
1677
|
declare enum Tipo_MO {
|
|
1657
1678
|
CEL = "CEL",
|
|
1658
1679
|
EMP = "EMP",
|
|
@@ -1754,6 +1775,319 @@ declare class SeguimientoObraDTO {
|
|
|
1754
1775
|
Estado_Sirope: string;
|
|
1755
1776
|
}
|
|
1756
1777
|
|
|
1778
|
+
declare class CubicajeHistoricoDTO {
|
|
1779
|
+
Actividad: string;
|
|
1780
|
+
Estado: string;
|
|
1781
|
+
Inicio: Date;
|
|
1782
|
+
Fin: Date;
|
|
1783
|
+
Usuario: string;
|
|
1784
|
+
Comentario: string;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
declare class CubicajeCabeceraDTO {
|
|
1788
|
+
codigoCalc: string;
|
|
1789
|
+
codigo: string;
|
|
1790
|
+
nombre: string;
|
|
1791
|
+
contrato: string;
|
|
1792
|
+
agencia: string;
|
|
1793
|
+
numoe: string;
|
|
1794
|
+
nombreoe: string;
|
|
1795
|
+
tipooe: string;
|
|
1796
|
+
inioe: Date;
|
|
1797
|
+
finoe: Date;
|
|
1798
|
+
PE: string;
|
|
1799
|
+
ITOCTC: string;
|
|
1800
|
+
central: string;
|
|
1801
|
+
cliente: string;
|
|
1802
|
+
direccion: string;
|
|
1803
|
+
comuna: string;
|
|
1804
|
+
nombreproyecto: string;
|
|
1805
|
+
ito: string;
|
|
1806
|
+
red: string;
|
|
1807
|
+
PEP1: string;
|
|
1808
|
+
PEP2: string;
|
|
1809
|
+
GESTOR: string;
|
|
1810
|
+
CostoTotal: number;
|
|
1811
|
+
Historico: CubicajeHistoricoDTO[];
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
declare class CubicajeDetalleDTO {
|
|
1815
|
+
codigo: string;
|
|
1816
|
+
linea: string;
|
|
1817
|
+
dirdesde: string;
|
|
1818
|
+
altdesde: string;
|
|
1819
|
+
dirhasta: string;
|
|
1820
|
+
althasta: string;
|
|
1821
|
+
plano: string;
|
|
1822
|
+
codesp: string;
|
|
1823
|
+
codact: string;
|
|
1824
|
+
codclave: string;
|
|
1825
|
+
tarea: string;
|
|
1826
|
+
codmo: string;
|
|
1827
|
+
coduo: string;
|
|
1828
|
+
canmocub: number;
|
|
1829
|
+
canmoinf: number;
|
|
1830
|
+
canmoapr: number;
|
|
1831
|
+
canuocub: number;
|
|
1832
|
+
canuoinf: number;
|
|
1833
|
+
canuoapr: number;
|
|
1834
|
+
origen: string;
|
|
1835
|
+
codigobarra: string;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
declare class CubicajeENTITY {
|
|
1839
|
+
ID_Cubicacion: number;
|
|
1840
|
+
ID_MacroObra: number;
|
|
1841
|
+
cabecera: CubicajeCabeceraDTO;
|
|
1842
|
+
detalle: CubicajeDetalleDTO[];
|
|
1843
|
+
Fecha: Date;
|
|
1844
|
+
ZonaAsignada: string;
|
|
1845
|
+
Actividad: string;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
declare class GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial {
|
|
1849
|
+
Precio: number;
|
|
1850
|
+
Moneda: string;
|
|
1851
|
+
Simbolo: string;
|
|
1852
|
+
Decimales: number;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
declare class GOM_DatosMateriales_DatosCatalogoItem {
|
|
1856
|
+
DatosPrecioMaterial: GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
declare class GOMDatosMaterialesVarianteDTO {
|
|
1860
|
+
ID_Variante: number;
|
|
1861
|
+
Descripcion: string;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
declare class GOMEmpresaDTO {
|
|
1865
|
+
Codigo: string;
|
|
1866
|
+
RazonSocial: string;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
declare class GOMDatosMaterialesDTO {
|
|
1870
|
+
ID_Item: number;
|
|
1871
|
+
Empresa: GOMEmpresaDTO;
|
|
1872
|
+
Codigo: string;
|
|
1873
|
+
Nombre: string;
|
|
1874
|
+
Descripcion: string;
|
|
1875
|
+
Variante: GOMDatosMaterialesVarianteDTO;
|
|
1876
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
1877
|
+
Ind_SB: string;
|
|
1878
|
+
Lote: string;
|
|
1879
|
+
Cantidad: number;
|
|
1880
|
+
CantidadDespacho: number;
|
|
1881
|
+
CantidadUsados: number;
|
|
1882
|
+
CantidadDevolucion: number;
|
|
1883
|
+
CantidadAprobada: number;
|
|
1884
|
+
POS: number;
|
|
1885
|
+
Valor: number;
|
|
1886
|
+
Total: number;
|
|
1887
|
+
Moneda: string;
|
|
1888
|
+
Simbolo: string;
|
|
1889
|
+
Decimales: number;
|
|
1890
|
+
Cantidades: any[];
|
|
1891
|
+
DatosCatalogoItem: GOM_DatosMateriales_DatosCatalogoItem;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
declare class GOMDatosManoObraDetalleChileDTO {
|
|
1895
|
+
Codigo: string;
|
|
1896
|
+
Linea: string;
|
|
1897
|
+
DirDesde: string;
|
|
1898
|
+
AltDesde: string;
|
|
1899
|
+
DirHasta: string;
|
|
1900
|
+
AltHasta: string;
|
|
1901
|
+
Plano: string;
|
|
1902
|
+
Especialidad: CodigoNombreDTO;
|
|
1903
|
+
Actividad: CodigoNombreDTO;
|
|
1904
|
+
Clave: CodigoNombreDTO;
|
|
1905
|
+
Tarea: string;
|
|
1906
|
+
ManoObra: CodigoNombreUMDTO;
|
|
1907
|
+
UnidadObra: CodigoNombreUMDTO;
|
|
1908
|
+
HomePass: CodigoNombreDTO;
|
|
1909
|
+
LineaCodigoCub: string;
|
|
1910
|
+
CodigoCub: string;
|
|
1911
|
+
CanMOCub: number;
|
|
1912
|
+
CanMOInf: number;
|
|
1913
|
+
CanMOApr: number;
|
|
1914
|
+
CanUOCub: number;
|
|
1915
|
+
CanUOInf: number;
|
|
1916
|
+
TotalUO: number;
|
|
1917
|
+
CanUOApr: number;
|
|
1918
|
+
Origen: string;
|
|
1919
|
+
CodigoBarra: string;
|
|
1920
|
+
PuntoBaremo: number;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
declare class GOMDatosManoObraDatosCatalogoMODTO {
|
|
1924
|
+
DatosManoObraGlobal: DatosManoObraGlobalDTO;
|
|
1925
|
+
DatosPrecioEspecialidad: DatosPrecioEspecialidadDTO;
|
|
1926
|
+
DatosUnidadObraMaterial: DatosUnidadObraMaterialDTO;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
declare class GOMDatosManoObraDTO {
|
|
1930
|
+
Amap: number;
|
|
1931
|
+
Cantidad: number;
|
|
1932
|
+
CantidadUsado: number;
|
|
1933
|
+
CantidadTransito: number;
|
|
1934
|
+
CantidadAprobada: number;
|
|
1935
|
+
Codigo: string;
|
|
1936
|
+
Descripcion: string;
|
|
1937
|
+
Precio: number;
|
|
1938
|
+
Total: number;
|
|
1939
|
+
Unidad: string;
|
|
1940
|
+
Moneda: string;
|
|
1941
|
+
Simbolo: string;
|
|
1942
|
+
Decimales: number;
|
|
1943
|
+
DetalleChile: GOMDatosManoObraDetalleChileDTO;
|
|
1944
|
+
CantidadUO: number;
|
|
1945
|
+
CantidadUOUsado: number;
|
|
1946
|
+
CantidadUOTransito: number;
|
|
1947
|
+
CantidadUOAprobada: number;
|
|
1948
|
+
Cantidades: any[];
|
|
1949
|
+
DatosCatalogoMO: GOMDatosManoObraDatosCatalogoMODTO;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
declare class GomENTITY {
|
|
1953
|
+
ID_GOM: number;
|
|
1954
|
+
GOM: string;
|
|
1955
|
+
ID_incidencia: number;
|
|
1956
|
+
AreaGOM: string;
|
|
1957
|
+
ZonaAsignada: string;
|
|
1958
|
+
DatosMateriales: GOMDatosMaterialesDTO[];
|
|
1959
|
+
DatosManoObra: GOMDatosManoObraDTO[];
|
|
1960
|
+
Fecha: Date;
|
|
1961
|
+
Puntos: any[];
|
|
1962
|
+
DatosPuntos: any[];
|
|
1963
|
+
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
1964
|
+
Novedades: any[];
|
|
1965
|
+
Anexos: any[];
|
|
1966
|
+
Estados_Internos: EstadoInternoDTO[];
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
declare class ReservaMOWBEDTO {
|
|
1970
|
+
ID_WBE: number;
|
|
1971
|
+
CodigoWBE: string;
|
|
1972
|
+
DescripcionWBE: string;
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
declare class ReservaMODetalleChileValorizacionManoObraDTO {
|
|
1976
|
+
Codigo: string;
|
|
1977
|
+
Linea: string;
|
|
1978
|
+
DirDesde: string;
|
|
1979
|
+
AltDesde: string;
|
|
1980
|
+
DirHasta: string;
|
|
1981
|
+
AltHasta: string;
|
|
1982
|
+
Plano: string;
|
|
1983
|
+
Especialidad: CodigoNombreDTO;
|
|
1984
|
+
Actividad: CodigoNombreDTO;
|
|
1985
|
+
Clave: CodigoNombreDTO;
|
|
1986
|
+
Tarea: string;
|
|
1987
|
+
ManoObra: CodigoNombreUMDTO;
|
|
1988
|
+
UnidadObra: CodigoNombreUMDTO;
|
|
1989
|
+
HomePass: CodigoNombreDTO;
|
|
1990
|
+
LineaCodigoCub: string;
|
|
1991
|
+
CodigoCub: string;
|
|
1992
|
+
CanMOCub: number;
|
|
1993
|
+
CanMOInf: number;
|
|
1994
|
+
CanMOApr: number;
|
|
1995
|
+
CanUOCub: number;
|
|
1996
|
+
CanUOInf: number;
|
|
1997
|
+
TotalUO: number;
|
|
1998
|
+
CanUOApr: number;
|
|
1999
|
+
Origen: number;
|
|
2000
|
+
CodigoBarra: string;
|
|
2001
|
+
PuntoBaremo: number;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
declare class ReservaMODatosCatalogoMODTO {
|
|
2005
|
+
DatosManoObraGlobal: DatosManoObraGlobalDTO;
|
|
2006
|
+
DatosPrecioEspecialidad: DatosPrecioEspecialidadDTO;
|
|
2007
|
+
DatosUnidadObraMaterial: DatosUnidadObraMaterialDTO;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
declare class ReservaMOValorizacionManoObraDTO {
|
|
2011
|
+
Amap: number;
|
|
2012
|
+
Cantidad: number;
|
|
2013
|
+
CantidadUsado: number;
|
|
2014
|
+
CantidadTransito: number;
|
|
2015
|
+
CantidadAprobada: number;
|
|
2016
|
+
Codigo: string;
|
|
2017
|
+
Descripcion: string;
|
|
2018
|
+
Estado: number;
|
|
2019
|
+
Precio: number;
|
|
2020
|
+
Total: number;
|
|
2021
|
+
Unidad: string;
|
|
2022
|
+
Moneda: string;
|
|
2023
|
+
Simbolo: string;
|
|
2024
|
+
Decimales: number;
|
|
2025
|
+
WBE: ReservaMOWBEDTO;
|
|
2026
|
+
DetalleChile: ReservaMODetalleChileValorizacionManoObraDTO;
|
|
2027
|
+
CantidadUO: number;
|
|
2028
|
+
CantidadUOUsado: number;
|
|
2029
|
+
CantidadUOTransito: number;
|
|
2030
|
+
CantidadUOAprobada: number;
|
|
2031
|
+
Cantidades: never[];
|
|
2032
|
+
DatosCatalogoMO: ReservaMODatosCatalogoMODTO;
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
declare class ReservaManoObraV2ENTITY {
|
|
2036
|
+
ID_ManoObra: number;
|
|
2037
|
+
ID_GOM: string;
|
|
2038
|
+
GOM: string;
|
|
2039
|
+
Valorizacion: ReservaMOValorizacionManoObraDTO[];
|
|
2040
|
+
Fecha: Date;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
declare class RMItemDatosCatalogoItemDTO {
|
|
2044
|
+
DatosPrecioMaterial: RMItemDatosCatalogoItemDatosPrecioMaterialDTO;
|
|
2045
|
+
}
|
|
2046
|
+
declare class RMItemDatosCatalogoItemDatosPrecioMaterialDTO {
|
|
2047
|
+
Precio: number;
|
|
2048
|
+
Moneda: string;
|
|
2049
|
+
Simbolo: string;
|
|
2050
|
+
Decimales: number;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
declare class ReservaMaterialItemDTO {
|
|
2054
|
+
ID_Item: number;
|
|
2055
|
+
Codigo: string;
|
|
2056
|
+
Nombre: string;
|
|
2057
|
+
Descripcion: string;
|
|
2058
|
+
Variante: VarianteDTO;
|
|
2059
|
+
UnidadMedida: UnidadMedidaDTO$2;
|
|
2060
|
+
Ind_SB: string;
|
|
2061
|
+
Lote: string;
|
|
2062
|
+
Cantidad: number;
|
|
2063
|
+
CantidadDespacho: number;
|
|
2064
|
+
CantidadUsados: number;
|
|
2065
|
+
CantidadDevolucion: number;
|
|
2066
|
+
CantidadAprobada: number;
|
|
2067
|
+
POS: number;
|
|
2068
|
+
Valor: number;
|
|
2069
|
+
WBE: WBEDTO$1;
|
|
2070
|
+
Total: number;
|
|
2071
|
+
Moneda: string;
|
|
2072
|
+
Simbolo: string;
|
|
2073
|
+
Decimales: number;
|
|
2074
|
+
Cantidades: any[];
|
|
2075
|
+
DatosCatalogoItem: RMItemDatosCatalogoItemDTO;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
declare class ReservaMaterialENTITY {
|
|
2079
|
+
ID_Reserva: number;
|
|
2080
|
+
ID_GOM: number;
|
|
2081
|
+
GOM: string;
|
|
2082
|
+
Item: ReservaMaterialItemDTO[];
|
|
2083
|
+
Fecha: Date;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
declare class ReservaMaterialCodigoRazonSocialDTO {
|
|
2087
|
+
Codigo: string;
|
|
2088
|
+
RazonSocial: string;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
1757
2091
|
declare class HitoDTO {
|
|
1758
2092
|
Idx: number;
|
|
1759
2093
|
Estado: string;
|
|
@@ -2164,6 +2498,108 @@ declare class CambioEstadoFacturadoRequest {
|
|
|
2164
2498
|
CambiosEstadosFase: CambiosEstadosFaseLiberacionPagosDTO;
|
|
2165
2499
|
}
|
|
2166
2500
|
|
|
2501
|
+
declare class ProdCursoBaremoFasesUltimoEstadoInternoDTO {
|
|
2502
|
+
IsDebug: boolean;
|
|
2503
|
+
ID_EstadoInterno: number;
|
|
2504
|
+
ID_EstadoInternoPadre: number;
|
|
2505
|
+
Estado: EstadoDTO;
|
|
2506
|
+
Fecha: Date;
|
|
2507
|
+
Descripcion: string;
|
|
2508
|
+
Icono: string;
|
|
2509
|
+
Color: string;
|
|
2510
|
+
Orden: string;
|
|
2511
|
+
ColorFondo: string;
|
|
2512
|
+
Tipo: string;
|
|
2513
|
+
Observacion: string;
|
|
2514
|
+
Sistema: string;
|
|
2515
|
+
UsuarioEdicion: UsuarioEdicionDTO;
|
|
2516
|
+
Anexos: any[];
|
|
2517
|
+
Pais: CodigoNombreDTO;
|
|
2518
|
+
Bitacora: any[];
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
declare class ProdCursoBaremoFasesUltimaFaseDTO {
|
|
2522
|
+
ID_Fase: number;
|
|
2523
|
+
TipoFase: number;
|
|
2524
|
+
Descripcion: string;
|
|
2525
|
+
Porcentaje: number;
|
|
2526
|
+
UsuarioCambio: UsuarioDTO;
|
|
2527
|
+
FechaCambio: Date;
|
|
2528
|
+
Observacion: string;
|
|
2529
|
+
Anexos: any[];
|
|
2530
|
+
NroDocumento: string;
|
|
2531
|
+
UsuarioDocumento: UsuarioDTO;
|
|
2532
|
+
FechaDocumento: Date;
|
|
2533
|
+
UltimoPeriodo: PeriodoDTO$4;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
declare class ProdCursoBaremoFasesPeriodoDTO {
|
|
2537
|
+
ID_Periodo: number;
|
|
2538
|
+
FechaInicio: Date;
|
|
2539
|
+
FechaFin: Date;
|
|
2540
|
+
FechaMaxima: Date;
|
|
2541
|
+
Anio: number;
|
|
2542
|
+
Mes: number;
|
|
2543
|
+
Dia: number;
|
|
2544
|
+
Codigo: string;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
declare class ProdCursoBaremoFasesCuadrillaDTO {
|
|
2548
|
+
Codigo: string;
|
|
2549
|
+
Descripcion: string;
|
|
2550
|
+
Identificacion: string;
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
declare class ProdCursoBaremoFasesManoObraDTO {
|
|
2554
|
+
Codigo: string;
|
|
2555
|
+
Nombre: string;
|
|
2556
|
+
UnidadMedida: string;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
declare class RptProduccionCurso_Baremos_FasesENTITY {
|
|
2560
|
+
foreignKey: string;
|
|
2561
|
+
ID_incidencia: number;
|
|
2562
|
+
ID_MacroObra: number;
|
|
2563
|
+
ID_Trabajo: number;
|
|
2564
|
+
ID_Valorizacion: number;
|
|
2565
|
+
Obra: string;
|
|
2566
|
+
Proyecto: string;
|
|
2567
|
+
Cluster: string;
|
|
2568
|
+
Gemainde: string;
|
|
2569
|
+
WorkProject: string;
|
|
2570
|
+
AddressID: string;
|
|
2571
|
+
Tipo: string;
|
|
2572
|
+
Contrato: string;
|
|
2573
|
+
ID_GOM: number;
|
|
2574
|
+
ZonaAsignada: string;
|
|
2575
|
+
Agencia: string;
|
|
2576
|
+
Cuadrilla: ProdCursoBaremoFasesCuadrillaDTO;
|
|
2577
|
+
Empresa: EmpresaDTO$4;
|
|
2578
|
+
Especialidad: CodigoNombreDTO;
|
|
2579
|
+
Actividad: CodigoNombreDTO;
|
|
2580
|
+
ManoObra: ProdCursoBaremoFasesManoObraDTO;
|
|
2581
|
+
UnidadObra: ProdCursoBaremoFasesManoObraDTO;
|
|
2582
|
+
LineaCodigoCub: string;
|
|
2583
|
+
ID: string;
|
|
2584
|
+
Ultima_Fase: ProdCursoBaremoFasesUltimaFaseDTO;
|
|
2585
|
+
Ultimo_Estado_Interno: ProdCursoBaremoFasesUltimoEstadoInternoDTO;
|
|
2586
|
+
CoeficienteMaterial: number;
|
|
2587
|
+
Cantidad: number;
|
|
2588
|
+
PuntoBaremo: number;
|
|
2589
|
+
Precio: number;
|
|
2590
|
+
PrecioContratista: number;
|
|
2591
|
+
Simbolo: string;
|
|
2592
|
+
Moneda: string;
|
|
2593
|
+
Decimales: number;
|
|
2594
|
+
isContratista: boolean;
|
|
2595
|
+
PB_Total: number;
|
|
2596
|
+
MO_Total: number;
|
|
2597
|
+
EstadoFase: string;
|
|
2598
|
+
FechaDocumento: Date;
|
|
2599
|
+
Periodo: ProdCursoBaremoFasesPeriodoDTO;
|
|
2600
|
+
CambiosEstadosFase: any[];
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2167
2603
|
declare class ConsumoMaterialENTITY {
|
|
2168
2604
|
ID_ConsumoMaterial: number;
|
|
2169
2605
|
ID_Recurso: string;
|
|
@@ -3502,4 +3938,4 @@ declare class ISheetsJsonChileTdC {
|
|
|
3502
3938
|
Coordenadas: IDataSheetCoordenadas[];
|
|
3503
3939
|
}
|
|
3504
3940
|
|
|
3505
|
-
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, 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 };
|
|
3941
|
+
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, 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, 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, GOMDatosManoObraDTO, GOMDatosManoObraDetalleChileDTO, GOMDatosMaterialesDTO, GOMDatosMaterialesVarianteDTO, GOMEmpresaDTO, GOM_DatosMateriales_DatosCatalogoItem, GOM_DatosMateriales_DatosCatalogoItemDatosPrecioMaterial, GomENTITY, GranFamiliaItemDTO, GrupoEmpresaDTO, HPListAsignacionDTO, HPListDTO, HistoricoDTO, HistoricoEmpresasDTO, HitoDTO, IDataSheetCoordenadas, IDataSheetLineasTdC, IDataSheetMateriales, IDataSheetMedidores, IDataSheetTdC, IDataSheetTiemposCumplimentados, ISheetsJsonChileTdC, IncidenciasDTO, IngresoAlmacenENTITY, InventarioDTO, InventarioLiqDTO, InventarioValDTO, ItemCantidadesDTO, ItemDTO, ItemDTO_old, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, KeyIntegracionENTITY, LiberacionDePagosAlemaniaENTITY, LiquidadaTOAENTITY, LogAlmacenDTO, LogDTO, LogModificarDTO, LogRegisterDTO, LoteDTO$1 as LoteDTO, MacroObraENTITY, 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, RMItemDatosCatalogoItemDTO, RMItemDatosCatalogoItemDatosPrecioMaterialDTO, RegularizacionPositivaNegativaDTO, RepresentanteLegalDTO, ReservaENTITY, ReservaENTITY_old, ReservaMODatosCatalogoMODTO, ReservaMODetalleChileValorizacionManoObraDTO, ReservaMOValorizacionManoObraDTO, ReservaMOWBEDTO, ReservaManoObraENTITY, ReservaManoObraRegularizacionENTITY, ReservaManoObraV2ENTITY, ReservaMaterialCodigoRazonSocialDTO, ReservaMaterialENTITY, ReservaMaterialItemDTO, 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 };
|