using System.ComponentModel; using Gestor.Model.Attributes; using Gestor.Model.Converter; namespace Gestor.Model.Common; [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum Relatorio { [Tipo("CLIENTE")] [Description("RELATÓRIO DE CLIENTE")] [OldValue("1000")] Cliente, [Tipo("CLIENTE")] [Description("RELATÓRIO DE ANIVERSARIANTE")] [OldValue("1001")] Aniversariante, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE PRODUÇÃO")] [OldValue("1002")] Producao, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE APÓLICES PENDENTES")] [OldValue("1003")] ApolicePendente, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE RENOVAÇÕES")] [OldValue("1004")] Renovacao, [Tipo("PARCELA")] [Description("RELATÓRIO DE RECEBIMENTO DE COMISSÃO")] [OldValue("1005")] Comissao, [Tipo("PARCELA")] [Description("RELATÓRIO DE COMISSÃO A RECEBER")] [OldValue("1006")] Pendente, [Tipo("PARCELA")] [Description("RELATÓRIO DE PAGAMENTO DE VENDEDOR")] [OldValue("1007")] Pagamento, [Tipo("FECHAMENTO")] [Description("RELATÓRIO DE AUDITORIA DE COMISSÃO")] [OldValue("1008")] Auditoria, [Tipo("SINISTRO")] [Description("RELATÓRIO DE SINISTRO PENDENTE")] [OldValue("1009")] SinistroPendente, [Tipo("SINISTRO")] [Description("RELATÓRIO DE SINISTRO")] [OldValue("1010")] Sinistro, [Tipo("FECHAMENTO")] [Description("RELATÓRIO DE FECHAMENTO")] [OldValue("1011")] Fechamento, [Tipo("PARCELA")] [Description("RELATÓRIO DE FATURAS PENDENTES")] [OldValue("1012")] FaturaPendente, [Tipo("EXTRATO")] [Description("RELATÓRIO DE EXTRATOS BAIXADOS NO PERIODO")] [OldValue("1013")] ExtratosBaixados, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE METAS DE SEGURADORAS")] [OldValue("1014")] MetaSeguradora, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE METAS DE VENDEDORES")] [OldValue("1015")] MetaVendedor, [Tipo("PARCELA")] [Description("RELATÓRIO DE VENCIMENTO DE PARCELAS")] [OldValue("1016")] ParcelasVencendo, [Tipo("CLIENTE")] [Description("RELATÓRIO DE LICENCIAMENTO")] [OldValue("1017")] Licenciamento, [Tipo("TAREFA")] [Description("RELATÓRIO DE TAREFAS")] [OldValue("1018")] Tarefa, [Tipo("NOTA FISCAL")] [Description("RELATÓRIO DE NOTAS FISCAIS")] [OldValue("1019")] NotaFiscal, [Tipo("PARCELA")] [Description("RELATÓRIO DE PREVISÃO DE PAGAMENTO DE COMISSÃO")] [OldValue("1020")] PrevisaoPagamentoComissao, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE ASSINATURAS ENVIADAS")] [OldValue("1021")] AssinaturasEnviadas, [Tipo("DOCUMENTO")] [Description("PRODUÇÃO")] [OldValue("1022")] Apolice, [Tipo("LOGS")] [Description("RELATÓRIO DE LOGS DE ENVIO DE E-MAIL")] [OldValue("1023")] LogsEnvio, [Tipo("LOGS")] [Description("RELATÓRIO DE LOGS UTILIZAÇÃO")] [OldValue("1024")] LogsUtilizacao, [Tipo("LOGS")] [Description("RELATÓRIO DE LOGS UTILIZAÇÃO SISTEMA ANTIGO")] [OldValue("1025")] LogsUtilizacaoAntigo, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE IMPORTAÇÃO")] [OldValue("1026")] Importacao, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE PLACAS")] [OldValue("1027")] Placa, [Tipo("DOCUMENTO")] [Description("RELATÓRIO DE ENDOSSO")] [OldValue("1028")] Endosso, [Tipo("CLIENTE")] [Description("RELATÓRIO DE CLASSIFICAÇÃO")] [OldValue("1029")] Classificacao }