-
Notifications
You must be signed in to change notification settings - Fork 0
/
janelacadastrocasa.cpp
71 lines (63 loc) · 1.93 KB
/
janelacadastrocasa.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
#include "janelacadastrocasa.h"
#include "ui_janelacadastrocasa.h"
#include "casa.h"
#include <QTextEdit>
#include <QFile>
#include <QDir>
JanelaCadastroCasa::JanelaCadastroCasa(QWidget *parent) :
QDialog(parent),
ui(new Ui::JanelaCadastroCasa)
{
ui->setupUi(this);
}
JanelaCadastroCasa::JanelaCadastroCasa(QString t,int n, QWidget *parent) :
QDialog(parent),
ui(new Ui::JanelaCadastroCasa),PathtoSave(t), n(n)
{
ui->setupUi(this);
this->save = false;
}
JanelaCadastroCasa::~JanelaCadastroCasa()
{
delete ui;
}
Imovel* JanelaCadastroCasa::atribuiValores(){
Casa *casa = new Casa();
casa->setEndereco(ui->endereco->text());
casa->setCidade(ui->cidade->text());
casa->setInquilino(ui->locatario->text());
casa->setBairro(ui->bairro->text());
casa->setComplemento(ui->complemento->text());
casa->setImobiliaria(ui->imobiliaria->currentText());
casa->setObservacao(ui->observacoes->toPlainText());
casa->setValorAluguel(ui->valorAluguel->text());
casa->setDormitorios(ui->dormitorios->currentText().toInt());
casa->setDataVencimento(QString::number(ui->dataVencimento->date().day()) + '/' + QString::number(ui->dataVencimento->date().month()));
//casa
casa->setSobrado(ui->sobrado->isChecked());
casa->setQuintal(ui->quintal->isChecked());
casa->setGaragem(ui->garagem->isChecked());
//default
casa->setPayment(vector<bool>(12,false));
casa->setIPTU(false);
return (Imovel*)casa;
}
void JanelaCadastroCasa::on_buttonCasa_clicked()
{
Imovel *imovel = atribuiValores();
this->ImovelTmp = imovel;
QString path_dir;
QDir dir;
path_dir = PathtoSave + "/" + QString::number(n+1) + "/";
dir.mkdir(path_dir);
qDebug() << "folder = " << path_dir;
imovel->imprime(path_dir);\
this->save = true;
close();
}
bool JanelaCadastroCasa::getSave()const{
return this->save;
}
Imovel *JanelaCadastroCasa::getImovel()const{
return ImovelTmp;
}