blob: e62f9572baf46b803f68e0a94ad415b0ca9fea97 (
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
using Gestor.Application.Servicos.Financeiro;
using Gestor.Application.Servicos.Generic;
using Gestor.Application.ViewModels.Generic;
using Gestor.Model.Domain.Financeiro;
using Gestor.Model.Domain.Generic;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace Gestor.Application.ViewModels.Financeiro
{
public class PlanoViewModel : BaseFinanceiroViewModel
{
private readonly PlanoServico _planoServico;
private Plano _selectedPlano;
public Plano Cancel;
public Plano SelectedPlano
{
get
{
return this._selectedPlano;
}
set
{
long? nullable;
this._selectedPlano = value;
if (value != null)
{
nullable = new long?(value.get_Id());
}
else
{
nullable = null;
}
base.VerificarEnables(nullable);
base.OnPropertyChanged("SelectedPlano");
}
}
public PlanoViewModel(Plano plano)
{
this._planoServico = new PlanoServico();
this.Seleciona(plano);
}
public void Cancelar()
{
base.Loading(true);
if (this.SelectedPlano.get_Id() != 0)
{
base.Alterar(false);
base.Loading(false);
return;
}
this.SelectedPlano = new Plano();
base.Alterar(false);
base.Loading(false);
}
public void Incluir()
{
Plano plano = new Plano();
plano.set_Ativo(true);
this.SelectedPlano = plano;
base.Alterar(true);
}
public async Task<List<KeyValuePair<string, string>>> Salvar()
{
List<KeyValuePair<string, string>> keyValuePairs;
List<KeyValuePair<string, string>> keyValuePairs1 = this.SelectedPlano.Validate();
List<KeyValuePair<string, string>> keyValuePairs2 = keyValuePairs1;
keyValuePairs2.AddRange(await this.Validate());
keyValuePairs2 = null;
if (keyValuePairs1.Count <= 0)
{
this.SelectedPlano = await this._planoServico.Save(this.SelectedPlano);
if (this._planoServico.Sucesso)
{
base.Alterar(false);
base.ToggleSnackBar("PLANO SALVO COM SUCESSO", true);
keyValuePairs = null;
}
else
{
keyValuePairs = null;
}
}
else
{
keyValuePairs = keyValuePairs1;
}
keyValuePairs1 = null;
return keyValuePairs;
}
private async void Seleciona(Plano plano)
{
base.Loading(true);
await base.PermissaoTela(27);
if (plano != null)
{
this.SelectedPlano = plano;
}
else
{
Plano plano1 = new Plano();
plano1.set_Descricao("");
plano1.set_Ativo(true);
this.SelectedPlano = plano1;
}
base.Loading(false);
}
public async Task<List<KeyValuePair<string, string>>> Validate()
{
List<KeyValuePair<string, string>> keyValuePairs = new List<KeyValuePair<string, string>>();
bool flag = true;
List<Plano> planos = await (new BaseServico()).BuscarPlanoAsync();
if (planos.Count > 0)
{
planos.ForEach((Plano x) => {
if (x.get_Id() == this.SelectedPlano.get_Id())
{
return;
}
if (x.get_Descricao() == this.SelectedPlano.get_Descricao())
{
flag = false;
}
});
}
if (!flag)
{
keyValuePairs.Add(new KeyValuePair<string, string>("Descricao", "UM PLANO COM ESSE NOME JÁ EXISTE."));
}
List<KeyValuePair<string, string>> keyValuePairs1 = keyValuePairs;
keyValuePairs = null;
return keyValuePairs1;
}
}
}
|