sigo-entities 1.2.326 → 1.2.328
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +9 -3
- package/dist/index.mjs +1396 -1390
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4849,6 +4849,7 @@ declare class StockAlmacenENTITY {
|
|
|
4849
4849
|
Despacho: number;
|
|
4850
4850
|
Devolucion: number;
|
|
4851
4851
|
Transito: number;
|
|
4852
|
+
Liquidacion: number;
|
|
4852
4853
|
TipoStock: TipoStockStockPersonalDTO;
|
|
4853
4854
|
CodigoBusqueda: string;
|
|
4854
4855
|
CodigoLlave: string;
|
|
@@ -8395,7 +8396,7 @@ declare class MaterialesSomacylDTO {
|
|
|
8395
8396
|
cantidad: number;
|
|
8396
8397
|
invsn: string;
|
|
8397
8398
|
invpool: string;
|
|
8398
|
-
|
|
8399
|
+
ID_Stock: number;
|
|
8399
8400
|
}
|
|
8400
8401
|
|
|
8401
8402
|
declare class ProductosServiciosContratadoSomacylDTO {
|
package/dist/index.d.ts
CHANGED
|
@@ -4849,6 +4849,7 @@ declare class StockAlmacenENTITY {
|
|
|
4849
4849
|
Despacho: number;
|
|
4850
4850
|
Devolucion: number;
|
|
4851
4851
|
Transito: number;
|
|
4852
|
+
Liquidacion: number;
|
|
4852
4853
|
TipoStock: TipoStockStockPersonalDTO;
|
|
4853
4854
|
CodigoBusqueda: string;
|
|
4854
4855
|
CodigoLlave: string;
|
|
@@ -8395,7 +8396,7 @@ declare class MaterialesSomacylDTO {
|
|
|
8395
8396
|
cantidad: number;
|
|
8396
8397
|
invsn: string;
|
|
8397
8398
|
invpool: string;
|
|
8398
|
-
|
|
8399
|
+
ID_Stock: number;
|
|
8399
8400
|
}
|
|
8400
8401
|
|
|
8401
8402
|
declare class ProductosServiciosContratadoSomacylDTO {
|
package/dist/index.js
CHANGED
|
@@ -26267,6 +26267,7 @@ var StockAlmacenENTITY = class {
|
|
|
26267
26267
|
Despacho = 0;
|
|
26268
26268
|
Devolucion = 0;
|
|
26269
26269
|
Transito = 0;
|
|
26270
|
+
Liquidacion = 0;
|
|
26270
26271
|
TipoStock = new TipoStockStockPersonalDTO();
|
|
26271
26272
|
CodigoBusqueda = "";
|
|
26272
26273
|
CodigoLlave = "";
|
|
@@ -26369,6 +26370,11 @@ __decorateClass([
|
|
|
26369
26370
|
(0, import_class_validator444.IsNotEmpty)({ message: "es requerido" }),
|
|
26370
26371
|
(0, import_class_validator444.Min)(0, { message: "el valor m\xEDnimo es 0" })
|
|
26371
26372
|
], StockAlmacenENTITY.prototype, "Transito", 2);
|
|
26373
|
+
__decorateClass([
|
|
26374
|
+
(0, import_class_validator444.IsDefined)({ message: "es requerido" }),
|
|
26375
|
+
(0, import_class_validator444.IsNumber)({}, { message: "debe ser un numero" }),
|
|
26376
|
+
(0, import_class_transformer446.Expose)()
|
|
26377
|
+
], StockAlmacenENTITY.prototype, "Liquidacion", 2);
|
|
26372
26378
|
__decorateClass([
|
|
26373
26379
|
(0, import_class_transformer446.Type)(() => TipoStockStockPersonalDTO),
|
|
26374
26380
|
(0, import_class_validator444.IsNotEmpty)({ message: "es requerido" }),
|
|
@@ -44658,7 +44664,7 @@ var MaterialesSomacylDTO = class {
|
|
|
44658
44664
|
cantidad = 0;
|
|
44659
44665
|
invsn = "";
|
|
44660
44666
|
invpool = "";
|
|
44661
|
-
|
|
44667
|
+
ID_Stock = 0;
|
|
44662
44668
|
};
|
|
44663
44669
|
__decorateClass([
|
|
44664
44670
|
(0, import_class_transformer720.Expose)(),
|
|
@@ -44687,9 +44693,9 @@ __decorateClass([
|
|
|
44687
44693
|
], MaterialesSomacylDTO.prototype, "invpool", 2);
|
|
44688
44694
|
__decorateClass([
|
|
44689
44695
|
(0, import_class_transformer720.Expose)(),
|
|
44690
|
-
(0, import_class_validator697.IsDefined)({ message: "El campo
|
|
44696
|
+
(0, import_class_validator697.IsDefined)({ message: "El campo ID_Stock es obligatorio." }),
|
|
44691
44697
|
(0, import_class_validator697.IsNumber)()
|
|
44692
|
-
], MaterialesSomacylDTO.prototype, "
|
|
44698
|
+
], MaterialesSomacylDTO.prototype, "ID_Stock", 2);
|
|
44693
44699
|
|
|
44694
44700
|
// src/operativa/procesos/somacyl_order/shared/dto/productos-servicios-contratado-somacyl-dto.ts
|
|
44695
44701
|
var import_class_transformer721 = require("class-transformer");
|