-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformsconti.cpp
64 lines (56 loc) · 1.64 KB
/
formsconti.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
#include "formsconti.h"
#include "ui_formsconti.h"
#include <QtSql>
formsconti::formsconti(QWidget *parent) :
QDialog(parent),
ui(new Ui::formsconti)
{
ui->setupUi(this);
QSqlQuery qry;
qry=db.recuperaSconti();
if (qry.next()){
ui->sconto1->setText(qry.value(1).toString());
while(qry.next()){
switch(qry.value(0).toInt()){
case 2:
ui->sconto2->setText(qry.value(1).toString());
break;
case 3:
ui->sconto3->setText(qry.value(1).toString());
break;
case 4:
ui->sconto4->setText(qry.value(1).toString());
break;
case 5:
ui->sconto5->setText(qry.value(1).toString());
break;
}
}
}
else
{
QMessageBox::critical(this,"Errore","Impossibile receprare gli sconti",QMessageBox::Ok);
this->close();
}
}
formsconti::~formsconti()
{
delete ui;
}
void formsconti::on_btnConferma_clicked()
{
bool esito=false;
int sconto1=ui->sconto1->text().toInt();
int sconto2=ui->sconto2->text().toInt();
int sconto3=ui->sconto3->text().toInt();
int sconto4=ui->sconto4->text().toInt();
int sconto5=ui->sconto5->text().toInt();
esito=db.salvaSconti(sconto1,sconto2,sconto3,sconto4,sconto5);
if (esito==true){
QMessageBox::information(this,"Info","Sconti correttamente salvati",QMessageBox::Ok);
}
else
{
QMessageBox::critical(this,"Errore","Errore durante il salvataggio degli sconti",QMessageBox::Ok);
}
}