summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Common/Relatorio.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Model.Common/Relatorio.cs')
-rw-r--r--Gestor.Model/Model.Common/Relatorio.cs132
1 files changed, 132 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Common/Relatorio.cs b/Gestor.Model/Model.Common/Relatorio.cs
new file mode 100644
index 0000000..700754d
--- /dev/null
+++ b/Gestor.Model/Model.Common/Relatorio.cs
@@ -0,0 +1,132 @@
+using Gestor.Model.Attributes;
+using Gestor.Model.Converter;
+using System;
+using System.ComponentModel;
+
+namespace Gestor.Model.Common
+{
+ [TypeConverter(typeof(EnumDescriptionTypeConverter))]
+ public enum Relatorio
+ {
+ [Description("RELATÓRIO DE CLIENTE")]
+ [OldValue("1000")]
+ [Tipo("CLIENTE")]
+ Cliente,
+ [Description("RELATÓRIO DE ANIVERSARIANTE")]
+ [OldValue("1001")]
+ [Tipo("CLIENTE")]
+ Aniversariante,
+ [Description("RELATÓRIO DE PRODUÇÃO")]
+ [OldValue("1002")]
+ [Tipo("DOCUMENTO")]
+ Producao,
+ [Description("RELATÓRIO DE APÓLICES PENDENTES")]
+ [OldValue("1003")]
+ [Tipo("DOCUMENTO")]
+ ApolicePendente,
+ [Description("RELATÓRIO DE RENOVAÇÕES")]
+ [OldValue("1004")]
+ [Tipo("DOCUMENTO")]
+ Renovacao,
+ [Description("RELATÓRIO DE RECEBIMENTO DE COMISSÃO")]
+ [OldValue("1005")]
+ [Tipo("PARCELA")]
+ Comissao,
+ [Description("RELATÓRIO DE COMISSÃO A RECEBER")]
+ [OldValue("1006")]
+ [Tipo("PARCELA")]
+ Pendente,
+ [Description("RELATÓRIO DE PAGAMENTO DE VENDEDOR")]
+ [OldValue("1007")]
+ [Tipo("PARCELA")]
+ Pagamento,
+ [Description("RELATÓRIO DE AUDITORIA DE COMISSÃO")]
+ [OldValue("1008")]
+ [Tipo("FECHAMENTO")]
+ Auditoria,
+ [Description("RELATÓRIO DE SINISTRO PENDENTE")]
+ [OldValue("1009")]
+ [Tipo("SINISTRO")]
+ SinistroPendente,
+ [Description("RELATÓRIO DE SINISTRO")]
+ [OldValue("1010")]
+ [Tipo("SINISTRO")]
+ Sinistro,
+ [Description("RELATÓRIO DE FECHAMENTO")]
+ [OldValue("1011")]
+ [Tipo("FECHAMENTO")]
+ Fechamento,
+ [Description("RELATÓRIO DE FATURAS PENDENTES")]
+ [OldValue("1012")]
+ [Tipo("PARCELA")]
+ FaturaPendente,
+ [Description("RELATÓRIO DE EXTRATOS BAIXADOS NO PERIODO")]
+ [OldValue("1013")]
+ [Tipo("EXTRATO")]
+ ExtratosBaixados,
+ [Description("RELATÓRIO DE METAS DE SEGURADORAS")]
+ [OldValue("1014")]
+ [Tipo("DOCUMENTO")]
+ MetaSeguradora,
+ [Description("RELATÓRIO DE METAS DE VENDEDORES")]
+ [OldValue("1015")]
+ [Tipo("DOCUMENTO")]
+ MetaVendedor,
+ [Description("RELATÓRIO DE VENCIMENTO DE PARCELAS")]
+ [OldValue("1016")]
+ [Tipo("PARCELA")]
+ ParcelasVencendo,
+ [Description("RELATÓRIO DE LICENCIAMENTO")]
+ [OldValue("1017")]
+ [Tipo("CLIENTE")]
+ Licenciamento,
+ [Description("RELATÓRIO DE TAREFAS")]
+ [OldValue("1018")]
+ [Tipo("TAREFA")]
+ Tarefa,
+ [Description("RELATÓRIO DE NOTAS FISCAIS")]
+ [OldValue("1019")]
+ [Tipo("NOTA FISCAL")]
+ NotaFiscal,
+ [Description("RELATÓRIO DE PREVISÃO DE PAGAMENTO DE COMISSÃO")]
+ [OldValue("1020")]
+ [Tipo("PARCELA")]
+ PrevisaoPagamentoComissao,
+ [Description("RELATÓRIO DE ASSINATURAS ENVIADAS")]
+ [OldValue("1021")]
+ [Tipo("DOCUMENTO")]
+ AssinaturasEnviadas,
+ [Description("PRODUÇÃO")]
+ [OldValue("1022")]
+ [Tipo("DOCUMENTO")]
+ Apolice,
+ [Description("RELATÓRIO DE LOGS DE ENVIO DE E-MAIL")]
+ [OldValue("1023")]
+ [Tipo("LOGS")]
+ LogsEnvio,
+ [Description("RELATÓRIO DE LOGS UTILIZAÇÃO")]
+ [OldValue("1024")]
+ [Tipo("LOGS")]
+ LogsUtilizacao,
+ [Description("RELATÓRIO DE LOGS UTILIZAÇÃO SISTEMA ANTIGO")]
+ [OldValue("1025")]
+ [Tipo("LOGS")]
+ LogsUtilizacaoAntigo,
+ [Description("RELATÓRIO DE IMPORTAÇÃO")]
+ [OldValue("1026")]
+ [Tipo("DOCUMENTO")]
+ Importacao,
+ [Description("RELATÓRIO DE PLACAS")]
+ [OldValue("1027")]
+ [Tipo("DOCUMENTO")]
+ Placa,
+ [Description("RELATÓRIO DE ENDOSSO")]
+ [OldValue("1028")]
+ [Tipo("DOCUMENTO")]
+ Endosso,
+ [Description("RELATÓRIO DE CLASSIFICAÇÃO")]
+ [OldValue("1029")]
+ [Tipo("CLIENTE")]
+ Classificacao
+ }
+} \ No newline at end of file