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
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Globalization;
using System.Runtime.CompilerServices;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Generic;
using Gestor.Model.Domain.Seguros;
using Gestor.Model.Helper;
using Gestor.Model.Resources;
using Newtonsoft.Json;
namespace Gestor.Model.Domain.Ferramentas;
public class NotaFiscal : DomainBase
{
private bool _selecionado;
public bool Selecionado
{
get
{
return _selecionado;
}
set
{
if (value != _selecionado)
{
_selecionado = value;
OnPropertyChanged("Selecionado");
}
}
}
[Log(true)]
public long? IdExtrato { get; set; }
[Log(true)]
public Seguradora Seguradora { get; set; }
[Log(true)]
[Description("ISS")]
public decimal Iss { get; set; }
[Log(true)]
[Description("VALOR LÍQUIDO")]
public decimal ValorLiquido { get; set; }
[Log(true)]
[Description("VALOR BRUTO")]
public decimal ValorBruto { get; set; }
[Log(true)]
[Description("DATA")]
public DateTime? Data { get; set; }
[Log(true)]
[Description("OBS")]
public string Obs { get; set; }
[Log(true)]
[Description("ESTIPULANTE")]
public Estipulante Estipulante { get; set; }
[Log(true)]
[Description("EXTRATO")]
public string Extrato { get; set; }
[Log(true)]
[Description("IR")]
public decimal Ir { get; set; }
[JsonIgnore]
public Func<List<KeyValuePair<string, string>>> ValidationEvent => Validate;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public List<KeyValuePair<string, string>> Validate()
{
List<KeyValuePair<string, string>> list = ValidationHelper.AddValue();
if (Seguradora == null || string.IsNullOrEmpty(Seguradora.Nome))
{
list.AddValue("Seguradora", Messages.Obrigatorio);
}
return list;
}
public List<TupleList> Log()
{
return new List<TupleList>
{
new TupleList
{
Tuples = new ObservableCollection<Tuple<string, string, string>>
{
new Tuple<string, string, string>("SEGURADORA", string.IsNullOrWhiteSpace(Seguradora.Nome) ? "" : Seguradora.Nome, ""),
new Tuple<string, string, string>("ESTIPULANTE", string.IsNullOrWhiteSpace(Estipulante?.Nome) ? "" : Estipulante?.Nome, ""),
new Tuple<string, string, string>("ISS", Iss.ToString("C", new CultureInfo("pt-BR", useUserOverride: false)), ""),
new Tuple<string, string, string>("VALOR LÍQUIDO", ValorLiquido.ToString("C", new CultureInfo("pt-BR", useUserOverride: false)), ""),
new Tuple<string, string, string>("VALOR BRUTO", ValorBruto.ToString("C", new CultureInfo("pt-BR", useUserOverride: false)), ""),
new Tuple<string, string, string>("DATA", (!Data.HasValue) ? "" : Data?.ToShortDateString(), "")
}
}
};
}
}
|