mdz-enum 1.1.47 → 1.1.49
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/checkout/index.d.ts
CHANGED
|
@@ -22,5 +22,5 @@ export declare const ModoOperacaoPdv: {
|
|
|
22
22
|
Orcamento: string;
|
|
23
23
|
Devolucao: string;
|
|
24
24
|
Consignacao: string;
|
|
25
|
-
description(val: string): "enum not found" | "
|
|
25
|
+
description(val: string): "enum not found" | "Orçamento" | "Pedido" | "Consignação" | "Venda" | "Devolução";
|
|
26
26
|
};
|
|
@@ -15,7 +15,7 @@ export declare const OperacaoPedido: {
|
|
|
15
15
|
Orcamento: string;
|
|
16
16
|
Pedido: string;
|
|
17
17
|
Consignacao: string;
|
|
18
|
-
description(val: string): "enum not found" | "
|
|
18
|
+
description(val: string): "enum not found" | "Orçamento" | "Pedido" | "Consignação";
|
|
19
19
|
};
|
|
20
20
|
export declare const OrigemPedido: {
|
|
21
21
|
Erp: string;
|
|
@@ -87,11 +87,11 @@ export declare const SituacaoItemConsignacao: {
|
|
|
87
87
|
description(val: string): "Faturado" | "Enviado ao Cliente" | "Retorno do Cliente" | "enum not found" | "Pendente de Envio" | "Retorno Parcial do Cliente" | "Aguardando Faturamento";
|
|
88
88
|
};
|
|
89
89
|
export declare const TipoDataPedido: {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
90
|
+
DataCadastro: string;
|
|
91
|
+
DataAlteracao: string;
|
|
92
|
+
DataEntrega: string;
|
|
93
|
+
DataPrevisaoRetorno: string;
|
|
94
|
+
DataConclusao: string;
|
|
95
95
|
description(val: string): "enum not found" | "Data de Cadastro" | "Data de Alteração" | "Data de Entrega" | "Data de Previsão de Retorno" | "Data de Conclusão";
|
|
96
96
|
};
|
|
97
97
|
export declare const ModalConsignacaoOperacao: {
|
package/dist/commercial/index.js
CHANGED
|
@@ -46,7 +46,7 @@ exports.OperacaoPedido = {
|
|
|
46
46
|
description(val) {
|
|
47
47
|
switch (val) {
|
|
48
48
|
case this.Orcamento:
|
|
49
|
-
return '
|
|
49
|
+
return 'Orçamento';
|
|
50
50
|
case this.Pedido:
|
|
51
51
|
return 'Pedido';
|
|
52
52
|
case this.Consignacao:
|
|
@@ -253,22 +253,22 @@ exports.SituacaoItemConsignacao = {
|
|
|
253
253
|
},
|
|
254
254
|
};
|
|
255
255
|
exports.TipoDataPedido = {
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
256
|
+
DataCadastro: '0',
|
|
257
|
+
DataAlteracao: '1',
|
|
258
|
+
DataEntrega: '2',
|
|
259
|
+
DataPrevisaoRetorno: '3',
|
|
260
|
+
DataConclusao: '4',
|
|
261
261
|
description(val) {
|
|
262
262
|
switch (val) {
|
|
263
|
-
case this.
|
|
263
|
+
case this.DataCadastro:
|
|
264
264
|
return 'Data de Cadastro';
|
|
265
|
-
case this.
|
|
265
|
+
case this.DataAlteracao:
|
|
266
266
|
return 'Data de Alteração';
|
|
267
|
-
case this.
|
|
267
|
+
case this.DataEntrega:
|
|
268
268
|
return 'Data de Entrega';
|
|
269
|
-
case this.
|
|
269
|
+
case this.DataPrevisaoRetorno:
|
|
270
270
|
return 'Data de Previsão de Retorno';
|
|
271
|
-
case this.
|
|
271
|
+
case this.DataConclusao:
|
|
272
272
|
return 'Data de Conclusão';
|
|
273
273
|
default:
|
|
274
274
|
return 'enum not found';
|