mdz-enum 1.1.52 → 1.1.53
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.
|
@@ -10,7 +10,8 @@ export declare const SituacaoPedido: {
|
|
|
10
10
|
AguardandoConclusao: string;
|
|
11
11
|
Concluida: string;
|
|
12
12
|
AguardandoPagamento: string;
|
|
13
|
-
|
|
13
|
+
AguardandoRetirada: string;
|
|
14
|
+
description(val: string): "Edição" | "Liberado" | "Cancelado" | "Nota Pendente" | "Faturado" | "Pendente" | "Enviado ao Cliente" | "Retorno do Cliente" | "Aguardando Conclusão" | "Concluída" | "Aguardando Pagamento" | "Aguardando Retirada" | "enum not found";
|
|
14
15
|
};
|
|
15
16
|
export declare const OperacaoPedido: {
|
|
16
17
|
Orcamento: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -13,6 +13,7 @@ exports.SituacaoPedido = {
|
|
|
13
13
|
AguardandoConclusao: '8',
|
|
14
14
|
Concluida: '9',
|
|
15
15
|
AguardandoPagamento: '10',
|
|
16
|
+
AguardandoRetirada: '11',
|
|
16
17
|
description(val) {
|
|
17
18
|
switch (val) {
|
|
18
19
|
case this.Edicao:
|
|
@@ -37,6 +38,8 @@ exports.SituacaoPedido = {
|
|
|
37
38
|
return 'Concluída';
|
|
38
39
|
case this.AguardandoPagamento:
|
|
39
40
|
return 'Aguardando Pagamento';
|
|
41
|
+
case this.AguardandoRetirada:
|
|
42
|
+
return 'Aguardando Retirada';
|
|
40
43
|
default:
|
|
41
44
|
return 'enum not found';
|
|
42
45
|
}
|