Passed
Pull Request — master (#8)
by Saepul
04:10
created
config/qrcode/phpqrcode.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1460,7 +1460,7 @@
 block discarded – undo
1460 1460
             -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1461 1461
             -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1462 1462
             36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43,
1463
-             0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1,
1463
+                0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1,
1464 1464
             -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
1465 1465
             25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1,
1466 1466
             -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
Please login to merge, or discard this patch.
modul/mod_report_rekap_harian/print_report_rekap_harian.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -512,21 +512,21 @@  discard block
 block discarded – undo
512 512
 									WHERE b.tanggal LIKE '$prd%'
513 513
 									AND b.status != '4'");
514 514
 
515
-             $d3 = mysql_fetch_array($dtampil3);
515
+                $d3 = mysql_fetch_array($dtampil3);
516 516
 
517
-             echo '<th>'.$d3['jml'].'</th>';
518
-             echo "<th style='text-align:right;'>".number_format($d3['rp'], 0, '.', ',').'</th>';
517
+                echo '<th>'.$d3['jml'].'</th>';
518
+                echo "<th style='text-align:right;'>".number_format($d3['rp'], 0, '.', ',').'</th>';
519 519
 
520
-             echo '<th></th>';
521
-             echo '<th></th>';
522
-             echo '<th></th>';
520
+                echo '<th></th>';
521
+                echo '<th></th>';
522
+                echo '<th></th>';
523 523
 
524
-             echo '<th></th>';
525
-             echo '<th></th>';
526
-             echo '<th></th>';
524
+                echo '<th></th>';
525
+                echo '<th></th>';
526
+                echo '<th></th>';
527 527
 
528
-             //total jml
529
-              $dtampil4 = mysql_query("SELECT COUNT(c.jumlah) as jml 
528
+                //total jml
529
+                $dtampil4 = mysql_query("SELECT COUNT(c.jumlah) as jml 
530 530
 									FROM kasir b LEFT JOIN kasir_detail c
531 531
 									ON  b.id_kasir = c.id_kasir
532 532
 									AND c.status != '4'
@@ -534,12 +534,12 @@  discard block
 block discarded – undo
534 534
 									WHERE b.tanggal LIKE '$prd%'
535 535
 									AND b.status != '4'");
536 536
 
537
-             $d4 = mysql_fetch_array($dtampil4);
537
+                $d4 = mysql_fetch_array($dtampil4);
538 538
 
539
-             echo '<th>'.$d4['jml'].'</th>';
539
+                echo '<th>'.$d4['jml'].'</th>';
540 540
 
541
-             //total pembayaran
542
-             $dtampil5 = mysql_query("SELECT a.groups
541
+                //total pembayaran
542
+                $dtampil5 = mysql_query("SELECT a.groups
543 543
 										,	IFNULL(SUM(c.jumlah),0) as rp  
544 544
 									FROM jenis_pembayaran a LEFT JOIN kasir b
545 545
 									ON  b.tanggal LIKE '$prd%'
Please login to merge, or discard this patch.