-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransfer_sec_dia.cpp
47 lines (42 loc) · 1.24 KB
/
transfer_sec_dia.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
#include "transfer_sec_dia.h"
#include "ui_transfer_sec_dia.h"
#include<QValidator>
#include<QMessageBox>
transfer_sec_dia::transfer_sec_dia(QWidget *parent) :
QDialog(parent),
ui(new Ui::transfer_sec_dia)
{
ui->setupUi(this);
QValidator *validator = new QIntValidator(1000, 9999, this);
ui->cvv2led->setValidator(validator);
}
transfer_sec_dia::~transfer_sec_dia()
{
delete ui;
}
void transfer_sec_dia::setpropertise(QString _toname, int _price, account _fromaccount, QString _toaccount,transfer_first_dia* _lastpage)
{
toname=_toname;
price=_price;
fromaccount=_fromaccount;
toaccount=_toaccount;
lastpage=_lastpage;
ui->toaccountnameprint->setText(toname);
QString stringOfPrice=QString::number(price);
ui->priceprinter->setText(stringOfPrice);
}
void transfer_sec_dia::on_pushButton_2_clicked()
{
int status=fromaccount.transfer(toaccount,price);
if(status==0)
{
QMessageBox::information(nullptr,"موفقیت","انتقال وجه موفقیت آمیز بود",QMessageBox::Ok,QMessageBox::Ok);
}
lastpage->close();
this->close();
}
void transfer_sec_dia::on_pushButton_clicked()
{
lastpage->show();
this->close();
}