-
Notifications
You must be signed in to change notification settings - Fork 1
/
winkelmand.php
352 lines (249 loc) · 14.4 KB
/
winkelmand.php
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<?php
// Uit deze php bestanden gebruiken wij functies of variabelen:
include_once("app/authentication.php"); // Accounts en login
include_once("app/vendor.php"); // wordt gebruikt voor website beschrijving
include_once("app/database.php"); // wordt gebruikt voor database connectie
include_once("app/model/categorie.php"); // wordt gebruikt voor categorieen ophalen uit DB
include_once("app/model/product.php"); // wordt gebruikt voor producten ophalen uit DB
include_once("app/mediaportal.php"); // wordt gebruikt voor categorie foto's
include_once("app/cart.php"); // Wordt gebruikt om de huidige test producten te gebruiken
?>
<!doctype html>
<html class="no-js" lang="">
<head>
<?php
//Hier include je de head-tag-template, alles wat in de header komt pas je aan in "tpl/head-tag-template.php"
include("tpl/head-tag-template.php");
?>
</head>
<body>
<!-- Onze website werkt niet met Internet Explorer 9 en lager, laat een waarschuwing zien -->
<!--[if IE]>
<div id="warning" class="fixed-top"><p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please upgrade your browser to improve your experience and security.</p></div>
<![endif]-->
<?php
// Als er een Product ID in de $_GET[] staat voegen we die toe aan de winkelmand.
if (isset($_GET["id"])) {
$nieuwProduct = $_GET["id"];
$nieuwProductId = intval($nieuwProduct);
if ($nieuwProductId > 0) {
Cart::add($nieuwProductId, 1);
}
}
?>
<form id="update-aantal" style="display: none" method="POST" action="winkelmand.php">
<input type="hidden"
name="csrf_token"
value="<?php print($csrf_token);?>"
/>
<input id="update-aantal-input"
type="hidden"
name=""
value="-1"
/>
</form>
<!-- Hierin -->
<div id="pagina-container">
<!-- Print de header (logo, navigatiebalken, etc.)-->
<?php
include("tpl/header_template.php");
?>
<!-- Inhoud pagina -->
<div class="content-container-home">
<form method="post" action="order-overview.php">
<script>
/**
* Wrapper klasse voor een input veld met bijbehorende eigenschappen
*/
class InputVeld {
constructor(element, prijs, taxrate) {
this.element = element;
this.prijs = prijs;
this.taxrate = taxrate;
}
}
// Dit is de array met alle aantal omhoog/omlaag knoppen.
var input_elementen = [];
</script>
<?php
$teller = 0;
$isResultaat = false;
foreach (Cart::get() as $item => $aantal) {
$isResultaat = true;
$stmt = (Product::getbyid(Database::getConnection(), $item, 5));
$row = $stmt->fetch(PDO::FETCH_ASSOC);
extract($row);
?>
<div id="geheel<?php print($teller); ?>" class="row" style="padding-bottom: 2vh">
<!-- Links komen de foto's en informatie van het product-->
<div id="Foto" class="col-2">
<!-- Foto van product of categorie -->
<img src="data:image/png;base64, <?php
if (isset($Photo) && $Photo != null) {
print($Photo);
} else {
print(MediaPortal::getCategoryImage($StockGroupID));
}
?>" id="Productphoto" class="Productphoto" alt="Productfoto">
</div>
<div id="Omschrijving" class="col-4">
<?php
if (isset($StockItemName) && $StockItemName != null) {
print($StockItemName);
}
print("<br>");
if (isset($MarketingComments) && $MarketingComments != null) {
print($MarketingComments);
}
?>
</div>
<div id="Aantal" class="col-1">
<input style="width: 100%"
class="form-control"
type="number"
id="hoeveelheid<?php print($teller); ?>"
name="<?php print($StockItemID); ?>"
value="<?php print($aantal); ?>">
<!-- Verwijder uit winkelwagen knop -->
<button id="verwijder<?php print($teller); ?>"
type="button"
style="width: 100%; margin-top: 0.5em"
class="btn btn-outline-secondary">
Verwijder
</button>
<script>
// Dit is de verwijder knop
const verwijderen<?php print($teller); ?> = document.getElementById('verwijder<?php print($teller); ?>');
// Dit is de rij met alles over het product
const geheel<?php print($teller); ?> = document.getElementById('geheel<?php print($teller); ?>');
// Dit is de hoeveelheid input veld
const test<?php print($teller); ?> = document.getElementById('hoeveelheid<?php print($teller); ?>');
// Dit is het onzichtbare verwijder form
const form<?php print($teller); ?> = document.getElementById('update-aantal');
const form_input<?php print($teller); ?> = document.getElementById('update-aantal-input');
verwijderen<?php print($teller); ?>.onclick = function() {
if (confirm("Wilt u dit product verwijderen?")) {
geheel<?php print($teller); ?>.style.display = "none";
test<?php print($teller); ?>.value = -1;
functie_bereken();
form_input<?php print($teller); ?>.name = "<?php print("product:" . $StockItemID); ?>";
form_input<?php print($teller); ?>.value = "<?php print("-1"); ?>";
form<?php print($teller); ?>.submit();
}
}
</script>
</div>
<!-- hier komen de aantallen en totaalprijzen-->
<div id="Prijs" class="col-5">
<p id="prijs<?php print($teller); ?>">Totaalprijs: € <?php printf( "%0.2f",$RecommendedRetailPrice * (1+ $TaxRate/100) * $aantal); ?></p>
<script>
// Dit is het input veld
const hoeveelheid_input<?php print($teller); ?> = document.getElementById('hoeveelheid<?php print($teller); ?>');
var inputVeld = new InputVeld(hoeveelheid_input<?php print($teller); ?>, <?php print($RecommendedRetailPrice); ?>, <?php print($TaxRate); ?>);
// Voeg dit veld toe aan de input elementen array
input_elementen.push(inputVeld);
// Listen for input event on numInput. ( blokkeert negatieve getallen)
hoeveelheid_input<?php print($teller); ?>.onkeydown = function(e) {
if(!((e.keyCode > 95 && e.keyCode < 106)
|| (e.keyCode > 47 && e.keyCode < 58)
|| e.keyCode === 8)) {
return false;
}
};
// Dit is de <p> tag van totaalprijs
const totaalprijs<?php print($teller); ?> = document.getElementById(('prijs<?php print($teller); ?>'));
hoeveelheid_input<?php print($teller); ?>.onchange = function () {
// Bereken de totaalprijs
totaalprijs<?php print($teller); ?>.innerHTML = "Totaalprijs: € " +
(hoeveelheid_input<?php print($teller); ?>.value * <?php print($RecommendedRetailPrice * (1+ $TaxRate/100)) ?>).toFixed(2);
if (hoeveelheid_input<?php print($teller);?>.value <= 0) {
verwijderen<?php print($teller);?>.onclick(null);
if (!(hoeveelheid_input<?php print($teller);?>.value === -1)) {
hoeveelheid_input<?php print($teller);?>.value = 1;
hoeveelheid_input<?php print($teller);?>.onchange(null);
functie_bereken();
}
}
// Bereken de prijs incl/excl btw opnieuw.
functie_bereken();
}
</script>
<!-- Zorgt ervoor dat je geen negatief getal kan invullen-->
</div>
</div>
<?php
$teller++;
}
if ($isResultaat) {
?>
<div class="row">
<div id="opvul" class="col-7">
</div>
<!-- Bestelknop komt hier met foto's van betalmethoden-->
<div id="Totaal" class="col-3">
<!-- Prijzen totaal-->
<p id="prijs-excl">Exclusief btw: €</p>
<p id="prijs-incl">Inclusief btw: €</p>
<p id="prijs-totaal">Totaalbedrag: €</p>
<script>
const element_prijs_excl = document.getElementById("prijs-excl");
const element_prijs_incl = document.getElementById("prijs-incl");
const element_prijs_totaal = document.getElementById("prijs-totaal");
const functie_bereken = function () {
let prijsExcl = 0;
let prijsIncl = 0;
// foreach loop voor alle input elementen
input_elementen.forEach(function (element, index, array) {
// Als hoeveelheid positief is
if (element.element.value > 0) {
// Voeg de totaalprijs van dit product toe
prijsExcl += element.element.value * element.prijs;
prijsIncl += element.element.value * (element.prijs * (1 + element.taxrate / 100));
}
});
// Rond de prijzen af naar 2 decimalen en voeg ze in op de juiste plek
element_prijs_excl.innerHTML = "Exclusief btw: €" + prijsExcl.toFixed(2);
element_prijs_incl.innerHTML = "Inclusief btw: €" + prijsIncl.toFixed(2);
element_prijs_totaal.innerHTML = "Totaalbedrag: €" + prijsIncl.toFixed(2);
};
functie_bereken();
</script>
</div>
<div id="verstuur" class="col-2">
<!-- Submit knop en betaalmethoden afbeeldingen -->
<input type="submit"
value="Verder naar bestellen"
class="btn btn-primary bootstrap-btn"
style="margin-bottom: 1.2rem">
<img src="img/logo/ideal.png" style="max-width: 60%">
</div>
<?php
//Als er niks in het winkelmandje zit word je verzocht om terug te gaan naar de index pagina
} else {
?>
<div style="padding-bottom: 5vw">
<h2>Uw winkelmand is leeg</h2>
<br>
<a href="index.php">
<p>Klik hier om verder te winkelen</p>
</a>
</div>
<?php
}
?>
</div>
<input type="hidden"
name="csrf_token"
value="<?php print($csrf_token);?>"
/>
</form>
</div>
</div>
<div class="footer-container">
<?php
// Dit is de footer
include("tpl/footer_template.php");
?>
</div>
</body>
</html>