blob: 42181958f19bec53a19afb133509d422fd24e4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
using System.Collections.Generic;
using System.Threading.Tasks;
using Gestor.Application.Servicos.Financeiro;
using Gestor.Application.Servicos.Generic;
using Gestor.Application.ViewModels.Generic;
using Gestor.Model.Common;
using Gestor.Model.Domain.Financeiro;
using Gestor.Model.Domain.Generic;
namespace Gestor.Application.ViewModels.Financeiro;
public class PlanoViewModel : BaseFinanceiroViewModel
{
private readonly PlanoServico _planoServico;
private Plano _selectedPlano;
public Plano Cancel;
public Plano SelectedPlano
{
get
{
return _selectedPlano;
}
set
{
_selectedPlano = value;
VerificarEnables((value != null) ? new long?(((DomainBase)value).Id) : null);
OnPropertyChanged("SelectedPlano");
}
}
public PlanoViewModel(Plano plano)
{
_planoServico = new PlanoServico();
Seleciona(plano);
}
private async void Seleciona(Plano plano)
{
Loading(isLoading: true);
await PermissaoTela((TipoTela)27);
if (plano == null)
{
SelectedPlano = new Plano
{
Descricao = "",
Ativo = true
};
}
else
{
SelectedPlano = plano;
}
Loading(isLoading: false);
}
public async Task<List<KeyValuePair<string, string>>> Salvar()
{
List<KeyValuePair<string, string>> errorMessages = SelectedPlano.Validate();
List<KeyValuePair<string, string>> list = errorMessages;
list.AddRange(await Validate());
if (errorMessages.Count > 0)
{
return errorMessages;
}
SelectedPlano = await _planoServico.Save(SelectedPlano);
if (!_planoServico.Sucesso)
{
return null;
}
Alterar(alterar: false);
ToggleSnackBar("PLANO SALVO COM SUCESSO");
return null;
}
public void Cancelar()
{
//IL_0015: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Expected O, but got Unknown
Loading(isLoading: true);
if (((DomainBase)SelectedPlano).Id == 0L)
{
SelectedPlano = new Plano();
Alterar(alterar: false);
Loading(isLoading: false);
}
else
{
Alterar(alterar: false);
Loading(isLoading: false);
}
}
public async Task<List<KeyValuePair<string, string>>> Validate()
{
List<KeyValuePair<string, string>> errors = new List<KeyValuePair<string, string>>();
bool valida = true;
List<Plano> list = await new BaseServico().BuscarPlanoAsync();
if (list.Count > 0)
{
list.ForEach(delegate(Plano x)
{
if (((DomainBase)x).Id != ((DomainBase)SelectedPlano).Id && x.Descricao == SelectedPlano.Descricao)
{
valida = false;
}
});
}
if (!valida)
{
errors.Add(new KeyValuePair<string, string>("Descricao", "UM PLANO COM ESSE NOME JÁ EXISTE."));
}
return errors;
}
public void Incluir()
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_0012: Expected O, but got Unknown
SelectedPlano = new Plano
{
Ativo = true
};
Alterar(alterar: true);
}
}
|