-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction.cpp
83 lines (70 loc) · 1.38 KB
/
transaction.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
#include "transaction.h"
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonValue>
#include <QJsonArray>
transaction::transaction()
{
}
transaction::transaction(QString _from, QString _to, int _amount)
{
this->from = _from;
this->to = _to;
this->amount = _amount;
}
transaction::transaction(QString _from, QString _to, int _amount, bool _isWithCard, bool _isReceived)
{
this->from = _from;
this->to = _to;
this->amount = _amount;
this->isWithCard= _isWithCard;
this->isReceived = _isReceived;
}
QString transaction::getFrom() const
{
return from;
}
QString transaction::getTo() const
{
return to;
}
QString transaction::getAmountAsString()
{
QString stringamount=QString::number(amount);
return stringamount;
}
bool transaction::getIsReceived() const
{
return isReceived;
}
bool transaction::getIsWithCard() const
{
return isWithCard;
}
QString transaction::getreceivedAsString()
{
if(isReceived==0)
{
return "برداشت شده";
}
else
{
return "واریز شده";
}
}
QString transaction::getIsWithCardAsString()
{
if(isWithCard==1)
{
return "کارت";
}
else
{
return "حساب";
}
}
int transaction::getAmount() const
{
return amount;
}