Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Start Tabel Detail Order -->
- <div class="panel-body">
- <div class="table-responsive">
- <table width="100%" align="center" class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th width="7%">No</th>
- <th width="35%">Nama Paket</th>
- <th width="35%">Nama Kategori</th>
- <th width="23%">Harga</th>
- </tr>
- </thead>
- <tbody>
- <?
- $no = 1;
- $subtotal = 0;
- foreach($detail as $row) {
- $harga = $row->harga;
- $subtotal = ($subtotal+$harga);
- ?>
- <tr>
- <td><? echo $no; ?></td>
- <td><? echo $row->nama_paket; ?></td>
- <td><? echo $row->nama_kategori; ?></td>
- <td align="right">Rp. <? echo number_format($row->harga,0,",","."); ?></td>
- </tr>
- <?
- $no++;
- }
- ?>
- </tbody>
- <!-- Perhitungannya Mulai dari Sini Mas -->
- <tbody>
- <tr>
- <td align="right" colspan="3"><b>Sub Total : </b></td>
- <td align="right">
- <input name="jumlah" type="text" class="form-control" value="<?php echo $order->jumlah; ?>" size="10" maxlength="10" disabled="true" />
- <!-- <b>Rp. <?php echo number_format($subtotal,0,",","."); ?></b>--></td>
- </tr>
- <tr>
- <td align="right" colspan="3"><b>Biaya Lain-Lain : </b></td>
- <td align="right"><input name="biaya" type="text" class="form-control" value="<?php echo $order->biaya_lain; ?>" size="10" maxlength="10" />
- <!--<b>Rp. <?php echo number_format($order->biaya_lain,0,",","."); ?></b>-->
- </td>
- </tr>
- <tr>
- <td align="right" colspan="3"><b>TOTAL : </b></td>
- <td align="right"><input name="total" type="text" class="form-control" value="<?php echo $order->total; ?>" size="10" maxlength="10" disabled="true" />
- <!--<b>Rp. <?php $total = ($subtotal+$order->biaya_lain); echo number_format($total,0,",","."); ?></b>--></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <!-- End Tabel Detail Order -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement