mdz-enum 1.2.98 → 1.3.0
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.
|
@@ -114,7 +114,8 @@ export declare const SituacaoOperacao: {
|
|
|
114
114
|
EmEdicao: string;
|
|
115
115
|
Pendente: string;
|
|
116
116
|
Processado: string;
|
|
117
|
-
|
|
117
|
+
EmProcessamento: string;
|
|
118
|
+
description(val: string): "enum not found" | "Pendente" | "Em processamento" | "Processado" | "Em edição";
|
|
118
119
|
};
|
|
119
120
|
export declare const SituacaoPagamento: {
|
|
120
121
|
Pendente: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -326,6 +326,7 @@ exports.SituacaoOperacao = {
|
|
|
326
326
|
EmEdicao: '1',
|
|
327
327
|
Pendente: '2',
|
|
328
328
|
Processado: '3',
|
|
329
|
+
EmProcessamento: '4',
|
|
329
330
|
description(val) {
|
|
330
331
|
switch (val) {
|
|
331
332
|
case this.EmEdicao:
|
|
@@ -334,6 +335,8 @@ exports.SituacaoOperacao = {
|
|
|
334
335
|
return 'Pendente';
|
|
335
336
|
case this.Processado:
|
|
336
337
|
return 'Processado';
|
|
338
|
+
case this.EmProcessamento:
|
|
339
|
+
return 'Em processamento';
|
|
337
340
|
default:
|
|
338
341
|
return 'enum not found';
|
|
339
342
|
}
|
package/dist/config/index.d.ts
CHANGED
|
@@ -73,7 +73,8 @@ export declare const ParametroEtiquetaProduto: {
|
|
|
73
73
|
Pvp: string;
|
|
74
74
|
Pap: string;
|
|
75
75
|
Nomel2: string;
|
|
76
|
-
|
|
76
|
+
Gradel2: string;
|
|
77
|
+
description(val: string): "enum not found" | "Sku" | "Descrição" | "Descrição Linha 2" | "Codigo de Barras" | "Marca" | "Variação" | "Preço Varejo" | "Preço Atacado" | "Preço Varejo Promocional" | "Preço Atacado Promocional" | "Descrição Variação Linha 2";
|
|
77
78
|
};
|
|
78
79
|
export declare const ModeloPimaco: {
|
|
79
80
|
M6187: string;
|
package/dist/config/index.js
CHANGED
|
@@ -194,6 +194,7 @@ exports.ParametroEtiquetaProduto = {
|
|
|
194
194
|
Pvp: '8',
|
|
195
195
|
Pap: '9',
|
|
196
196
|
Nomel2: '10',
|
|
197
|
+
Gradel2: '11',
|
|
197
198
|
description(val) {
|
|
198
199
|
switch (val) {
|
|
199
200
|
case this.Sku:
|
|
@@ -216,6 +217,8 @@ exports.ParametroEtiquetaProduto = {
|
|
|
216
217
|
return 'Preço Varejo Promocional';
|
|
217
218
|
case this.Pap:
|
|
218
219
|
return 'Preço Atacado Promocional';
|
|
220
|
+
case this.Gradel2:
|
|
221
|
+
return 'Descrição Variação Linha 2';
|
|
219
222
|
default:
|
|
220
223
|
return 'enum not found';
|
|
221
224
|
}
|