mdz-enum 1.1.50 → 1.1.52
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,6 @@ export declare const ModoOperacaoPdv: {
|
|
|
22
22
|
Orcamento: string;
|
|
23
23
|
Devolucao: string;
|
|
24
24
|
Consignacao: string;
|
|
25
|
-
|
|
25
|
+
Recebimento: string;
|
|
26
|
+
description(val: string): "enum not found" | "Orçamento" | "Pedido" | "Consignação" | "Recebimento" | "Venda" | "Devolução";
|
|
26
27
|
};
|
package/dist/checkout/index.js
CHANGED
|
@@ -58,6 +58,7 @@ exports.ModoOperacaoPdv = {
|
|
|
58
58
|
Orcamento: '2',
|
|
59
59
|
Devolucao: '3',
|
|
60
60
|
Consignacao: '4',
|
|
61
|
+
Recebimento: '5',
|
|
61
62
|
description(val) {
|
|
62
63
|
switch (val) {
|
|
63
64
|
case this.Venda:
|
|
@@ -70,6 +71,8 @@ exports.ModoOperacaoPdv = {
|
|
|
70
71
|
return 'Devolução';
|
|
71
72
|
case this.Consignacao:
|
|
72
73
|
return 'Consignação';
|
|
74
|
+
case this.Recebimento:
|
|
75
|
+
return 'Recebimento';
|
|
73
76
|
default:
|
|
74
77
|
return 'enum not found';
|
|
75
78
|
}
|
|
@@ -9,7 +9,8 @@ export declare const SituacaoPedido: {
|
|
|
9
9
|
RetornoCliente: string;
|
|
10
10
|
AguardandoConclusao: string;
|
|
11
11
|
Concluida: string;
|
|
12
|
-
|
|
12
|
+
AguardandoPagamento: string;
|
|
13
|
+
description(val: string): "Edição" | "Liberado" | "Cancelado" | "Nota Pendente" | "Faturado" | "Pendente" | "Enviado ao Cliente" | "Retorno do Cliente" | "Aguardando Conclusão" | "Concluída" | "Aguardando Pagamento" | "enum not found";
|
|
13
14
|
};
|
|
14
15
|
export declare const OperacaoPedido: {
|
|
15
16
|
Orcamento: string;
|
|
@@ -74,7 +75,7 @@ export declare const TipoGrupoComissao: {
|
|
|
74
75
|
};
|
|
75
76
|
export declare const MotivoPedido: {
|
|
76
77
|
SemEstoque: string;
|
|
77
|
-
|
|
78
|
+
AusenciaPagamento: string;
|
|
78
79
|
description(val: string): "enum not found" | "Sem Estoque" | "Ausencia de pagamento";
|
|
79
80
|
};
|
|
80
81
|
export declare const SituacaoItemConsignacao: {
|
package/dist/commercial/index.js
CHANGED
|
@@ -12,6 +12,7 @@ exports.SituacaoPedido = {
|
|
|
12
12
|
RetornoCliente: '7',
|
|
13
13
|
AguardandoConclusao: '8',
|
|
14
14
|
Concluida: '9',
|
|
15
|
+
AguardandoPagamento: '10',
|
|
15
16
|
description(val) {
|
|
16
17
|
switch (val) {
|
|
17
18
|
case this.Edicao:
|
|
@@ -34,6 +35,8 @@ exports.SituacaoPedido = {
|
|
|
34
35
|
return 'Aguardando Conclusão';
|
|
35
36
|
case this.Concluida:
|
|
36
37
|
return 'Concluída';
|
|
38
|
+
case this.AguardandoPagamento:
|
|
39
|
+
return 'Aguardando Pagamento';
|
|
37
40
|
default:
|
|
38
41
|
return 'enum not found';
|
|
39
42
|
}
|
|
@@ -214,12 +217,12 @@ exports.TipoGrupoComissao = {
|
|
|
214
217
|
};
|
|
215
218
|
exports.MotivoPedido = {
|
|
216
219
|
SemEstoque: '0',
|
|
217
|
-
|
|
220
|
+
AusenciaPagamento: '1',
|
|
218
221
|
description(val) {
|
|
219
222
|
switch (val) {
|
|
220
223
|
case this.SemEstoque:
|
|
221
224
|
return 'Sem Estoque';
|
|
222
|
-
case this.
|
|
225
|
+
case this.AusenciaPagamento:
|
|
223
226
|
return 'Ausencia de pagamento';
|
|
224
227
|
default:
|
|
225
228
|
return 'enum not found';
|