-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.cpp
158 lines (127 loc) · 3.86 KB
/
product.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/**
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses
*/
#include "product.h"
/**
* Constructeur simple
* Utilise pour creer un nouveau produit
*/
Product::Product(){
name="";
description="";
price=0.0;
id=-1;
}
/**
* Constructeur qui initialise le produit par rapport au info contenu dans la BDD
* @param identifiant, identifiant du produit au sein de la BDD
*/
Product::Product(int identifiant){
QSqlDatabase base = QSqlDatabase::database();
QSqlQuery query;
query.prepare("SELECT * FROM product WHERE idProduct=:id");
query.bindValue(":id",identifiant);
query.exec();
query.next();
QSqlRecord rec = query.record();
name=rec.value("name").toString();
price=rec.value("price").toDouble();
description=rec.value("description").toString();
this->id=identifiant;
query.finish();
base.commit();
}
/**
* Methode qui sauvegarde un produit dans la base de données
* @return true si l'enregistrement n'a pas poser de probleme, false sinon
*/
bool Product::save(){
QSqlDatabase base = QSqlDatabase::database();
bool retour=false;
if(id==-1){
retour=createEntry();
}
else{
retour=updateEntry();
}
base.commit();
return retour;
}
int Product::getId(){
return id;
}
/**
* Methode qui permet de mettre a jour un produit dans la BDD
* @return true si l'enregistrement n'a pas poser de probleme, false sinon
*/
bool Product::updateEntry(){
QSqlQuery query;
query.prepare("UPDATE product SET name=:name, price=:price,description=:description WHERE idProduct=:id ");
query.bindValue(":name",name);
query.bindValue(":price",price);
query.bindValue(":description",description);
query.bindValue(":id",id);
bool retour=query.exec();
query.finish();
return retour;
}
/**
* Methode qui permet de creer un produit dans la BDD
* @return true si l'enregistrement n'a pas poser de probleme, false sinon
*/
bool Product::createEntry(){
QSqlQuery query;
bool retour=false;
query.prepare("INSERT INTO product (name,price,description) VALUES (:name,:price,:description )");
query.bindValue(":name",name);
query.bindValue(":price",price);
query.bindValue(":description",description);
retour=query.exec();
if(retour)
id=query.lastInsertId().toInt();
query.finish();
return retour;
}
QList<Product> Product::getAllProduct(){
QList<Product> list;
QSqlDatabase base = QSqlDatabase::database();
QSqlQuery query;
query.exec("SELECT idProduct FROM product ORDER BY idProduct");
while(query.next()){
Product p(query.record().value("idProduct").toInt());
list.append(p);
}
query.finish();
base.commit();
return list;
}
/**
* Methode qui met a jour le prix total des documents qui utilise
* le produit courant
*/
void Product::updateDocumentPrice(){
QSqlDatabase base = QSqlDatabase::database();
QSqlQuery query;
query.prepare("SELECT idDocument FROM product_document WHERE idProduct=:idProd GROUP BY idDocument");
query.bindValue(":idProd",this->id);
query.exec();
while(query.next()){
QSqlRecord rec = query.record();
int idDoc=rec.value("idDocument").toInt();
Document d(idDoc);
d.save();
}
query.finish();
base.commit();
}