-
Notifications
You must be signed in to change notification settings - Fork 1
/
Conta.cpp
148 lines (114 loc) · 3.46 KB
/
Conta.cpp
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
/*
* Conta.cpp
*
* Created on: 23 de set de 2019
* Author: rafaelamoreira
*/
#include "Conta.h"
#include "Cliente.h"
#include <ctime>
#include <iostream>
int Conta::proximoNumConta;
Conta::Conta() { // @suppress("Class members should be properly initialized")
this->saldo = 0.0;
this->numConta = Conta::proximoNumConta;
Conta::proximoNumConta++;
//this->cliente = nullptr;
}
Conta::Conta(Cliente * clienteNovo) {
this->saldo = 0.0;
this->cliente = clienteNovo;
this->numConta = Conta::proximoNumConta;
Conta::proximoNumConta++;
}
Conta::~Conta() {
// TODO Auto-generated destructor stub
}
//getters and setters
const Cliente& Conta::getCliente() const {
return *cliente;
}
const std::vector<Movimentacao> Conta::getMovimentacoes() {
return movimentacoes;
}
int Conta::getNumConta() const {
return numConta;
}
double Conta::getSaldo() const {
return saldo;
}
void Conta::setCliente(Cliente* newCliente)
{
cliente = newCliente;
}
//methods
vector<Movimentacao> Conta::obterExtrato(std::string dataIni, std::string dataFim) {
time_t seconds;
tm * curr_tm;
char date_string[10];
vector<Movimentacao> * extrato = new vector<Movimentacao>;
for(std::size_t i=0; i< this->getMovimentacoes().size(); i++) {
//convert time_t to string
seconds = this->getMovimentacoes()[i].getDataMov();
time(&seconds);
curr_tm = localtime(&seconds);
strftime(date_string, 50, "%d/%m/%Y", curr_tm);
std::string s(date_string);
//date compare
if(s <= dataIni) {
if (s >= dataFim) {
Movimentacao *mov = new Movimentacao( this->getMovimentacoes()[i].getDataMov(), this->getMovimentacoes()[i].getDescricao(), this->getMovimentacoes()[i].getDebitoCredito(), this->getMovimentacoes()[i].getValor());
extrato->push_back(*mov);
}
}
}
return *extrato;
}
vector<Movimentacao> Conta::obterExtrato(std::string dataIni) {
time_t seconds;
tm * curr_tm;
char date_string[10];
vector<Movimentacao> * extrato = new vector<Movimentacao>;
for(std::size_t i=0; i< this->getMovimentacoes().size(); i++) {
//convert time_t to string
seconds = this->getMovimentacoes()[i].getDataMov();
time(&seconds);
curr_tm = localtime(&seconds);
strftime(date_string, 50, "%d/%m/%Y", curr_tm);
std::string s(date_string);
//date compare
if(s <= dataIni) {
Movimentacao *mov = new Movimentacao( this->getMovimentacoes()[i].getDataMov(), this->getMovimentacoes()[i].getDescricao(), this->getMovimentacoes()[i].getDebitoCredito(), this->getMovimentacoes()[i].getValor());
extrato->push_back(*mov);
delete(mov);
}
}
//delete curr_tm;
return *extrato;
}
vector<Movimentacao> Conta::obterExtratoMesAtual() {
time_t seconds;
tm * curr_tm;
char date_string[10];
//find current month
time(&seconds);
curr_tm = localtime(&seconds);
strftime(date_string, 50, "%m", curr_tm);
std::string mesAtual(date_string);
vector<Movimentacao> * extrato = new vector<Movimentacao>;
for(std::size_t i=0; i< this->getMovimentacoes().size(); i++) {
//convert time_t to string
seconds = this->getMovimentacoes()[i].getDataMov();
time(&seconds);
curr_tm = localtime(&seconds);
strftime(date_string, 50, "%m", curr_tm);
std::string mes(date_string);
//date compare
if(mesAtual == mes) {
Movimentacao *mov = new Movimentacao( this->getMovimentacoes()[i].getDataMov(), this->getMovimentacoes()[i].getDescricao(), this->getMovimentacoes()[i].getDebitoCredito(), this->getMovimentacoes()[i].getValor());
extrato->push_back(*mov);
delete(mov);
}
}
return *extrato;
}