mdz-enum 1.1.48 → 1.1.50
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.
|
@@ -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
|
@@ -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';
|
package/dist/finance/index.d.ts
CHANGED
|
@@ -54,7 +54,8 @@ export declare const SituacaoDocumentoFinanceiro: {
|
|
|
54
54
|
Aberto: string;
|
|
55
55
|
Quitado: string;
|
|
56
56
|
Estornado: string;
|
|
57
|
-
|
|
57
|
+
Vencido: string;
|
|
58
|
+
description(val: string): "enum not found" | "Aberto" | "Quitado" | "Estornado" | "Vencido";
|
|
58
59
|
};
|
|
59
60
|
export declare const TipoDataDocumentoFinanceiro: {
|
|
60
61
|
Emissao: string;
|
|
@@ -98,7 +99,7 @@ export declare const SituacaoBoleto: {
|
|
|
98
99
|
Pago: string;
|
|
99
100
|
Cancelado: string;
|
|
100
101
|
Vencido: string;
|
|
101
|
-
description(val: string): "Cancelado" | "Pendente" | "enum not found" | "
|
|
102
|
+
description(val: string): "Cancelado" | "Pendente" | "enum not found" | "Vencido" | "Pago";
|
|
102
103
|
};
|
|
103
104
|
export declare const SituacaoConciliacao: {
|
|
104
105
|
NaoConciliado: string;
|
package/dist/finance/index.js
CHANGED
|
@@ -155,6 +155,7 @@ exports.SituacaoDocumentoFinanceiro = {
|
|
|
155
155
|
Aberto: '0',
|
|
156
156
|
Quitado: '1',
|
|
157
157
|
Estornado: '2',
|
|
158
|
+
Vencido: '3',
|
|
158
159
|
description(val) {
|
|
159
160
|
switch (val) {
|
|
160
161
|
case this.Aberto:
|
|
@@ -163,6 +164,8 @@ exports.SituacaoDocumentoFinanceiro = {
|
|
|
163
164
|
return 'Quitado';
|
|
164
165
|
case this.Estornado:
|
|
165
166
|
return 'Estornado';
|
|
167
|
+
case this.Vencido:
|
|
168
|
+
return 'Vencido';
|
|
166
169
|
default:
|
|
167
170
|
return 'enum not found';
|
|
168
171
|
}
|