-
Notifications
You must be signed in to change notification settings - Fork 1
/
FormCobranca.cs
173 lines (147 loc) · 5.34 KB
/
FormCobranca.cs
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
using EasyCall.DAO;
using EasyCall.DAO.SendEmail;
using EasyCall.modelo;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EasyCall
{
public partial class FormCobranca : Form
{
private int seg = 0;
private int tempoLigacao = 0;
Devedor devedor = new Devedor();
DevedorDAO dao = new DevedorDAO();
Empresa empresa = new Empresa();
Divida d = new Divida();
DividaDAO ddao = new DividaDAO();
public FormCobranca()
{
InitializeComponent();
}
private void tParaLigacao_Tick(object sender, EventArgs e)
{
this.seg += 1;
if (seg == 10 && tParaLigacao.Enabled == true)
{
fazerligacao();
}
}
public void fazerligacao()
{
MessageBox.Show("iniciando ligação...");
this.seg = 0;
tParaLigacao.Enabled = false;
onLigacao.Enabled = true;
}
private void btnDesligar_Click(object sender, EventArgs e)
{
// faz um registro para ser gerado relatorio depois
var registro = "chamada efetuada com duração de " + this.tempoLigacao / 60 + " minutos";
//MessageBox.Show("A ligação durou: " + this.tempoLigacao);
RelatorioDAO.inserirRegistro(this.d.idDivida, this.devedor.iddevedor, registro);
this.onLigacao.Enabled = false;
this.tempoLigacao = 0;
//insere a data e hora atual na tabela divida para gerenciamento de ordem de ligações
ddao.setUl(d.idDivida, DateTime.Now);
limparDados();
mostrarDados();
listarDevedor();
this.tParaLigacao.Enabled = true; // começa timer para proxima ligação
}
private void Form2_FormClosing(object sender, FormClosingEventArgs e)
{
Application.Exit();
}
private void Form2_Load(object sender, EventArgs e)
{
mostrarDados();
listarDevedor();
tParaLigacao.Enabled = true;
}
private void limparDados()
{
txbDevedor.Text = null;
txbEmail.Text = null;
txbCpf.Text = null;
txbTelefone.Text = null;
txbContrato.Text = null;
txbValor.Text = null;
txbDias.Text = null;
txbJurosdia.Text = null;
txbData.Text = null;
txbCondicao.Text = null;
}
private void listarDevedor()
{
var lista = dao.listDevedor();
DataTable dt = new DataTable();
dt.Columns.Add("Cpf", typeof(string));
dt.Columns.Add("Nome", typeof(string));
dt.Columns.Add("Email", typeof(string));
dt.Columns.Add("Telefone", typeof(string));
foreach (var item in lista)
{
dt.Rows.Add(item.cpf, item.nome, item.email,item.telefone);
}
gdvDevedor.DataSource = dt;
}
private void mostrarDados()
{
this.devedor = this.dao.getDevedor();
this.d = this.ddao.getDivida(devedor.iddevedor);
var hoje = DateTime.Now;
int diasAtraso = (hoje.Date - d.dataVencimento.Date).Days;
empresa = new EmpresaDAO().getEmpresa(d.idEmpresa);
txbDevedor.Text = devedor.nome;
txbEmail.Text = devedor.email;
txbCpf.Text = devedor.cpf;
txbTelefone.Text = devedor.telefone;
txbContrato.Text = d.idDivida.ToString();
txbValor.Text = Utilitarios.calculoJuros(d.valor, d.dataVencimento).ToString("c");
txbDias.Text = diasAtraso.ToString();
txbJurosdia.Text = "1%";
txbData.Text = d.dataVencimento.ToString("dd/MM/yyyy");
txbCondicao.Text = d.status;
txbEmpresa.Text = empresa.nome;
txbValorInicial.Text = d.valor.ToString("c");
txbComissãoTotalMes.Text = Usuario.comissao.ToString();
txbComissao.Text = (0.05 * d.valor + Usuario.comissao).ToString("c");
//lista de ultimas ocorrencias
var listaOcr = new OcorrenciaDAO().listLastOcorrencias(d.idDivida);
foreach (var item in listaOcr)
{
lbOcr.Items.Add(item.conteudo + "data: " + item.dataocorrencia.ToString());
lbOcr.Items.Add("");
}
}
private void onLigacao_Tick(object sender, EventArgs e)
{
this.tempoLigacao += 1;
}
private void btnBoleto_Click(object sender, EventArgs e)
{
new FormParcelas(this.d, this.devedor).Show();
}
private void btnOcr_Click(object sender, EventArgs e)
{
var ocorrencias = new FormOcorrencia(d.idDivida, devedor.iddevedor);
ocorrencias.Show();
}
private void btnCalcular_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
var formLogin = new FormLogin();
this.Dispose();
formLogin.Show();
}
}
}