-
Notifications
You must be signed in to change notification settings - Fork 0
/
formpagamento.cpp
72 lines (62 loc) · 1.64 KB
/
formpagamento.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
#include "formpagamento.h"
#include "ui_formpagamento.h"
#include <QDebug>
formpagamento::formpagamento(QWidget *parent) :
QDialog(parent),
ui(new Ui::formpagamento)
{
ui->setupUi(this);
this->setWindowFlags(Qt::CustomizeWindowHint); //Set window with no title bar
ui->txtEffettivo->setFocus();
}
formpagamento::~formpagamento()
{
delete ui;
}
void formpagamento::caricaDati(float prezzo,int Pagamento)
{
ui->txtTotale->setText(QString::number(prezzo));
tipoPagamento=Pagamento;
}
void formpagamento::on_btnConferma_clicked()
{
emit(chiudiScontrino(ui->txtEffettivo->text().toDouble(),tipoPagamento));
ui->txtEffettivo->setText("");
ui->txtPagato->setText("");
ui->txtResto->setText("");
ui->txtTotale->setText("");
this->close();
}
void formpagamento::on_btnAnnulla_clicked()
{
this->close();
}
void formpagamento::on_txtPagato_returnPressed()
{
float totale=ui->txtTotale->text().toDouble();
float effettivo = 0;
float pagato = 0;
float resto = 0;
if (ui->txtEffettivo->text()!=""){
effettivo=ui->txtEffettivo->text().toDouble();
}
if (ui->txtPagato->text()!="."){
pagato=ui->txtPagato->text().toDouble();
QString messaggio="";
messaggio=ui->txtPagato->text();
qDebug() << messaggio;
}
else{
QMessageBox::critical(this,"Errore","E' necessario specificare il Pagato",QMessageBox::Ok);
ui->txtPagato->setFocus();
}
if (effettivo!=0){
resto=effettivo-pagato;
}
else
{
resto=totale-pagato;
}
ui->txtResto->setText(QString::number(resto));
ui->btnConferma->setFocus();
}