mdz-enum 1.6.28 → 1.6.29
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/reports/index.d.ts +6 -2
- package/dist/reports/index.js +12 -0
- package/package.json +3 -2
package/dist/reports/index.d.ts
CHANGED
|
@@ -20,7 +20,9 @@ export declare const AgrupamentoRelatorio: {
|
|
|
20
20
|
Fornecedor: string;
|
|
21
21
|
OperadoraCartao: string;
|
|
22
22
|
Colecao: string;
|
|
23
|
-
|
|
23
|
+
Lote: string;
|
|
24
|
+
Validade: string;
|
|
25
|
+
description(val: string): "Vendedor" | "enum not found" | "Produto" | "Cliente" | "Data" | "Operação" | "Marca" | "Fornecedor" | "Documento" | "Categoria" | "Filial" | "Plano de Contas" | "Centro de Custo" | "Preço" | "Meio de Pagamento" | "Operadora Cartão" | "Coleção" | "Lote" | "Validade";
|
|
24
26
|
};
|
|
25
27
|
export declare const AgrupamentoRelatoriosProdutos: {
|
|
26
28
|
Produto: string;
|
|
@@ -32,7 +34,9 @@ export declare const AgrupamentoRelatoriosProdutos: {
|
|
|
32
34
|
Filial: string;
|
|
33
35
|
EnderecoEstoque: string;
|
|
34
36
|
InventarioP7: string;
|
|
35
|
-
|
|
37
|
+
Lote: string;
|
|
38
|
+
Validade: string;
|
|
39
|
+
description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Filial" | "Lote" | "Validade" | "Unidade de Medida" | "Cenário Fiscal" | "NCM" | "Endereço de Estoque" | "Inventário P7";
|
|
36
40
|
};
|
|
37
41
|
export declare const TipoPreco: {
|
|
38
42
|
Compra: string;
|
package/dist/reports/index.js
CHANGED
|
@@ -32,6 +32,8 @@ exports.AgrupamentoRelatorio = {
|
|
|
32
32
|
Fornecedor: '14',
|
|
33
33
|
OperadoraCartao: '15',
|
|
34
34
|
Colecao: '16',
|
|
35
|
+
Lote: '17',
|
|
36
|
+
Validade: '18',
|
|
35
37
|
description(val) {
|
|
36
38
|
switch (val) {
|
|
37
39
|
case this.Cliente:
|
|
@@ -66,6 +68,10 @@ exports.AgrupamentoRelatorio = {
|
|
|
66
68
|
return 'Operadora Cartão';
|
|
67
69
|
case this.Colecao:
|
|
68
70
|
return 'Coleção';
|
|
71
|
+
case this.Lote:
|
|
72
|
+
return 'Lote';
|
|
73
|
+
case this.Validade:
|
|
74
|
+
return 'Validade';
|
|
69
75
|
default:
|
|
70
76
|
return 'enum not found';
|
|
71
77
|
}
|
|
@@ -81,6 +87,8 @@ exports.AgrupamentoRelatoriosProdutos = {
|
|
|
81
87
|
Filial: '7',
|
|
82
88
|
EnderecoEstoque: '8',
|
|
83
89
|
InventarioP7: '9',
|
|
90
|
+
Lote: '10',
|
|
91
|
+
Validade: '11',
|
|
84
92
|
description(val) {
|
|
85
93
|
switch (val) {
|
|
86
94
|
case this.Produto:
|
|
@@ -101,6 +109,10 @@ exports.AgrupamentoRelatoriosProdutos = {
|
|
|
101
109
|
return 'Endereço de Estoque';
|
|
102
110
|
case this.InventarioP7:
|
|
103
111
|
return 'Inventário P7';
|
|
112
|
+
case this.Lote:
|
|
113
|
+
return 'Lote';
|
|
114
|
+
case this.Validade:
|
|
115
|
+
return 'Validade';
|
|
104
116
|
default:
|
|
105
117
|
return 'enum not found';
|
|
106
118
|
}
|
package/package.json
CHANGED