Advertisement
ikasyam

view pencarian tanggal 2 periode

Oct 22nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. <!-- Content Wrapper. Contains page content -->
  2. <section class="content-header">
  3. <h1>
  4. <small>Detailed information</small>
  5. </h1>
  6. <ol class="breadcrumb">
  7. <li class="active"><i class="fa fa-open-folder"></i> &nbsp; Detail</li>
  8. <li class="active">Data Detail</li>
  9. </ol>
  10. </section>
  11.  
  12. <!-- Main content -->
  13. <section class="content">
  14. <div class="row">
  15. <div class="col-md-12 col-lg-12 col-xs-12">
  16. <?php if (isset($alertData)) {
  17. for ($i=0,$n=count($alertData); $i < $n; $i++){ ?>
  18. <div class="alert <?php echo $alertData[$i]['alertType']; ?> alert-dismissible">
  19. <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
  20. <h4><i class="icon <?php echo $alertData[$i]['alertIcon']; ?>"></i> <?php echo $alertData[$i]['alertCaption']; ?></h4>
  21. <?php echo $alertData[$i]['alertContent']; ?>
  22. </div>
  23. <?php }
  24. } ?>
  25. </div>
  26. <div class="col-md-12 col-lg-12 col-xs-12">
  27. <div class="box box-danger box-solid">
  28. <div class="box-header with-border">
  29. <i class="fa fa-list"></i>
  30. <h3 class="box-title">Detail List</h3>
  31. </div>
  32. <?php
  33.  
  34. if(isset($_GET['cari'])){
  35. $from=$_GET['from'];
  36. $to=$_GET['to'];
  37. echo "<b>Hasil pencarian : ".$cari."</b>";
  38. echo "<b>Hasil pencarian : ".$cari."</b>";
  39. }
  40. ?>
  41.  
  42. <table align="left" style="font-family: TimesNewRoman; font-size: 10pt;border-collapse: collapse;">
  43. <tr >
  44. <th align="left" style="width: 100px">From : </th>
  45. <td align="left" style="width: 150px"><?php echo $_POST['from']; ?></td>
  46. </tr>
  47. <tr align="left">
  48. <th align="left" style="width: 100px">To : </th>
  49. <td align="left" style="width: 150px"><?php echo $_POST['to']; ?></td>
  50. </tr>
  51. </table>
  52.  
  53. <table id="poTableList" class="table table-bordered table-striped table-hover" style="width:100%;">
  54. <thead>
  55. <tr>
  56. <th>No.</th>
  57. <th>Main Dealer</th>
  58. <th>No Klaim</th>
  59. <th>Item</th>
  60. <th>Jumlah Klaim</th>
  61. <th>Lot Produksi</th>
  62. <th>Kode Klaim</th>
  63. <th>Keterangan MD</th>
  64. <th>Diterima/Ditolak</th>
  65. <th>Keterangan SRI</th>
  66. </tr>
  67. </thead>
  68. <tbody>
  69. <?php if (isset($rekapdata)) {
  70. for ($i=0,$n=count($rekapdata); $i<$n; $i++) { ?>
  71.  
  72. <tr>
  73. <td style="width: 5%"><?php echo $i+1;?></td>
  74. <td><?php echo $rekapdata[$i]['customerName']; ?></td>
  75. <td><?php echo $rekapdata[$i]['claimNum']; ?></td>
  76. <td><?php echo $rekapdata[$i]['itemDesc']; ?></td>
  77. <td><?php echo $rekapdata[$i]['quantity']; ?></td>
  78. <td><?php echo $rekapdata[$i]['prodCode']; ?></td>
  79. <td><?php echo $rekapdata[$i]['claimDesc']; ?></td>
  80. <td><?php echo $rekapdata[$i]['mdNotes']; ?></td>
  81. <td><?php echo $rekapdata[$i]['approveFlag']; ?></td>
  82. <td><?php echo $rekapdata[$i]['sriNotes']; ?></td>
  83. <td style="width: 5%">
  84. </td></tr>
  85. <?php }
  86. } ?>
  87. </tbody>
  88. </table><!-- /.box -->
  89. </div><!-- /.box-body -->
  90.  
  91.  
  92. </div>
  93. </div>
  94. <!-- /.row -->
  95. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement