sigo-entities 0.0.27 → 0.0.28
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 +107 -75
- package/dist/index.d.ts +107 -75
- package/dist/index.js +1766 -1556
- package/dist/index.mjs +1766 -1557
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -8,6 +8,15 @@ declare class AlmacenDTO {
|
|
|
8
8
|
Bodega: CodigoNombreDTO;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
declare class CodigoNombreDTO {
|
|
12
|
+
Codigo: string;
|
|
13
|
+
Nombre: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare class AlmacenLogisticaDTO extends CodigoNombreDTO {
|
|
17
|
+
ID_Almacen: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
11
20
|
declare class UsuarioDTO {
|
|
12
21
|
Identificacion: string;
|
|
13
22
|
Apellidos: string;
|
|
@@ -27,11 +36,6 @@ declare class CodigoDescripcionDTO {
|
|
|
27
36
|
Descripcion: string;
|
|
28
37
|
}
|
|
29
38
|
|
|
30
|
-
declare class CodigoNombreDTO {
|
|
31
|
-
Codigo: string;
|
|
32
|
-
Nombre: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
39
|
declare class CodigoNombreUMDTO {
|
|
36
40
|
Codigo: string;
|
|
37
41
|
Nombre: string;
|
|
@@ -49,6 +53,18 @@ declare class EmpresaDTO {
|
|
|
49
53
|
Propia: boolean;
|
|
50
54
|
}
|
|
51
55
|
|
|
56
|
+
declare class TipoDocumentoIdentidadDTO {
|
|
57
|
+
ID_TipoDocumentoIdentidad: number;
|
|
58
|
+
Nombre: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
declare class EmpresaLogisticaDTO {
|
|
62
|
+
ID_Empresa: number;
|
|
63
|
+
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
64
|
+
NumeroDocumentoIdentidad: string;
|
|
65
|
+
RazonSocial: string;
|
|
66
|
+
}
|
|
67
|
+
|
|
52
68
|
declare class EstadoDTO {
|
|
53
69
|
ID_Estado: number;
|
|
54
70
|
Nombre: string;
|
|
@@ -89,6 +105,11 @@ declare class EstadoInternoDTO {
|
|
|
89
105
|
SubEstados: SubEstadoInternoDTO[];
|
|
90
106
|
}
|
|
91
107
|
|
|
108
|
+
declare class FamiliaItemDTO {
|
|
109
|
+
ID_FamiliaItem: number;
|
|
110
|
+
Nombre: string;
|
|
111
|
+
}
|
|
112
|
+
|
|
92
113
|
declare class SizeDTO {
|
|
93
114
|
Size: number;
|
|
94
115
|
UM: string;
|
|
@@ -130,11 +151,55 @@ declare class FotoDTO {
|
|
|
130
151
|
img: string;
|
|
131
152
|
}
|
|
132
153
|
|
|
154
|
+
declare class GranFamiliaItemDTO {
|
|
155
|
+
ID_GranFamiliaItem: number;
|
|
156
|
+
Nombre: string;
|
|
157
|
+
}
|
|
158
|
+
|
|
133
159
|
declare class UnidadMedidaDTO {
|
|
134
160
|
ID_UnidadMedida: number;
|
|
135
161
|
Nombre: string;
|
|
136
162
|
}
|
|
137
163
|
|
|
164
|
+
declare class ItemDetalleLogisticaDTO {
|
|
165
|
+
ID_Item: number;
|
|
166
|
+
Codigo: string;
|
|
167
|
+
Nombre: string;
|
|
168
|
+
Descripcion: string;
|
|
169
|
+
Variante: CodigoNombreDTO;
|
|
170
|
+
UnidadMedida: UnidadMedidaDTO;
|
|
171
|
+
GranFamiliaItem: GranFamiliaItemDTO;
|
|
172
|
+
FamiliaItem: FamiliaItemDTO;
|
|
173
|
+
Ind_SB: string;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
declare class LoteDTO {
|
|
177
|
+
ID: number;
|
|
178
|
+
Lote: string;
|
|
179
|
+
FechaCaducidad: Date;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
183
|
+
ID_Pais: number;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
declare class PersonalLogisticaDTO {
|
|
187
|
+
Codigo: string;
|
|
188
|
+
IdPersonal: number;
|
|
189
|
+
IdRegister: number;
|
|
190
|
+
Identificacion: string;
|
|
191
|
+
Apellidos: string;
|
|
192
|
+
Nombres: string;
|
|
193
|
+
Lotes: LoteDTO[];
|
|
194
|
+
Empresa: EmpresaDTO;
|
|
195
|
+
Firma: string;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
declare class TipoStockStockPersonalDTO {
|
|
199
|
+
ID_TipoStock: number;
|
|
200
|
+
Nombre: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
138
203
|
declare class UsuarioID_UsuarioDTO {
|
|
139
204
|
ID_Usuario: number;
|
|
140
205
|
NumeroDocumentoIdentidad: string;
|
|
@@ -148,6 +213,10 @@ declare class ValidadoDTO {
|
|
|
148
213
|
Usuario: UsuarioID_UsuarioDTO;
|
|
149
214
|
}
|
|
150
215
|
|
|
216
|
+
declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
217
|
+
ID_ZonaTrabajo: number;
|
|
218
|
+
}
|
|
219
|
+
|
|
151
220
|
declare class ContrataDTO {
|
|
152
221
|
FechaRegistro: Date;
|
|
153
222
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -506,10 +575,6 @@ declare class AtencionOrdenesLiquidadasENTITY {
|
|
|
506
575
|
Fuente: typeFuente;
|
|
507
576
|
}
|
|
508
577
|
|
|
509
|
-
declare class AlmacenLogisticaDTO extends CodigoNombreDTO {
|
|
510
|
-
ID_Almacen: number;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
578
|
declare class DatosTransportistaDTO {
|
|
514
579
|
Identificacion: string;
|
|
515
580
|
Nombres: string;
|
|
@@ -532,33 +597,6 @@ declare class EquipoLogisticaDTO {
|
|
|
532
597
|
Estado: EstadoDTO;
|
|
533
598
|
}
|
|
534
599
|
|
|
535
|
-
declare class FamiliaItemDTO {
|
|
536
|
-
ID_FamiliaItem: number;
|
|
537
|
-
Nombre: string;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
declare class GranFamiliaItemDTO {
|
|
541
|
-
ID_GranFamiliaItem: number;
|
|
542
|
-
Nombre: string;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
declare class ItemDetalleLogisticaDTO {
|
|
546
|
-
ID_Item: number;
|
|
547
|
-
Codigo: string;
|
|
548
|
-
Nombre: string;
|
|
549
|
-
Descripcion: string;
|
|
550
|
-
Variante: CodigoNombreDTO;
|
|
551
|
-
UnidadMedida: UnidadMedidaDTO;
|
|
552
|
-
GranFamiliaItem: GranFamiliaItemDTO;
|
|
553
|
-
FamiliaItem: FamiliaItemDTO;
|
|
554
|
-
Ind_SB: string;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
declare class TipoStockStockPersonalDTO {
|
|
558
|
-
ID_TipoStock: number;
|
|
559
|
-
Nombre: string;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
600
|
declare class DetalleDTO {
|
|
563
601
|
NroContable: string;
|
|
564
602
|
Bodega: CodigoNombreDTO;
|
|
@@ -581,18 +619,6 @@ declare class DetalleDTO {
|
|
|
581
619
|
Estado: EstadoDTO;
|
|
582
620
|
}
|
|
583
621
|
|
|
584
|
-
declare class TipoDocumentoIdentidadDTO {
|
|
585
|
-
ID_TipoDocumentoIdentidad: number;
|
|
586
|
-
Nombre: string;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
declare class EmpresaLogisticaDTO {
|
|
590
|
-
ID_Empresa: number;
|
|
591
|
-
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
592
|
-
NumeroDocumentoIdentidad: string;
|
|
593
|
-
RazonSocial: string;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
622
|
declare class EstadoIntegracionDTO {
|
|
597
623
|
Estado: boolean;
|
|
598
624
|
FileId: string;
|
|
@@ -607,12 +633,6 @@ declare class FechaDTO {
|
|
|
607
633
|
Anulacion: Date;
|
|
608
634
|
}
|
|
609
635
|
|
|
610
|
-
declare class LoteDTO {
|
|
611
|
-
ID: number;
|
|
612
|
-
Lote: string;
|
|
613
|
-
FechaCaducidad: Date;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
636
|
declare class TipoMovimientoAlmacenDTO {
|
|
617
637
|
ID_TipoMovimientoAlmacen: number;
|
|
618
638
|
Nombre: string;
|
|
@@ -625,22 +645,6 @@ declare class MovimientoAlmacenDTO {
|
|
|
625
645
|
TipoStock: TipoStockStockPersonalDTO;
|
|
626
646
|
}
|
|
627
647
|
|
|
628
|
-
declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
629
|
-
ID_Pais: number;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
declare class PersonalLogisticaDTO {
|
|
633
|
-
Codigo: string;
|
|
634
|
-
IdPersonal: number;
|
|
635
|
-
IdRegister: number;
|
|
636
|
-
Identificacion: string;
|
|
637
|
-
Apellidos: string;
|
|
638
|
-
Nombres: string;
|
|
639
|
-
Lotes: LoteDTO[];
|
|
640
|
-
Empresa: EmpresaDTO;
|
|
641
|
-
Firma: string;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
648
|
declare class UsuarioLogisticaDTO {
|
|
645
649
|
Guia: UsuarioID_UsuarioDTO;
|
|
646
650
|
Ingreso: UsuarioID_UsuarioDTO;
|
|
@@ -649,10 +653,6 @@ declare class UsuarioLogisticaDTO {
|
|
|
649
653
|
Anulacion: UsuarioID_UsuarioDTO;
|
|
650
654
|
}
|
|
651
655
|
|
|
652
|
-
declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
653
|
-
ID_ZonaTrabajo: number;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
656
|
declare class SalidaAlmacenENTITY {
|
|
657
657
|
ID_DespachoAlmacen: number;
|
|
658
658
|
ID_GOM: number;
|
|
@@ -684,4 +684,36 @@ declare class SalidaAlmacenENTITY {
|
|
|
684
684
|
DatosTransportista: DatosTransportistaDTO;
|
|
685
685
|
}
|
|
686
686
|
|
|
687
|
-
|
|
687
|
+
declare class StockPersonalENTITY {
|
|
688
|
+
ID_StockPersonal: number;
|
|
689
|
+
Pais: PaisStockPersonalDTO;
|
|
690
|
+
Delegacion: CodigoNombreDTO;
|
|
691
|
+
Empresa: EmpresaLogisticaDTO;
|
|
692
|
+
Personal: PersonalLogisticaDTO;
|
|
693
|
+
Almacen: AlmacenLogisticaDTO;
|
|
694
|
+
Bodega: CodigoNombreDTO;
|
|
695
|
+
ZonaTrabajo: ZonaTrabajoDTO;
|
|
696
|
+
Item: ItemDetalleLogisticaDTO;
|
|
697
|
+
Lote: string;
|
|
698
|
+
Precio: number;
|
|
699
|
+
Tipo: string;
|
|
700
|
+
Despacho: number;
|
|
701
|
+
Devolucion: number;
|
|
702
|
+
Liquidacion: number;
|
|
703
|
+
DespachoTR: number;
|
|
704
|
+
DevolucionTR: number;
|
|
705
|
+
TipoStock: TipoStockStockPersonalDTO;
|
|
706
|
+
Reserva: string;
|
|
707
|
+
OrdenTrabajo: string;
|
|
708
|
+
Bobina: string;
|
|
709
|
+
CodigoBusqueda: string;
|
|
710
|
+
CodigoLlave: string;
|
|
711
|
+
FlagPex: number;
|
|
712
|
+
ID_GOM: number;
|
|
713
|
+
ID_incidencia: number;
|
|
714
|
+
ID_Reserva: number;
|
|
715
|
+
ID_Trabajo: number;
|
|
716
|
+
Estado: EstadoDTO;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialChile9512ENTITY, CoordenadasDTO, DataCatalogoItemDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTransportistaDTO, DetalleDTO, EmpresaDTO, EmpresaLogisticaDTO, EquipoLogisticaDTO, EquiposDTO, EstadoDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, GranFamiliaItemDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, LoteDTO, MovimientoAlmacenDTO, PaisStockPersonalDTO, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SizeDTO, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UnidadMedidaDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, validateAndFormatData };
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,15 @@ declare class AlmacenDTO {
|
|
|
8
8
|
Bodega: CodigoNombreDTO;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
declare class CodigoNombreDTO {
|
|
12
|
+
Codigo: string;
|
|
13
|
+
Nombre: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare class AlmacenLogisticaDTO extends CodigoNombreDTO {
|
|
17
|
+
ID_Almacen: number;
|
|
18
|
+
}
|
|
19
|
+
|
|
11
20
|
declare class UsuarioDTO {
|
|
12
21
|
Identificacion: string;
|
|
13
22
|
Apellidos: string;
|
|
@@ -27,11 +36,6 @@ declare class CodigoDescripcionDTO {
|
|
|
27
36
|
Descripcion: string;
|
|
28
37
|
}
|
|
29
38
|
|
|
30
|
-
declare class CodigoNombreDTO {
|
|
31
|
-
Codigo: string;
|
|
32
|
-
Nombre: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
39
|
declare class CodigoNombreUMDTO {
|
|
36
40
|
Codigo: string;
|
|
37
41
|
Nombre: string;
|
|
@@ -49,6 +53,18 @@ declare class EmpresaDTO {
|
|
|
49
53
|
Propia: boolean;
|
|
50
54
|
}
|
|
51
55
|
|
|
56
|
+
declare class TipoDocumentoIdentidadDTO {
|
|
57
|
+
ID_TipoDocumentoIdentidad: number;
|
|
58
|
+
Nombre: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
declare class EmpresaLogisticaDTO {
|
|
62
|
+
ID_Empresa: number;
|
|
63
|
+
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
64
|
+
NumeroDocumentoIdentidad: string;
|
|
65
|
+
RazonSocial: string;
|
|
66
|
+
}
|
|
67
|
+
|
|
52
68
|
declare class EstadoDTO {
|
|
53
69
|
ID_Estado: number;
|
|
54
70
|
Nombre: string;
|
|
@@ -89,6 +105,11 @@ declare class EstadoInternoDTO {
|
|
|
89
105
|
SubEstados: SubEstadoInternoDTO[];
|
|
90
106
|
}
|
|
91
107
|
|
|
108
|
+
declare class FamiliaItemDTO {
|
|
109
|
+
ID_FamiliaItem: number;
|
|
110
|
+
Nombre: string;
|
|
111
|
+
}
|
|
112
|
+
|
|
92
113
|
declare class SizeDTO {
|
|
93
114
|
Size: number;
|
|
94
115
|
UM: string;
|
|
@@ -130,11 +151,55 @@ declare class FotoDTO {
|
|
|
130
151
|
img: string;
|
|
131
152
|
}
|
|
132
153
|
|
|
154
|
+
declare class GranFamiliaItemDTO {
|
|
155
|
+
ID_GranFamiliaItem: number;
|
|
156
|
+
Nombre: string;
|
|
157
|
+
}
|
|
158
|
+
|
|
133
159
|
declare class UnidadMedidaDTO {
|
|
134
160
|
ID_UnidadMedida: number;
|
|
135
161
|
Nombre: string;
|
|
136
162
|
}
|
|
137
163
|
|
|
164
|
+
declare class ItemDetalleLogisticaDTO {
|
|
165
|
+
ID_Item: number;
|
|
166
|
+
Codigo: string;
|
|
167
|
+
Nombre: string;
|
|
168
|
+
Descripcion: string;
|
|
169
|
+
Variante: CodigoNombreDTO;
|
|
170
|
+
UnidadMedida: UnidadMedidaDTO;
|
|
171
|
+
GranFamiliaItem: GranFamiliaItemDTO;
|
|
172
|
+
FamiliaItem: FamiliaItemDTO;
|
|
173
|
+
Ind_SB: string;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
declare class LoteDTO {
|
|
177
|
+
ID: number;
|
|
178
|
+
Lote: string;
|
|
179
|
+
FechaCaducidad: Date;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
183
|
+
ID_Pais: number;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
declare class PersonalLogisticaDTO {
|
|
187
|
+
Codigo: string;
|
|
188
|
+
IdPersonal: number;
|
|
189
|
+
IdRegister: number;
|
|
190
|
+
Identificacion: string;
|
|
191
|
+
Apellidos: string;
|
|
192
|
+
Nombres: string;
|
|
193
|
+
Lotes: LoteDTO[];
|
|
194
|
+
Empresa: EmpresaDTO;
|
|
195
|
+
Firma: string;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
declare class TipoStockStockPersonalDTO {
|
|
199
|
+
ID_TipoStock: number;
|
|
200
|
+
Nombre: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
138
203
|
declare class UsuarioID_UsuarioDTO {
|
|
139
204
|
ID_Usuario: number;
|
|
140
205
|
NumeroDocumentoIdentidad: string;
|
|
@@ -148,6 +213,10 @@ declare class ValidadoDTO {
|
|
|
148
213
|
Usuario: UsuarioID_UsuarioDTO;
|
|
149
214
|
}
|
|
150
215
|
|
|
216
|
+
declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
217
|
+
ID_ZonaTrabajo: number;
|
|
218
|
+
}
|
|
219
|
+
|
|
151
220
|
declare class ContrataDTO {
|
|
152
221
|
FechaRegistro: Date;
|
|
153
222
|
Ultimo_Estado_Interno: EstadoInternoDTO;
|
|
@@ -506,10 +575,6 @@ declare class AtencionOrdenesLiquidadasENTITY {
|
|
|
506
575
|
Fuente: typeFuente;
|
|
507
576
|
}
|
|
508
577
|
|
|
509
|
-
declare class AlmacenLogisticaDTO extends CodigoNombreDTO {
|
|
510
|
-
ID_Almacen: number;
|
|
511
|
-
}
|
|
512
|
-
|
|
513
578
|
declare class DatosTransportistaDTO {
|
|
514
579
|
Identificacion: string;
|
|
515
580
|
Nombres: string;
|
|
@@ -532,33 +597,6 @@ declare class EquipoLogisticaDTO {
|
|
|
532
597
|
Estado: EstadoDTO;
|
|
533
598
|
}
|
|
534
599
|
|
|
535
|
-
declare class FamiliaItemDTO {
|
|
536
|
-
ID_FamiliaItem: number;
|
|
537
|
-
Nombre: string;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
declare class GranFamiliaItemDTO {
|
|
541
|
-
ID_GranFamiliaItem: number;
|
|
542
|
-
Nombre: string;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
declare class ItemDetalleLogisticaDTO {
|
|
546
|
-
ID_Item: number;
|
|
547
|
-
Codigo: string;
|
|
548
|
-
Nombre: string;
|
|
549
|
-
Descripcion: string;
|
|
550
|
-
Variante: CodigoNombreDTO;
|
|
551
|
-
UnidadMedida: UnidadMedidaDTO;
|
|
552
|
-
GranFamiliaItem: GranFamiliaItemDTO;
|
|
553
|
-
FamiliaItem: FamiliaItemDTO;
|
|
554
|
-
Ind_SB: string;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
declare class TipoStockStockPersonalDTO {
|
|
558
|
-
ID_TipoStock: number;
|
|
559
|
-
Nombre: string;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
600
|
declare class DetalleDTO {
|
|
563
601
|
NroContable: string;
|
|
564
602
|
Bodega: CodigoNombreDTO;
|
|
@@ -581,18 +619,6 @@ declare class DetalleDTO {
|
|
|
581
619
|
Estado: EstadoDTO;
|
|
582
620
|
}
|
|
583
621
|
|
|
584
|
-
declare class TipoDocumentoIdentidadDTO {
|
|
585
|
-
ID_TipoDocumentoIdentidad: number;
|
|
586
|
-
Nombre: string;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
declare class EmpresaLogisticaDTO {
|
|
590
|
-
ID_Empresa: number;
|
|
591
|
-
TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
|
|
592
|
-
NumeroDocumentoIdentidad: string;
|
|
593
|
-
RazonSocial: string;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
622
|
declare class EstadoIntegracionDTO {
|
|
597
623
|
Estado: boolean;
|
|
598
624
|
FileId: string;
|
|
@@ -607,12 +633,6 @@ declare class FechaDTO {
|
|
|
607
633
|
Anulacion: Date;
|
|
608
634
|
}
|
|
609
635
|
|
|
610
|
-
declare class LoteDTO {
|
|
611
|
-
ID: number;
|
|
612
|
-
Lote: string;
|
|
613
|
-
FechaCaducidad: Date;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
636
|
declare class TipoMovimientoAlmacenDTO {
|
|
617
637
|
ID_TipoMovimientoAlmacen: number;
|
|
618
638
|
Nombre: string;
|
|
@@ -625,22 +645,6 @@ declare class MovimientoAlmacenDTO {
|
|
|
625
645
|
TipoStock: TipoStockStockPersonalDTO;
|
|
626
646
|
}
|
|
627
647
|
|
|
628
|
-
declare class PaisStockPersonalDTO extends CodigoNombreDTO {
|
|
629
|
-
ID_Pais: number;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
declare class PersonalLogisticaDTO {
|
|
633
|
-
Codigo: string;
|
|
634
|
-
IdPersonal: number;
|
|
635
|
-
IdRegister: number;
|
|
636
|
-
Identificacion: string;
|
|
637
|
-
Apellidos: string;
|
|
638
|
-
Nombres: string;
|
|
639
|
-
Lotes: LoteDTO[];
|
|
640
|
-
Empresa: EmpresaDTO;
|
|
641
|
-
Firma: string;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
648
|
declare class UsuarioLogisticaDTO {
|
|
645
649
|
Guia: UsuarioID_UsuarioDTO;
|
|
646
650
|
Ingreso: UsuarioID_UsuarioDTO;
|
|
@@ -649,10 +653,6 @@ declare class UsuarioLogisticaDTO {
|
|
|
649
653
|
Anulacion: UsuarioID_UsuarioDTO;
|
|
650
654
|
}
|
|
651
655
|
|
|
652
|
-
declare class ZonaTrabajoDTO extends CodigoNombreDTO {
|
|
653
|
-
ID_ZonaTrabajo: number;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
656
|
declare class SalidaAlmacenENTITY {
|
|
657
657
|
ID_DespachoAlmacen: number;
|
|
658
658
|
ID_GOM: number;
|
|
@@ -684,4 +684,36 @@ declare class SalidaAlmacenENTITY {
|
|
|
684
684
|
DatosTransportista: DatosTransportistaDTO;
|
|
685
685
|
}
|
|
686
686
|
|
|
687
|
-
|
|
687
|
+
declare class StockPersonalENTITY {
|
|
688
|
+
ID_StockPersonal: number;
|
|
689
|
+
Pais: PaisStockPersonalDTO;
|
|
690
|
+
Delegacion: CodigoNombreDTO;
|
|
691
|
+
Empresa: EmpresaLogisticaDTO;
|
|
692
|
+
Personal: PersonalLogisticaDTO;
|
|
693
|
+
Almacen: AlmacenLogisticaDTO;
|
|
694
|
+
Bodega: CodigoNombreDTO;
|
|
695
|
+
ZonaTrabajo: ZonaTrabajoDTO;
|
|
696
|
+
Item: ItemDetalleLogisticaDTO;
|
|
697
|
+
Lote: string;
|
|
698
|
+
Precio: number;
|
|
699
|
+
Tipo: string;
|
|
700
|
+
Despacho: number;
|
|
701
|
+
Devolucion: number;
|
|
702
|
+
Liquidacion: number;
|
|
703
|
+
DespachoTR: number;
|
|
704
|
+
DevolucionTR: number;
|
|
705
|
+
TipoStock: TipoStockStockPersonalDTO;
|
|
706
|
+
Reserva: string;
|
|
707
|
+
OrdenTrabajo: string;
|
|
708
|
+
Bobina: string;
|
|
709
|
+
CodigoBusqueda: string;
|
|
710
|
+
CodigoLlave: string;
|
|
711
|
+
FlagPex: number;
|
|
712
|
+
ID_GOM: number;
|
|
713
|
+
ID_incidencia: number;
|
|
714
|
+
ID_Reserva: number;
|
|
715
|
+
ID_Trabajo: number;
|
|
716
|
+
Estado: EstadoDTO;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialChile9512ENTITY, CoordenadasDTO, DataCatalogoItemDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTransportistaDTO, DetalleDTO, EmpresaDTO, EmpresaLogisticaDTO, EquipoLogisticaDTO, EquiposDTO, EstadoDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, GranFamiliaItemDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, LoteDTO, MovimientoAlmacenDTO, PaisStockPersonalDTO, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SizeDTO, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UnidadMedidaDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, validateAndFormatData };
|