Advertisement
timonte

laporan

May 15th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1. <div class="x_panel">
  2. <div class="x_title">
  3. <h2>Laporan Transaksi</h2>
  4. <div class="clearfix"></div>
  5. <?= validation_errors('<p style="color:red">','</p>'); ?>
  6. <form class="form-horizontal row"action="" method="post">
  7.  
  8. <div class="form-group col-md-3 col-sm-12">
  9. <select class="form-control">
  10. <option value="01" <?php if ($bln == 01) { echo 'selected'; } ?>>Januari</option>
  11. <option value="02" <?php if ($bln == 02) { echo 'selected'; } ?>>Februari</option>
  12. <option value="03" <?php if ($bln == 03) { echo 'selected'; } ?>>Maret</option>
  13. <option value="04" <?php if ($bln == 04) { echo 'selected'; } ?>>April</option>
  14. <option value="05" <?php if ($bln == 05) { echo 'selected'; } ?>>Mei</option>
  15. <option value="06" <?php if ($bln == 06) { echo 'selected'; } ?>>Juni</option>
  16. <option value="07" <?php if ($bln == 07) { echo 'selected'; } ?>>Juli</option>
  17. <option value="08" <?php if ($bln == 08) { echo 'selected'; } ?>>Agustus</option>
  18. <option value="09" <?php if ($bln == 09) { echo 'selected'; } ?>>September</option>
  19. <option value="10" <?php if ($bln == 10) { echo 'selected'; } ?>>Oktober</option>
  20. <option value="11" <?php if ($bln == 11) { echo 'selected'; } ?>>November</option>
  21. <option value="12" <?php if ($bln == 12) { echo 'selected'; } ?>>Desember</option>
  22. </select>
  23. </div>
  24.  
  25. <div class="form-group col-md-3 col-sm-12">
  26. <select class="form-control">
  27. <?php for ($i = 2016; $i <= 2035; $i++) { ?>
  28. <option value="<?=$i;?>" >
  29. <?=$i;?>
  30. </option>
  31. <?php } ?>
  32. </select>
  33. </div>
  34.  
  35. <button type="submit" name="Submit" class="btn btn-primary">Submit</button>
  36. </form>
  37. </div>
  38.  
  39. <div class="x_content">
  40. <div class="row">
  41.  
  42. <div class="col-md-10 col-sm-12">
  43. <h3>Laporan Bulan Tahun </h3>
  44. </div>
  45. <div class="col-md-1 col-sm-12 col-md-offset-1">
  46. <a href="#" class="btn btn-success"><i class="fa fa-print"></i></a>
  47. </div>
  48.  
  49. <div class="col-md-12 col-sm-12">
  50. <table class="table table-bordered">
  51. <thead>
  52. <tr>
  53. <th>#</th>
  54. <th>Id Order</th>
  55. <th>Nama Pemesan</th>
  56. <th>Kota Tujuan</th>
  57. <th>Total Bayar</th>
  58. <th>Ongkir</th>
  59. <th>Pendapatan</th>
  60. </tr>
  61. </thead>
  62. <tbody>
  63. <tr>
  64. <td></td>
  65. <td></td>
  66. <td></td>
  67. <td></td>
  68. <td>
  69. <span style="float:left">Rp.</span>
  70. <span style="float:right">,-</span>
  71. </td>
  72. <td>
  73. <span style="float:left">Rp.</span>
  74. <span style="float:right">,-</span>
  75. </td>
  76. <td>
  77. <span style="float:left">Rp.</span>
  78. <span style="float:right">,-</span>
  79. </td>
  80. </tr>
  81. <tr>
  82. <td colspan="6" style="text-align:center"><b>Pendapatan</b></td>
  83. <td>
  84. <b>
  85. <span style="float:left">Rp.</span>
  86. <span style="float:right">,-</span>
  87. </b>
  88. </td>
  89. </tr>
  90. </tbody>
  91. </table>
  92. </div>
  93.  
  94. <div class="col-md-6 col-sm-6">
  95. <a href="#" class="btn btn-default" onclick="window.history.go(-1)">Kembali</a>
  96. </div>
  97.  
  98. </div>
  99. </div>
  100. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement