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