sigo-entities 0.0.37 → 0.0.38

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 CHANGED
@@ -840,6 +840,72 @@ declare class DevolucionAlmacenENTITY {
840
840
  Estado: EstadoDTO;
841
841
  }
842
842
 
843
+ declare class ItemLogisticaDTO {
844
+ Codigo: string;
845
+ }
846
+
847
+ declare class ContratoDTO {
848
+ Codigo: string;
849
+ FechaInicio: Date;
850
+ FechaFin: Date;
851
+ Item: ItemLogisticaDTO;
852
+ }
853
+
854
+ declare class ClienteDTO {
855
+ ID_Empresa: number;
856
+ TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
857
+ NumeroDocumentoIdentidad: string;
858
+ CodigoGlobal: string;
859
+ CodigoPlanilla: string;
860
+ RazonSocial: string;
861
+ Contrato: ContratoDTO[];
862
+ }
863
+
864
+ declare class ConversionLogisticaDTO {
865
+ ID_Item: number;
866
+ Codigo: string;
867
+ CodigoVariante: string;
868
+ ID_UnidadMedida: number;
869
+ FactorConversion: number;
870
+ }
871
+
872
+ declare class EmpresaStockPersonalDTO {
873
+ CodigoGlobal: string;
874
+ CodigoPlanilla: string;
875
+ ID_Empresa: number;
876
+ NumeroDocumentoIdentidad: string;
877
+ RazonSocial: string;
878
+ TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
879
+ }
880
+
881
+ declare class ItemENTITY {
882
+ ID_Item: number;
883
+ Propio: boolean;
884
+ Pais: PaisStockPersonalDTO;
885
+ Delegacion: CodigoNombreDTO;
886
+ Empresa: EmpresaStockPersonalDTO;
887
+ Cliente: ClienteDTO;
888
+ GranFamiliaItem: GranFamiliaItemDTO;
889
+ FamiliaItem: FamiliaItemDTO;
890
+ Codigo: string;
891
+ Nombre: string;
892
+ Descripcion: string;
893
+ Variante: CodigoNombreDTO[];
894
+ UnidadMedida: UnidadMedidaDTO[];
895
+ Ind_SB: string;
896
+ Merma: boolean;
897
+ Decimales: boolean;
898
+ Conversion: ConversionLogisticaDTO[];
899
+ Log: LogDTO;
900
+ Estado: EstadoDTO;
901
+ Tipo: string;
902
+ Valor: number;
903
+ Prioridad: number;
904
+ Relacion: string;
905
+ CodigoSAP: string;
906
+ Bitacora: BitacoraDTO[];
907
+ }
908
+
843
909
  declare class OptionCatalogoDTO {
844
910
  Code: string;
845
911
  Key: string;
@@ -913,4 +979,4 @@ declare class PersonalENTITY {
913
979
  EmpresasUsuario: EmpresaUsuarioDTO[];
914
980
  }
915
981
 
916
- export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialChile9512ENTITY, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTransportistaDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
982
+ export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialChile9512ENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTransportistaDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
package/dist/index.d.ts CHANGED
@@ -840,6 +840,72 @@ declare class DevolucionAlmacenENTITY {
840
840
  Estado: EstadoDTO;
841
841
  }
842
842
 
843
+ declare class ItemLogisticaDTO {
844
+ Codigo: string;
845
+ }
846
+
847
+ declare class ContratoDTO {
848
+ Codigo: string;
849
+ FechaInicio: Date;
850
+ FechaFin: Date;
851
+ Item: ItemLogisticaDTO;
852
+ }
853
+
854
+ declare class ClienteDTO {
855
+ ID_Empresa: number;
856
+ TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
857
+ NumeroDocumentoIdentidad: string;
858
+ CodigoGlobal: string;
859
+ CodigoPlanilla: string;
860
+ RazonSocial: string;
861
+ Contrato: ContratoDTO[];
862
+ }
863
+
864
+ declare class ConversionLogisticaDTO {
865
+ ID_Item: number;
866
+ Codigo: string;
867
+ CodigoVariante: string;
868
+ ID_UnidadMedida: number;
869
+ FactorConversion: number;
870
+ }
871
+
872
+ declare class EmpresaStockPersonalDTO {
873
+ CodigoGlobal: string;
874
+ CodigoPlanilla: string;
875
+ ID_Empresa: number;
876
+ NumeroDocumentoIdentidad: string;
877
+ RazonSocial: string;
878
+ TipoDocumentoIdentidad: TipoDocumentoIdentidadDTO;
879
+ }
880
+
881
+ declare class ItemENTITY {
882
+ ID_Item: number;
883
+ Propio: boolean;
884
+ Pais: PaisStockPersonalDTO;
885
+ Delegacion: CodigoNombreDTO;
886
+ Empresa: EmpresaStockPersonalDTO;
887
+ Cliente: ClienteDTO;
888
+ GranFamiliaItem: GranFamiliaItemDTO;
889
+ FamiliaItem: FamiliaItemDTO;
890
+ Codigo: string;
891
+ Nombre: string;
892
+ Descripcion: string;
893
+ Variante: CodigoNombreDTO[];
894
+ UnidadMedida: UnidadMedidaDTO[];
895
+ Ind_SB: string;
896
+ Merma: boolean;
897
+ Decimales: boolean;
898
+ Conversion: ConversionLogisticaDTO[];
899
+ Log: LogDTO;
900
+ Estado: EstadoDTO;
901
+ Tipo: string;
902
+ Valor: number;
903
+ Prioridad: number;
904
+ Relacion: string;
905
+ CodigoSAP: string;
906
+ Bitacora: BitacoraDTO[];
907
+ }
908
+
843
909
  declare class OptionCatalogoDTO {
844
910
  Code: string;
845
911
  Key: string;
@@ -913,4 +979,4 @@ declare class PersonalENTITY {
913
979
  EmpresasUsuario: EmpresaUsuarioDTO[];
914
980
  }
915
981
 
916
- export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialChile9512ENTITY, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTransportistaDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
982
+ export { AlmacenDTO, AlmacenLogisticaDTO, AsignacionGomDTO, AtencionOrdenesLiquidadasENTITY, BitacoraAntiguaDTO, BitacoraDTO, ClienteDTO, CodigoDescripcionDTO, CodigoNombreDTO, CodigoNombreUMDTO, CodigoRazonSocialDTO, ConsumoMaterialChile9512ENTITY, ContratoDTO, ConversionLogisticaDTO, CoordenadasDTO, DataCatalogoItemDTO, DatosAreaPersonalDTO, DatosGeneralesPersonalDTO, DatosItemDTO, DatosPrecioMaterialDTO, DatosReferenciaDTO, DatosTrabajoCatalogoDTO, DatosTransportistaDTO, DetalleDTO, DevolucionAlmacenENTITY, EmpresaDTO, EmpresaLogisticaDTO, EmpresaStockPersonalDTO, EmpresaUsuarioDTO, EquipoLogisticaDTO, EquiposDTO, EstadoAntiguoDTO, EstadoDTO, EstadoHPListDTO, EstadoIntegracionDTO, EstadoInternoDTO, FamiliaItemDTO, FechaDTO, FilesDocDTO, FlujoDocDTO, FotoDTO, FotosDTO, FotosSSTDTO, GranFamiliaItemDTO, ItemCantidadesDTO, ItemDTO, ItemDetalleLogisticaDTO, ItemENTITY, ItemLogisticaDTO, LogDTO, LogRegisterDTO, LoteDTO, MovimientoAlmacenDTO, MovimientoAlmacenENTITY, OTDTO, OptionCatalogoDTO, PaisStockPersonalDTO, ParteDiarioDTO, PersonalENTITY, PersonalLogisticaDTO, PreciosVigentesDTO, ReservaENTITY, SalidaAlmacenENTITY, SincronizacionPersonalDTO, SizeDTO, StockPersonalENTITY, StockPersonalEquiposENTITY, SubEstadoInternoDTO, TipoDocumentoIdentidadDTO, TipoMovimientoAlmacenDTO, TipoStockStockPersonalDTO, TrabajoENTITY, UbicacionDTO, UnidadMedidaDTO, UsuarioBitacoraDTO, UsuarioDTO, UsuarioEdicionDTO, UsuarioID_UsuarioDTO, UsuarioLogisticaDTO, ValidadoDTO, VarianteDTO, VigenciaDTO, WBEDTO, ZonaTrabajoDTO, type typeEstado, type typeEstadoNroDocumento, type typeFuente, type typeTipo, validateAndFormatData };
package/dist/index.js CHANGED
@@ -34,11 +34,14 @@ __export(src_exports, {
34
34
  AtencionOrdenesLiquidadasENTITY: () => AtencionOrdenesLiquidadasENTITY,
35
35
  BitacoraAntiguaDTO: () => BitacoraAntiguaDTO,
36
36
  BitacoraDTO: () => BitacoraDTO,
37
+ ClienteDTO: () => ClienteDTO,
37
38
  CodigoDescripcionDTO: () => CodigoDescripcionDTO,
38
39
  CodigoNombreDTO: () => CodigoNombreDTO,
39
40
  CodigoNombreUMDTO: () => CodigoNombreUMDTO,
40
41
  CodigoRazonSocialDTO: () => CodigoRazonSocialDTO,
41
42
  ConsumoMaterialChile9512ENTITY: () => ConsumoMaterialChile9512ENTITY,
43
+ ContratoDTO: () => ContratoDTO,
44
+ ConversionLogisticaDTO: () => ConversionLogisticaDTO,
42
45
  CoordenadasDTO: () => CoordenadasDTO,
43
46
  DataCatalogoItemDTO: () => DataCatalogoItemDTO,
44
47
  DatosAreaPersonalDTO: () => DatosAreaPersonalDTO,
@@ -52,6 +55,7 @@ __export(src_exports, {
52
55
  DevolucionAlmacenENTITY: () => DevolucionAlmacenENTITY,
53
56
  EmpresaDTO: () => EmpresaDTO,
54
57
  EmpresaLogisticaDTO: () => EmpresaLogisticaDTO,
58
+ EmpresaStockPersonalDTO: () => EmpresaStockPersonalDTO,
55
59
  EmpresaUsuarioDTO: () => EmpresaUsuarioDTO,
56
60
  EquipoLogisticaDTO: () => EquipoLogisticaDTO,
57
61
  EquiposDTO: () => EquiposDTO,
@@ -71,6 +75,8 @@ __export(src_exports, {
71
75
  ItemCantidadesDTO: () => ItemCantidadesDTO,
72
76
  ItemDTO: () => ItemDTO,
73
77
  ItemDetalleLogisticaDTO: () => ItemDetalleLogisticaDTO,
78
+ ItemENTITY: () => ItemENTITY,
79
+ ItemLogisticaDTO: () => ItemLogisticaDTO,
74
80
  LogDTO: () => LogDTO,
75
81
  LogRegisterDTO: () => LogRegisterDTO,
76
82
  LoteDTO: () => LoteDTO,
@@ -4092,6 +4098,78 @@ __decorateClass([
4092
4098
  (0, import_class_validator70.ValidateNested)()
4093
4099
  ], DevolucionAlmacenENTITY.prototype, "Estado", 2);
4094
4100
 
4101
+ // src/logistica/items/shared/dto/cliente-dto.ts
4102
+ var ClienteDTO = class {
4103
+ ID_Empresa = 0;
4104
+ TipoDocumentoIdentidad = new TipoDocumentoIdentidadDTO();
4105
+ NumeroDocumentoIdentidad = "";
4106
+ CodigoGlobal = "";
4107
+ CodigoPlanilla = "";
4108
+ RazonSocial = "";
4109
+ Contrato = [];
4110
+ };
4111
+
4112
+ // src/logistica/items/shared/dto/item-logistica-dto.ts
4113
+ var ItemLogisticaDTO = class {
4114
+ Codigo = "";
4115
+ };
4116
+
4117
+ // src/logistica/items/shared/dto/contrato-dto.ts
4118
+ var ContratoDTO = class {
4119
+ Codigo = "";
4120
+ FechaInicio = /* @__PURE__ */ new Date();
4121
+ FechaFin = /* @__PURE__ */ new Date();
4122
+ Item = new ItemLogisticaDTO();
4123
+ };
4124
+
4125
+ // src/logistica/items/shared/dto/conversion-logistica-dto.ts
4126
+ var ConversionLogisticaDTO = class {
4127
+ ID_Item = 0;
4128
+ Codigo = "";
4129
+ CodigoVariante = "";
4130
+ ID_UnidadMedida = 0;
4131
+ FactorConversion = 0;
4132
+ };
4133
+
4134
+ // src/logistica/items/shared/dto/empresa.stock-personal-dto.ts
4135
+ var EmpresaStockPersonalDTO = class {
4136
+ CodigoGlobal = "";
4137
+ CodigoPlanilla = "";
4138
+ ID_Empresa = 0;
4139
+ NumeroDocumentoIdentidad = "";
4140
+ RazonSocial = "";
4141
+ TipoDocumentoIdentidad = new TipoDocumentoIdentidadDTO();
4142
+ };
4143
+
4144
+ // src/logistica/items/shared/index.ts
4145
+ var ItemENTITY = class {
4146
+ ID_Item = 0;
4147
+ Propio = true;
4148
+ Pais = new PaisStockPersonalDTO();
4149
+ Delegacion = new CodigoNombreDTO();
4150
+ Empresa = new EmpresaStockPersonalDTO();
4151
+ Cliente = new ClienteDTO();
4152
+ GranFamiliaItem = new GranFamiliaItemDTO();
4153
+ FamiliaItem = new FamiliaItemDTO();
4154
+ Codigo = "";
4155
+ Nombre = "";
4156
+ Descripcion = "";
4157
+ Variante = [];
4158
+ UnidadMedida = [];
4159
+ Ind_SB = "";
4160
+ Merma = true;
4161
+ Decimales = true;
4162
+ Conversion = [];
4163
+ Log = new LogDTO();
4164
+ Estado = new EstadoDTO();
4165
+ Tipo = "";
4166
+ Valor = 0;
4167
+ Prioridad = 0;
4168
+ Relacion = "";
4169
+ CodigoSAP = "";
4170
+ Bitacora = [];
4171
+ };
4172
+
4095
4173
  // src/configuracion/personal/shared/dto/datos-area-personal-dto.ts
4096
4174
  var import_class_transformer72 = require("class-transformer");
4097
4175
 
@@ -4480,11 +4558,14 @@ __decorateClass([
4480
4558
  AtencionOrdenesLiquidadasENTITY,
4481
4559
  BitacoraAntiguaDTO,
4482
4560
  BitacoraDTO,
4561
+ ClienteDTO,
4483
4562
  CodigoDescripcionDTO,
4484
4563
  CodigoNombreDTO,
4485
4564
  CodigoNombreUMDTO,
4486
4565
  CodigoRazonSocialDTO,
4487
4566
  ConsumoMaterialChile9512ENTITY,
4567
+ ContratoDTO,
4568
+ ConversionLogisticaDTO,
4488
4569
  CoordenadasDTO,
4489
4570
  DataCatalogoItemDTO,
4490
4571
  DatosAreaPersonalDTO,
@@ -4498,6 +4579,7 @@ __decorateClass([
4498
4579
  DevolucionAlmacenENTITY,
4499
4580
  EmpresaDTO,
4500
4581
  EmpresaLogisticaDTO,
4582
+ EmpresaStockPersonalDTO,
4501
4583
  EmpresaUsuarioDTO,
4502
4584
  EquipoLogisticaDTO,
4503
4585
  EquiposDTO,
@@ -4517,6 +4599,8 @@ __decorateClass([
4517
4599
  ItemCantidadesDTO,
4518
4600
  ItemDTO,
4519
4601
  ItemDetalleLogisticaDTO,
4602
+ ItemENTITY,
4603
+ ItemLogisticaDTO,
4520
4604
  LogDTO,
4521
4605
  LogRegisterDTO,
4522
4606
  LoteDTO,
package/dist/index.mjs CHANGED
@@ -4003,6 +4003,78 @@ __decorateClass([
4003
4003
  ValidateNested37()
4004
4004
  ], DevolucionAlmacenENTITY.prototype, "Estado", 2);
4005
4005
 
4006
+ // src/logistica/items/shared/dto/cliente-dto.ts
4007
+ var ClienteDTO = class {
4008
+ ID_Empresa = 0;
4009
+ TipoDocumentoIdentidad = new TipoDocumentoIdentidadDTO();
4010
+ NumeroDocumentoIdentidad = "";
4011
+ CodigoGlobal = "";
4012
+ CodigoPlanilla = "";
4013
+ RazonSocial = "";
4014
+ Contrato = [];
4015
+ };
4016
+
4017
+ // src/logistica/items/shared/dto/item-logistica-dto.ts
4018
+ var ItemLogisticaDTO = class {
4019
+ Codigo = "";
4020
+ };
4021
+
4022
+ // src/logistica/items/shared/dto/contrato-dto.ts
4023
+ var ContratoDTO = class {
4024
+ Codigo = "";
4025
+ FechaInicio = /* @__PURE__ */ new Date();
4026
+ FechaFin = /* @__PURE__ */ new Date();
4027
+ Item = new ItemLogisticaDTO();
4028
+ };
4029
+
4030
+ // src/logistica/items/shared/dto/conversion-logistica-dto.ts
4031
+ var ConversionLogisticaDTO = class {
4032
+ ID_Item = 0;
4033
+ Codigo = "";
4034
+ CodigoVariante = "";
4035
+ ID_UnidadMedida = 0;
4036
+ FactorConversion = 0;
4037
+ };
4038
+
4039
+ // src/logistica/items/shared/dto/empresa.stock-personal-dto.ts
4040
+ var EmpresaStockPersonalDTO = class {
4041
+ CodigoGlobal = "";
4042
+ CodigoPlanilla = "";
4043
+ ID_Empresa = 0;
4044
+ NumeroDocumentoIdentidad = "";
4045
+ RazonSocial = "";
4046
+ TipoDocumentoIdentidad = new TipoDocumentoIdentidadDTO();
4047
+ };
4048
+
4049
+ // src/logistica/items/shared/index.ts
4050
+ var ItemENTITY = class {
4051
+ ID_Item = 0;
4052
+ Propio = true;
4053
+ Pais = new PaisStockPersonalDTO();
4054
+ Delegacion = new CodigoNombreDTO();
4055
+ Empresa = new EmpresaStockPersonalDTO();
4056
+ Cliente = new ClienteDTO();
4057
+ GranFamiliaItem = new GranFamiliaItemDTO();
4058
+ FamiliaItem = new FamiliaItemDTO();
4059
+ Codigo = "";
4060
+ Nombre = "";
4061
+ Descripcion = "";
4062
+ Variante = [];
4063
+ UnidadMedida = [];
4064
+ Ind_SB = "";
4065
+ Merma = true;
4066
+ Decimales = true;
4067
+ Conversion = [];
4068
+ Log = new LogDTO();
4069
+ Estado = new EstadoDTO();
4070
+ Tipo = "";
4071
+ Valor = 0;
4072
+ Prioridad = 0;
4073
+ Relacion = "";
4074
+ CodigoSAP = "";
4075
+ Bitacora = [];
4076
+ };
4077
+
4006
4078
  // src/configuracion/personal/shared/dto/datos-area-personal-dto.ts
4007
4079
  import { Expose as Expose71, Type as Type38 } from "class-transformer";
4008
4080
 
@@ -4390,11 +4462,14 @@ export {
4390
4462
  AtencionOrdenesLiquidadasENTITY,
4391
4463
  BitacoraAntiguaDTO,
4392
4464
  BitacoraDTO,
4465
+ ClienteDTO,
4393
4466
  CodigoDescripcionDTO,
4394
4467
  CodigoNombreDTO,
4395
4468
  CodigoNombreUMDTO,
4396
4469
  CodigoRazonSocialDTO,
4397
4470
  ConsumoMaterialChile9512ENTITY,
4471
+ ContratoDTO,
4472
+ ConversionLogisticaDTO,
4398
4473
  CoordenadasDTO,
4399
4474
  DataCatalogoItemDTO,
4400
4475
  DatosAreaPersonalDTO,
@@ -4408,6 +4483,7 @@ export {
4408
4483
  DevolucionAlmacenENTITY,
4409
4484
  EmpresaDTO,
4410
4485
  EmpresaLogisticaDTO,
4486
+ EmpresaStockPersonalDTO,
4411
4487
  EmpresaUsuarioDTO,
4412
4488
  EquipoLogisticaDTO,
4413
4489
  EquiposDTO,
@@ -4427,6 +4503,8 @@ export {
4427
4503
  ItemCantidadesDTO,
4428
4504
  ItemDTO,
4429
4505
  ItemDetalleLogisticaDTO,
4506
+ ItemENTITY,
4507
+ ItemLogisticaDTO,
4430
4508
  LogDTO,
4431
4509
  LogRegisterDTO,
4432
4510
  LoteDTO,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigo-entities",
3
- "version": "0.0.37",
3
+ "version": "0.0.38",
4
4
  "description": "Desarrollo de modelos de datos SIGO",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",