mdz-enum 1.1.40 → 1.1.41
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.
|
@@ -83,7 +83,8 @@ export declare const SituacaoItemConsignacao: {
|
|
|
83
83
|
EnviadoCliente: string;
|
|
84
84
|
RetornoCliente: string;
|
|
85
85
|
RetornoClienteParcial: string;
|
|
86
|
-
|
|
86
|
+
AguardandoFaturamento: string;
|
|
87
|
+
description(val: string): "Faturado" | "Enviado ao Cliente" | "Retorno do Cliente" | "enum not found" | "Pendente de Envio" | "Retorno Parcial do Cliente" | "Aguardando Faturamento";
|
|
87
88
|
};
|
|
88
89
|
export declare const TipoDataPedido: {
|
|
89
90
|
data_cadastro: string;
|
package/dist/commercial/index.js
CHANGED
|
@@ -232,6 +232,7 @@ exports.SituacaoItemConsignacao = {
|
|
|
232
232
|
EnviadoCliente: '2',
|
|
233
233
|
RetornoCliente: '3',
|
|
234
234
|
RetornoClienteParcial: '4',
|
|
235
|
+
AguardandoFaturamento: '5',
|
|
235
236
|
description(val) {
|
|
236
237
|
switch (val) {
|
|
237
238
|
case this.Faturado:
|
|
@@ -244,6 +245,8 @@ exports.SituacaoItemConsignacao = {
|
|
|
244
245
|
return 'Retorno do Cliente';
|
|
245
246
|
case this.RetornoClienteParcial:
|
|
246
247
|
return 'Retorno Parcial do Cliente';
|
|
248
|
+
case this.AguardandoFaturamento:
|
|
249
|
+
return 'Aguardando Faturamento';
|
|
247
250
|
default:
|
|
248
251
|
return 'enum not found';
|
|
249
252
|
}
|