bdpformulas 1.0.15 → 1.0.16
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/build/models/pecuary/costos.schema.d.ts +76 -0
- package/build/models/pecuary/costos.schema.js +32 -0
- package/build/models/pecuary/sales.schema.d.ts +116 -0
- package/build/models/pecuary/sales.schema.js +11 -0
- package/build/strategies/pecuary/anexo.strategy.js +20 -1
- package/build/strategies/pecuary/ventas.detail/estacionalidadCalc.js +7 -4
- package/build/strategies/pecuary/ventas.detail/ventasIngresosCalc.js +1 -1
- package/build/strategies/pecuary/ventas.strategy.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const CostosPecSchema: z.ZodObject<{
|
|
3
|
+
EvaluacionId: z.ZodNumber;
|
|
4
|
+
ActividadEconomicaId: z.ZodNumber;
|
|
5
|
+
PID: z.ZodNumber;
|
|
6
|
+
Conceptos: z.ZodArray<z.ZodObject<{
|
|
7
|
+
IndicadorABM: z.ZodEnum<["N", "M"]>;
|
|
8
|
+
RubroId: z.ZodString;
|
|
9
|
+
Subtipo: z.ZodString;
|
|
10
|
+
Correlativo: z.ZodNumber;
|
|
11
|
+
Monto: z.ZodNumber;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
RubroId: string;
|
|
14
|
+
IndicadorABM: "N" | "M";
|
|
15
|
+
Monto: number;
|
|
16
|
+
Correlativo: number;
|
|
17
|
+
Subtipo: string;
|
|
18
|
+
}, {
|
|
19
|
+
RubroId: string;
|
|
20
|
+
IndicadorABM: "N" | "M";
|
|
21
|
+
Monto: number;
|
|
22
|
+
Correlativo: number;
|
|
23
|
+
Subtipo: string;
|
|
24
|
+
}>, "many">;
|
|
25
|
+
Comportamiento: z.ZodArray<z.ZodObject<{
|
|
26
|
+
RubroId: z.ZodString;
|
|
27
|
+
IndicadorABM: z.ZodEnum<["N", "M"]>;
|
|
28
|
+
Unidad: z.ZodString;
|
|
29
|
+
CicloId: z.ZodString;
|
|
30
|
+
}, "strip", z.ZodTypeAny, {
|
|
31
|
+
RubroId: string;
|
|
32
|
+
IndicadorABM: "N" | "M";
|
|
33
|
+
Unidad: string;
|
|
34
|
+
CicloId: string;
|
|
35
|
+
}, {
|
|
36
|
+
RubroId: string;
|
|
37
|
+
IndicadorABM: "N" | "M";
|
|
38
|
+
Unidad: string;
|
|
39
|
+
CicloId: string;
|
|
40
|
+
}>, "many">;
|
|
41
|
+
}, "strip", z.ZodTypeAny, {
|
|
42
|
+
EvaluacionId: number;
|
|
43
|
+
ActividadEconomicaId: number;
|
|
44
|
+
PID: number;
|
|
45
|
+
Conceptos: {
|
|
46
|
+
RubroId: string;
|
|
47
|
+
IndicadorABM: "N" | "M";
|
|
48
|
+
Monto: number;
|
|
49
|
+
Correlativo: number;
|
|
50
|
+
Subtipo: string;
|
|
51
|
+
}[];
|
|
52
|
+
Comportamiento: {
|
|
53
|
+
RubroId: string;
|
|
54
|
+
IndicadorABM: "N" | "M";
|
|
55
|
+
Unidad: string;
|
|
56
|
+
CicloId: string;
|
|
57
|
+
}[];
|
|
58
|
+
}, {
|
|
59
|
+
EvaluacionId: number;
|
|
60
|
+
ActividadEconomicaId: number;
|
|
61
|
+
PID: number;
|
|
62
|
+
Conceptos: {
|
|
63
|
+
RubroId: string;
|
|
64
|
+
IndicadorABM: "N" | "M";
|
|
65
|
+
Monto: number;
|
|
66
|
+
Correlativo: number;
|
|
67
|
+
Subtipo: string;
|
|
68
|
+
}[];
|
|
69
|
+
Comportamiento: {
|
|
70
|
+
RubroId: string;
|
|
71
|
+
IndicadorABM: "N" | "M";
|
|
72
|
+
Unidad: string;
|
|
73
|
+
CicloId: string;
|
|
74
|
+
}[];
|
|
75
|
+
}>;
|
|
76
|
+
export type CostosPecType = z.infer<typeof CostosPecSchema>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CostosPecSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const Comportamiento = zod_1.z.object({
|
|
6
|
+
RubroId: zod_1.z.string().max(50),
|
|
7
|
+
IndicadorABM: zod_1.z.enum(['N', 'M']),
|
|
8
|
+
Unidad: zod_1.z.string().max(50),
|
|
9
|
+
CicloId: zod_1.z.string().max(20),
|
|
10
|
+
});
|
|
11
|
+
const Conceptos = zod_1.z.object({
|
|
12
|
+
IndicadorABM: zod_1.z.enum(['N', 'M']),
|
|
13
|
+
RubroId: zod_1.z.string().max(50),
|
|
14
|
+
Subtipo: zod_1.z.string().max(50),
|
|
15
|
+
Correlativo: zod_1.z.number(),
|
|
16
|
+
Monto: zod_1.z.number(),
|
|
17
|
+
});
|
|
18
|
+
exports.CostosPecSchema = zod_1.z.object({
|
|
19
|
+
EvaluacionId: zod_1.z.number(),
|
|
20
|
+
ActividadEconomicaId: zod_1.z.number(),
|
|
21
|
+
PID: zod_1.z.number(),
|
|
22
|
+
Conceptos: zod_1.z.array(Conceptos),
|
|
23
|
+
Comportamiento: zod_1.z.array(Comportamiento),
|
|
24
|
+
});
|
|
25
|
+
// const CalcVentas=z.object({
|
|
26
|
+
// Auxiliar: AuxiliarSchema,
|
|
27
|
+
// Desarrollo: DesarrolloSchema,
|
|
28
|
+
// Ventas: VentasPecSchema,
|
|
29
|
+
//
|
|
30
|
+
// })
|
|
31
|
+
//
|
|
32
|
+
// export type CalcVentasType = z.infer<typeof CalcVentas>;
|
|
@@ -35,6 +35,37 @@ export declare const VentasPecSchema: z.ZodObject<{
|
|
|
35
35
|
Monto: number;
|
|
36
36
|
Correlativo: number;
|
|
37
37
|
}>, "many">;
|
|
38
|
+
OtrosIngresos: z.ZodArray<z.ZodObject<{
|
|
39
|
+
IndicadorABM: z.ZodEnum<["N", "M", "A", "B"]>;
|
|
40
|
+
Descripcion: z.ZodString;
|
|
41
|
+
Secuencia: z.ZodNumber;
|
|
42
|
+
Montos: z.ZodArray<z.ZodObject<{
|
|
43
|
+
Correlativo: z.ZodNumber;
|
|
44
|
+
Monto: z.ZodNumber;
|
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
Monto: number;
|
|
47
|
+
Correlativo: number;
|
|
48
|
+
}, {
|
|
49
|
+
Monto: number;
|
|
50
|
+
Correlativo: number;
|
|
51
|
+
}>, "many">;
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
54
|
+
Descripcion: string;
|
|
55
|
+
Secuencia: number;
|
|
56
|
+
Montos: {
|
|
57
|
+
Monto: number;
|
|
58
|
+
Correlativo: number;
|
|
59
|
+
}[];
|
|
60
|
+
}, {
|
|
61
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
62
|
+
Descripcion: string;
|
|
63
|
+
Secuencia: number;
|
|
64
|
+
Montos: {
|
|
65
|
+
Monto: number;
|
|
66
|
+
Correlativo: number;
|
|
67
|
+
}[];
|
|
68
|
+
}>, "many">;
|
|
38
69
|
}, "strip", z.ZodTypeAny, {
|
|
39
70
|
EvaluacionId: number;
|
|
40
71
|
ActividadEconomicaId: number;
|
|
@@ -51,6 +82,15 @@ export declare const VentasPecSchema: z.ZodObject<{
|
|
|
51
82
|
Monto: number;
|
|
52
83
|
Correlativo: number;
|
|
53
84
|
}[];
|
|
85
|
+
OtrosIngresos: {
|
|
86
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
87
|
+
Descripcion: string;
|
|
88
|
+
Secuencia: number;
|
|
89
|
+
Montos: {
|
|
90
|
+
Monto: number;
|
|
91
|
+
Correlativo: number;
|
|
92
|
+
}[];
|
|
93
|
+
}[];
|
|
54
94
|
}, {
|
|
55
95
|
EvaluacionId: number;
|
|
56
96
|
ActividadEconomicaId: number;
|
|
@@ -67,6 +107,15 @@ export declare const VentasPecSchema: z.ZodObject<{
|
|
|
67
107
|
Monto: number;
|
|
68
108
|
Correlativo: number;
|
|
69
109
|
}[];
|
|
110
|
+
OtrosIngresos: {
|
|
111
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
112
|
+
Descripcion: string;
|
|
113
|
+
Secuencia: number;
|
|
114
|
+
Montos: {
|
|
115
|
+
Monto: number;
|
|
116
|
+
Correlativo: number;
|
|
117
|
+
}[];
|
|
118
|
+
}[];
|
|
70
119
|
}>;
|
|
71
120
|
export type VentasPecType = z.infer<typeof VentasPecSchema>;
|
|
72
121
|
declare const CalcVentas: z.ZodObject<{
|
|
@@ -478,6 +527,37 @@ declare const CalcVentas: z.ZodObject<{
|
|
|
478
527
|
Monto: number;
|
|
479
528
|
Correlativo: number;
|
|
480
529
|
}>, "many">;
|
|
530
|
+
OtrosIngresos: z.ZodArray<z.ZodObject<{
|
|
531
|
+
IndicadorABM: z.ZodEnum<["N", "M", "A", "B"]>;
|
|
532
|
+
Descripcion: z.ZodString;
|
|
533
|
+
Secuencia: z.ZodNumber;
|
|
534
|
+
Montos: z.ZodArray<z.ZodObject<{
|
|
535
|
+
Correlativo: z.ZodNumber;
|
|
536
|
+
Monto: z.ZodNumber;
|
|
537
|
+
}, "strip", z.ZodTypeAny, {
|
|
538
|
+
Monto: number;
|
|
539
|
+
Correlativo: number;
|
|
540
|
+
}, {
|
|
541
|
+
Monto: number;
|
|
542
|
+
Correlativo: number;
|
|
543
|
+
}>, "many">;
|
|
544
|
+
}, "strip", z.ZodTypeAny, {
|
|
545
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
546
|
+
Descripcion: string;
|
|
547
|
+
Secuencia: number;
|
|
548
|
+
Montos: {
|
|
549
|
+
Monto: number;
|
|
550
|
+
Correlativo: number;
|
|
551
|
+
}[];
|
|
552
|
+
}, {
|
|
553
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
554
|
+
Descripcion: string;
|
|
555
|
+
Secuencia: number;
|
|
556
|
+
Montos: {
|
|
557
|
+
Monto: number;
|
|
558
|
+
Correlativo: number;
|
|
559
|
+
}[];
|
|
560
|
+
}>, "many">;
|
|
481
561
|
}, "strip", z.ZodTypeAny, {
|
|
482
562
|
EvaluacionId: number;
|
|
483
563
|
ActividadEconomicaId: number;
|
|
@@ -494,6 +574,15 @@ declare const CalcVentas: z.ZodObject<{
|
|
|
494
574
|
Monto: number;
|
|
495
575
|
Correlativo: number;
|
|
496
576
|
}[];
|
|
577
|
+
OtrosIngresos: {
|
|
578
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
579
|
+
Descripcion: string;
|
|
580
|
+
Secuencia: number;
|
|
581
|
+
Montos: {
|
|
582
|
+
Monto: number;
|
|
583
|
+
Correlativo: number;
|
|
584
|
+
}[];
|
|
585
|
+
}[];
|
|
497
586
|
}, {
|
|
498
587
|
EvaluacionId: number;
|
|
499
588
|
ActividadEconomicaId: number;
|
|
@@ -510,6 +599,15 @@ declare const CalcVentas: z.ZodObject<{
|
|
|
510
599
|
Monto: number;
|
|
511
600
|
Correlativo: number;
|
|
512
601
|
}[];
|
|
602
|
+
OtrosIngresos: {
|
|
603
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
604
|
+
Descripcion: string;
|
|
605
|
+
Secuencia: number;
|
|
606
|
+
Montos: {
|
|
607
|
+
Monto: number;
|
|
608
|
+
Correlativo: number;
|
|
609
|
+
}[];
|
|
610
|
+
}[];
|
|
513
611
|
}>;
|
|
514
612
|
}, "strip", z.ZodTypeAny, {
|
|
515
613
|
Desarrollo: {
|
|
@@ -610,6 +708,15 @@ declare const CalcVentas: z.ZodObject<{
|
|
|
610
708
|
Monto: number;
|
|
611
709
|
Correlativo: number;
|
|
612
710
|
}[];
|
|
711
|
+
OtrosIngresos: {
|
|
712
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
713
|
+
Descripcion: string;
|
|
714
|
+
Secuencia: number;
|
|
715
|
+
Montos: {
|
|
716
|
+
Monto: number;
|
|
717
|
+
Correlativo: number;
|
|
718
|
+
}[];
|
|
719
|
+
}[];
|
|
613
720
|
};
|
|
614
721
|
}, {
|
|
615
722
|
Desarrollo: {
|
|
@@ -710,6 +817,15 @@ declare const CalcVentas: z.ZodObject<{
|
|
|
710
817
|
Monto: number;
|
|
711
818
|
Correlativo: number;
|
|
712
819
|
}[];
|
|
820
|
+
OtrosIngresos: {
|
|
821
|
+
IndicadorABM: "A" | "N" | "M" | "B";
|
|
822
|
+
Descripcion: string;
|
|
823
|
+
Secuencia: number;
|
|
824
|
+
Montos: {
|
|
825
|
+
Monto: number;
|
|
826
|
+
Correlativo: number;
|
|
827
|
+
}[];
|
|
828
|
+
}[];
|
|
713
829
|
};
|
|
714
830
|
}>;
|
|
715
831
|
export type CalcVentasType = z.infer<typeof CalcVentas>;
|
|
@@ -16,12 +16,23 @@ const estacionalidad = zod_1.z.object({
|
|
|
16
16
|
Correlativo: zod_1.z.number(),
|
|
17
17
|
Monto: zod_1.z.number(),
|
|
18
18
|
});
|
|
19
|
+
const otroSchema = zod_1.z.object({
|
|
20
|
+
Correlativo: zod_1.z.number(),
|
|
21
|
+
Monto: zod_1.z.number(),
|
|
22
|
+
});
|
|
23
|
+
const otrosIngresosSchema = zod_1.z.object({
|
|
24
|
+
IndicadorABM: zod_1.z.enum(['N', 'M', 'A', 'B']),
|
|
25
|
+
Descripcion: zod_1.z.string().max(250),
|
|
26
|
+
Secuencia: zod_1.z.number(),
|
|
27
|
+
Montos: zod_1.z.array(otroSchema),
|
|
28
|
+
});
|
|
19
29
|
exports.VentasPecSchema = zod_1.z.object({
|
|
20
30
|
EvaluacionId: zod_1.z.number(),
|
|
21
31
|
ActividadEconomicaId: zod_1.z.number(),
|
|
22
32
|
PID: zod_1.z.number(),
|
|
23
33
|
Ventas: zod_1.z.array(ventas),
|
|
24
34
|
Estacionalidad: zod_1.z.array(estacionalidad),
|
|
35
|
+
OtrosIngresos: zod_1.z.array(otrosIngresosSchema),
|
|
25
36
|
});
|
|
26
37
|
const CalcVentas = zod_1.z.object({
|
|
27
38
|
Auxiliar: auxiliar_schema_1.AuxiliarSchema,
|
|
@@ -12,6 +12,8 @@ const calcularHato = (data) => {
|
|
|
12
12
|
if (Object.keys(acc).length === 0) {
|
|
13
13
|
acc.Gestion = item.Gestion;
|
|
14
14
|
acc.key = 'PRECIOS';
|
|
15
|
+
acc.Descripcion = 'PRECIO EN BS';
|
|
16
|
+
acc.Orden = 1;
|
|
15
17
|
acc.GestionDesc = item.GestionDesc;
|
|
16
18
|
acc.Total = parseFloat('0');
|
|
17
19
|
}
|
|
@@ -25,6 +27,8 @@ const calcularHato = (data) => {
|
|
|
25
27
|
if (Object.keys(acc).length === 0) {
|
|
26
28
|
acc.Gestion = item.Gestion;
|
|
27
29
|
acc.key = 'CANTIDADES';
|
|
30
|
+
acc.Descripcion = 'NRO. CABEZAS';
|
|
31
|
+
acc.Orden = 2;
|
|
28
32
|
acc.GestionDesc = item.GestionDesc;
|
|
29
33
|
acc.Total = 0;
|
|
30
34
|
}
|
|
@@ -34,7 +38,22 @@ const calcularHato = (data) => {
|
|
|
34
38
|
}
|
|
35
39
|
return acc;
|
|
36
40
|
}, {});
|
|
37
|
-
|
|
41
|
+
const totales = rubros.reduce((acc, item) => {
|
|
42
|
+
if (Object.keys(acc).length === 0) {
|
|
43
|
+
acc.Gestion = item.Gestion;
|
|
44
|
+
acc.key = 'TOTALES';
|
|
45
|
+
acc.Descripcion = 'TOTALES';
|
|
46
|
+
acc.Orden = 3;
|
|
47
|
+
acc.GestionDesc = item.GestionDesc;
|
|
48
|
+
acc.Total = 0;
|
|
49
|
+
}
|
|
50
|
+
if (!(item.RubroId in acc)) {
|
|
51
|
+
acc[item.RubroId] = item.CantidadCabezas * item.PrecioCabeza;
|
|
52
|
+
acc.Total = acc.Total + (item.CantidadCabezas * item.PrecioCabeza);
|
|
53
|
+
}
|
|
54
|
+
return acc;
|
|
55
|
+
}, {});
|
|
56
|
+
return [precios, cantidades, totales];
|
|
38
57
|
});
|
|
39
58
|
};
|
|
40
59
|
class Auxiliar {
|
|
@@ -5,7 +5,7 @@ const Constantes_1 = require("../Constantes");
|
|
|
5
5
|
const estacionalidadCalc = (ventasPrimitivo, ventasIngresos) => {
|
|
6
6
|
const ingresosMap = (0, Constantes_1.getMap)(ventasIngresos, 'RubroId');
|
|
7
7
|
const ventasCalc = ventasPrimitivo.Estacionalidad.map((item) => {
|
|
8
|
-
return Object.assign(Object.assign({}, item), { Monto: parseFloat(item.Monto), IngresoTotal: ingresosMap.get(item.RubroId).IngresoTotal, CalculoIngreso: ingresosMap.get(item.RubroId).IngresoTotal * parseFloat(item.Monto) });
|
|
8
|
+
return Object.assign(Object.assign({}, item), { Monto: parseFloat(item.Monto), IngresoTotal: ingresosMap.get(item.RubroId).IngresoTotal, CalculoIngreso: ingresosMap.get(item.RubroId).IngresoTotal * parseFloat(item.Monto), Orden: (0, Constantes_1.getOrden)(item.RubroId) });
|
|
9
9
|
});
|
|
10
10
|
return ventasCalc;
|
|
11
11
|
};
|
|
@@ -17,7 +17,8 @@ const getEstacionalidadPorcentaje = (estacionalidad) => {
|
|
|
17
17
|
RubroId: 'TOT01',
|
|
18
18
|
Descripcion: 'TOTAL',
|
|
19
19
|
IngresoTotal: 0,
|
|
20
|
-
Total: 0
|
|
20
|
+
Total: 0,
|
|
21
|
+
Orden: 10
|
|
21
22
|
});
|
|
22
23
|
}
|
|
23
24
|
if (!acc.has(item.RubroId)) {
|
|
@@ -25,6 +26,7 @@ const getEstacionalidadPorcentaje = (estacionalidad) => {
|
|
|
25
26
|
RubroId: item.RubroId,
|
|
26
27
|
Descripcion: item.Descripcion,
|
|
27
28
|
IngresoTotal: item.IngresoTotal,
|
|
29
|
+
Orden: item.Orden,
|
|
28
30
|
Total: 0
|
|
29
31
|
});
|
|
30
32
|
acc.get('TOT01').IngresoTotal += item.IngresoTotal;
|
|
@@ -44,7 +46,8 @@ const getEstacionalidadCalc = (estacionalidad) => {
|
|
|
44
46
|
acc.set(TOT01, {
|
|
45
47
|
RubroId: TOT01,
|
|
46
48
|
Descripcion: 'TOTAL',
|
|
47
|
-
Total: 0
|
|
49
|
+
Total: 0,
|
|
50
|
+
Orden: 10
|
|
48
51
|
});
|
|
49
52
|
}
|
|
50
53
|
if (!acc.get(TOT01)[`C${item.Correlativo}`]) {
|
|
@@ -55,6 +58,7 @@ const getEstacionalidadCalc = (estacionalidad) => {
|
|
|
55
58
|
acc.set(item.RubroId, {
|
|
56
59
|
RubroId: item.RubroId,
|
|
57
60
|
Descripcion: item.Descripcion,
|
|
61
|
+
Orden: item.Orden,
|
|
58
62
|
Total: 0
|
|
59
63
|
});
|
|
60
64
|
}
|
|
@@ -65,7 +69,6 @@ const getEstacionalidadCalc = (estacionalidad) => {
|
|
|
65
69
|
acc.get(item.RubroId).Total += item.CalculoIngreso;
|
|
66
70
|
return acc;
|
|
67
71
|
}, new Map());
|
|
68
|
-
console.log(result.values());
|
|
69
72
|
return Array.from(result.values());
|
|
70
73
|
};
|
|
71
74
|
exports.getEstacionalidadCalc = getEstacionalidadCalc;
|
|
@@ -10,7 +10,7 @@ const calcular = (ventasPrimitivo, auxiliarPrimitivo, desarrolloCalculado) => {
|
|
|
10
10
|
return ventasPrimitivo.Ingresos.map((item) => {
|
|
11
11
|
const cantidad = parseFloat(hatoMap.get(item.RubroId).CantidadCabezas);
|
|
12
12
|
const precio = parseFloat(avaluoMap.get(item.RubroId).PrecioVenta);
|
|
13
|
-
return Object.assign(Object.assign({}, item), { Animales: cantidad, Precio: precio, IngresoTotal: cantidad * precio });
|
|
13
|
+
return Object.assign(Object.assign({}, item), { Animales: cantidad, Precio: precio, IngresoTotal: cantidad * precio, Orden: (0, Constantes_1.getOrden)(item.RubroId) });
|
|
14
14
|
});
|
|
15
15
|
};
|
|
16
16
|
exports.calcular = calcular;
|
|
@@ -41,6 +41,7 @@ class VentasPec {
|
|
|
41
41
|
const estacionalidad = estacionalidadCalc.estacionalidadCalc(data.Ventas, result.VentasIngreso);
|
|
42
42
|
result.EstacionalidadPorcentaje = estacionalidadCalc.getEstacionalidadPorcentaje(estacionalidad);
|
|
43
43
|
result.EstacionalidadCalc = estacionalidadCalc.getEstacionalidadCalc(estacionalidad);
|
|
44
|
+
result.OtrosIngresos = data.Ventas.OtrosIngresos;
|
|
44
45
|
return result;
|
|
45
46
|
}
|
|
46
47
|
}
|