-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
668 lines (619 loc) · 30.6 KB
/
dashboard.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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
<?php
session_start();
require "function/functions.php";
// session dan cookie multilevel user
if(isset($_COOKIE['login'])) {
if ($_COOKIE['level'] == 'user') {
$_SESSION['login'] = true;
$ambilNama = $_COOKIE['login'];
}
elseif ($_COOKIE['level'] == 'admin') {
$_SESSION['login'] = true;
header('Location: administrator');
}
}
elseif ($_SESSION['level'] == 'user') {
$ambilNama = $_SESSION['user'];
}
else {
if ($_SESSION['level'] == 'admin') {
header('Location: administrator');
exit;
}
}
if(empty($_SESSION['login'])) {
header('Location: login');
exit;
}
$totalPemasukan = query("SELECT * FROM pemasukkan WHERE username = '$ambilNama'");
$totalPengeluaran = query("SELECT * FROM pengeluaran WHERE username = '$ambilNama'");
foreach ( $totalPemasukan as $rowMasuk ) {
$hargaMasuk[] = $rowMasuk["jumlah"];
$convertHarga = str_replace('.', '', $hargaMasuk);
$totalMasuk = array_sum($convertHarga);
}
foreach ( $totalPengeluaran as $rowKeluar ) {
$hargaKeluar[] = $rowKeluar["jumlah"];
$convertHarga2 = str_replace('.', '', $hargaKeluar);
$totalKeluar = array_sum($convertHarga2);
}
global $totalMasuk, $totalKeluar;
$saldo = $totalMasuk - $totalKeluar;
$saldoFix = number_format($saldo, 0, ',', '.');
$month = date('m');
$day = date('d');
$year = date('Y');
$today = $year . '-' . $month . '-' . $day;
// pemasukkan rekening
$rekeningMasuk = query("SELECT * FROM rekening_masuk WHERE username = '$ambilNama'");
foreach ($rekeningMasuk as $rowRekIn) {
$jumlah[] = $rowRekIn['jumlah'];
$jumlahConvert = str_replace('.', '', $jumlah);
$totalRekIn = array_sum($jumlahConvert);
}
// pengeluaran rekening
$rekeningKeluar = query("SELECT * FROM rekening_keluar WHERE username = '$ambilNama'");
foreach ($rekeningKeluar as $rowRekOut) {
$jumlah2[] = $rowRekOut['jumlah'];
$jumlahConvert2 = str_replace('.', '', $jumlah2);
$totalRekOut = array_sum($jumlahConvert2);
}
// saldo rekening
global $totalRekIn, $totalRekOut;
$saldoRek = $totalRekIn - $totalRekOut;
$saldoRekFix = number_format($saldoRek, 0, ',', '.');
$no = 1;
// get no rekening
$query = "SELECT * FROM users WHERE username = '$ambilNama'";
$ambilQuery = mysqli_query($koneksi, $query);
$ambilData = mysqli_fetch_assoc($ambilQuery);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="img/icon.png">
<title>Catatankas - Dashboard</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
<link rel="stylesheet" href="css/styler.css?v=1.0">
<link rel="stylesheet" href="css/dashboard.css?v=1.0">
<script src="js/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css">
<script src="js/sweetalert.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js"></script>
<style>
.rentang {
padding-bottom: 75px;
}
</style>
</head>
<body>
<div class="header">
<img src="img/icon.png" width="25px" height="25px" class="float-left logo-fav">
<h3 class="text-secondary font-weight-bold float-left logo">Catatankas</h3>
<!-- <h3 class="text-secondary float-left logo2">kas</h3> -->
<a href="logout">
<div class="logout">
<i class="fas fa-sign-out-alt float-right log"></i>
<p class="float-right logout">Logout</p>
</div>
</a>
</div>
<div class="sidebar">
<nav>
<ul>
<li class="rentang">
<img src="img/user.png" class="img-fluid profile float-left" width="60px">
<h5 class="admin"><?= substr($ambilNama, 0, 7) ?></h5>
<div class="online online2">
<p class="float-right ontext">Online</p>
<div class="on float-right"></div>
</div>
</li>
<!-- fungsi slide -->
<script>
$(document).ready(function () {
$("#flip").click(function () {
$("#panel").slideToggle("medium");
$("#panel2").slideToggle("medium");
});
$("#flip2").click(function () {
$("#panel3").slideToggle("medium");
$("#panel4").slideToggle("medium");
});
});
</script>
<!-- dashboard -->
<a href="dashboard" style="text-decoration: none;">
<li class="aktif" style="border-left: 5px solid #306bff;">
<div>
<span class="fas fa-tachometer-alt"></span>
<span>Dashboard</span>
</div>
</li>
</a>
<!-- data -->
<li class="klik" id="flip" style="cursor:pointer;">
<div>
<span class="fas fa-database"></span>
<span>Data Harian</span>
<i class="fas fa-caret-right float-right" style="line-height: 20px;"></i>
</div>
</li>
<a href="pemasukkan" class="linkAktif">
<li id="panel" style="display: none;">
<div style="margin-left: 20px;">
<span><i class="fas fa-file-invoice-dollar"></i></span>
<span>Data Pemasukan</span>
</div>
</li>
</a>
<a href="pengeluaran" class="linkAktif">
<li id="panel2" style="display: none;">
<div style="margin-left: 20px;">
<span><i class="fas fa-hand-holding-usd"></i></span>
<span>Data Pengeluaran</span>
</div>
</li>
</a>
<!-- data -->
<!-- Input -->
<li class="klik2" id="flip2" style="cursor:pointer;">
<div>
<span class="fas fa-plus-circle"></span>
<span>Input Data</span>
<i class="fas fa-caret-right float-right" style="line-height: 20px;"></i>
</div>
</li>
<a href="tambahPemasukkan" class="linkAktif">
<li id="panel3" style="display: none;">
<div style="margin-left: 20px;">
<span><i class="fas fa-file-invoice-dollar"></i></span>
<span>Pemasukan</span>
</div>
</li>
</a>
<a href="tambahPengeluaran" class="linkAktif">
<li id="panel4" style="display: none;">
<div style="margin-left: 20px;">
<span><i class="fas fa-hand-holding-usd"></i></span>
<span>Pengeluaran</span>
</div>
</li>
</a>
<!-- Input -->
<!-- laporan -->
<a href="laporan" style="text-decoration: none;">
<li>
<div>
<span><i class="fas fa-clipboard-list"></i></span>
<span>Laporan</span>
</div>
</li>
</a>
<!-- change icon -->
<script>
$(".klik").click(function () {
$(this).find('i').toggleClass('fa-caret-up fa-caret-right');
if ($(".klik").not(this).find("i").hasClass("fa-caret-right")) {
$(".klik").not(this).find("i").toggleClass('fa-caret-up fa-caret-right');
}
});
$(".klik2").click(function () {
$(this).find('i').toggleClass('fa-caret-up fa-caret-right');
if ($(".klik2").not(this).find("i").hasClass("fa-caret-right")) {
$(".klik2").not(this).find("i").toggleClass('fa-caret-up fa-caret-right');
}
});
</script>
<!-- change icon -->
</ul>
</nav>
</div>
<div class="main-content khusus">
<div class="konten khusus2">
<div class="konten_dalem khusus3">
<h2 class="heade" style="color: #4b4f58;">Dashboard</h2>
<hr style="margin-top: -2px;">
<div class="container" id="container" style="border: none;">
<div class="row tampilCardview" id="row">
<div class="col-md-4 jarak">
<div class="card card-stats card-warning" style="background: #347ab8;">
<div class="card-body ">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fas fa-wallet ikon"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center tulisan">
<div class="numbers">
<p class="card-category ket head">Saldo kas</p>
<h4 class="card-title ket total">Rp. <?=$saldoFix;?></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 jarak">
<a href="tambahPengeluaran" style="text-decoration: none;">
<div class="card card-stats card-warning" style="background: #d95350;">
<div class="card-body ">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fa fa-file-invoice-dollar ikon"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center tulisan">
<div class="numbers">
<p class="card-category ket head">Pengeluaran</p>
<?php foreach ($totalPengeluaran as $row) : ?>
<?php
$hargaPengeluaran[] = $row["jumlah"];
$hargaConvert = str_replace('.', '', $hargaPengeluaran);
$totalPeng = array_sum($hargaConvert);
$hasilHargaPengeluaran = number_format($totalPeng, 0, ',', '.');
?>
<?php endforeach; ?>
<?php global $hasilHargaPengeluaran;
if ( $hasilHargaPengeluaran != "" ) : ?>
<h4 class="card-title ket total">Rp. <?= $hasilHargaPengeluaran; ?></h4>
<?php else : ?>
<h4 class="card-title ket total">Rp. 0</h4>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<div class="overlay" style="background: #e45351;">
<div class="card-body">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fas fa-plus-circle ikon2"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center">
<p class="tulisan">Tambah Data</p>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="col-md-4 jarak">
<a href="tambahPemasukkan" style="text-decoration: none;">
<div class="card card-stats card-warning" style="background: #5db85b;">
<div class="card-body">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fa fa-hand-holding-usd ikon"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center tulisan">
<div class="numbers">
<p class="card-category ket head">Pemasukan</p>
<?php foreach ($totalPemasukan as $row) : ?>
<?php
$hargaPemasukkan[] = $row["jumlah"];
$hargaConvert = str_replace('.', '', $hargaPemasukkan);
$totalPem = array_sum($hargaConvert);
$hasilHarga = number_format($totalPem, 0, ',', '.');
?>
<?php endforeach ?>
<?php global $hasilHarga;
if ( $hasilHarga != "" ) : ?>
<h4 class="card-title ket total">Rp. <?= $hasilHarga ?> </h4>
<?php else : ?>
<h4 class="card-title ket total">Rp. 0 </h4>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<div class="overlay">
<div class="card-body">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fas fa-plus-circle ikon2"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center">
<p class="tulisan">Tambah Data</p>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="rekening">
<div class="row tampil">
<div class="col-lg-5 rek">
<div class="konten-rekening border-right">
<p>Saldo Rekening</p>
<h3>Rp. <?= $saldoRekFix ?></h3>
<button class="btn btn-lg add-rekening btn-prev" data-toggle="modal" data-target="#exampleModalCenter"><i class="fas fa-dollar-sign"></i>
Kelola rekening</button>
<hr>
<div class="row">
<div class="col-lg-6">
<div class="history text-center">
<a href="#" id="openBtn3">
<i class="fas fa-history"></i>
<span>History</span>
</a>
</div>
</div>
<div class="col-lg-6">
<div class="refresh text-center">
<a href="dashboard">
<i class="fas fa-sync-alt"></i>
<span>Refresh</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 rek">
<canvas id="myChart" width="60px" height="30px"></canvas>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<input type="hidden" id="username" value="<?= $ambilNama ?>">
<input type="hidden" id="saldoRekening" value="<?= $saldoRek ?>">
<!-- Modal Kelola rekening -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Kelola Rekening</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<div class="modal-body">
<p>No rekening anda : </p>
<h5 style="margin-top: -10px; margin-bottom: 13px;"><b><?= $ambilData['no_rek'] ?></b></h5>
<p style="margin-bottom: 5px;">Tentukan aksi : </p>
<button class="btn btn-info" id="openBtn" data-dismiss="modal">Isi saldo rekening</button>
<button class="btn btn-success" id="openBtn4" data-dismiss="modal">Transfer ke akun lain</button>
<button class="btn btn-danger" id="openBtn2" data-dismiss="modal" style="margin-top: 4px;">Cairkan ke saldo kas</button>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
</div>
</div>
</div>
</div>
<!-- Modal Kelola rekening -->
<!-- Modal dana masuk -->
<div class="modal fade" id="myModal2" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Dana masuk</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<script type="text/javascript" src="js/pisahTitik.js"></script>
<div class="modal-body">
<div class="form-group">
<label for="tanggal">Tanggal</label>
<input type="date" class="form-control" id="tanggal" value="<?= $today ?>" required>
</div>
<div class="form-group">
<label for="jumlahRek">Jumlah nominal</label>
<input type="text" class="form-control" id="jumlahRek" onkeydown="return numbersonly(this, event);"
onkeyup="javascript:tandaPemisahTitik(this);" required>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
<a href="#" class="btn btn-primary tambahRek">Tambah</a>
</div>
</div>
</div>
</div>
<!-- Modal dana masuk -->
<!-- Modal dana keluar -->
<div class="modal fade" id="myModal3" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Dana keluar</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<script type="text/javascript" src="js/pisahTitik.js"></script>
<div class="modal-body">
<div class="form-group">
<label for="tanggal">Tanggal</label>
<input type="date" class="form-control" id="tanggalRekOut" value="<?= $today ?>" required>
</div>
<div class="form-group">
<label for="jumlahRekOut">Jumlah nominal</label>
<input type="text" class="form-control" id="jumlahRekOut" onkeydown="return numbersonly(this, event);"
onkeyup="javascript:tandaPemisahTitik(this);" required>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
<a href="#" class="btn btn-primary tambahRekOut">Tambah</a>
</div>
</div>
</div>
</div>
<!-- Modal dana keluar -->
<!-- Modal history -->
<div class="modal fade" id="myModal4" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Riwayat transaksi</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<script type="text/javascript" src="js/pisahTitik.js"></script>
<div class="modal-body">
<div class="table-responsive">
<table class="table table-sm table-striped table-bordered">
<tr>
<th>No.</th>
<th>Kode transaksi</th>
<th>Nominal</th>
<th>Aksi</th>
<th>Tanggal</th>
</tr>
<?php foreach($rekeningMasuk as $row) : ?>
<tr>
<td><?= $no ?></td>
<td><?= $row['kode'] ?></td>
<td><?= $row['jumlah'] ?></td>
<td><?= $row['aksi'] ?></td>
<td><?= $row['tanggal'] ?></td>
</tr>
<?php $no++ ?>
<?php endforeach; ?>
<?php foreach($rekeningKeluar as $row) : ?>
<tr>
<td><?= $no ?></td>
<td><?= $row['kode'] ?></td>
<td><?= $row['jumlah'] ?></td>
<td><?= $row['aksi'] ?></td>
<td><?= $row['tanggal'] ?></td>
</tr>
<?php $no++ ?>
<?php endforeach; ?>
</table>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">Tutup</button>
</div>
</div>
</div>
</div>
<!-- Modal history -->
<!-- Modal transfer -->
<div class="modal fade" id="myModal5" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Transfer</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<div class="modal-body">
<div class="form-group">
<label for="jumlahRekOut">No rekening</label>
<input type="text" class="form-control" id="no_rek" required>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
<a href="#" class="btn btn-primary tambah_norek">Cari</a>
</div>
</div>
</div>
</div>
<!-- Modal transfer -->
<!-- banyak modal -->
<script>
$('#openBtn').click(function () {
$('#myModal2').modal({
show: true
});
})
$('#openBtn2').click(function () {
$('#myModal3').modal({
show: true
});
})
$('#openBtn3').click(function () {
$('#myModal4').modal({
show: true
});
})
$('#openBtn4').click(function () {
$('#myModal5').modal({
show: true
});
})
</script>
<script>
var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
type: 'horizontalBar',
data: {
labels: ["Saldo masuk", "Saldo keluar"],
datasets: [{
label: 'Data rekening',
data: [
<?= $totalRekIn ?>,
<?= $totalRekOut ?>
],
backgroundColor: [
'rgba(255, 99, 132)',
'rgba(54, 162, 235)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
xAxes: [{
stacked: true
}],
yAxes: [{
stacked: true
}]
}
}
});
</script>
<script src="js/bootstrap.js"></script>
<script src="js/kirimNoRek.js"></script>
<script src="ajax/js/tambahRekeningIn.js"></script>
<script src="ajax/js/tambahRekeningOut.js"></script>
</body>
</html>