forked from rizkadwisaputra/inventorybarang
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbarangpembelian.php
More file actions
48 lines (47 loc) · 1.96 KB
/
barangpembelian.php
File metadata and controls
48 lines (47 loc) · 1.96 KB
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
<?php $pembelian = new \Ataslangit\DB\Pembelian();
?>
<div class="row">
<div class="col-md-12">
<!-- Advanced Tables -->
<div class="panel panel-default">
<div class="panel-heading">
Data Barang Pembelian
</div>
<div class="panel-body">
<div class="table">
<table class="table table-striped table-bordered table-hover" id="tabelku">
<thead>
<tr>
<th>No</th>
<th>Nama Barang</th>
<th>Satuan</th>
<th>Harga Beli</th>
<th>Item</th>
<th>Aksi</th>
</tr>
</thead>
<tbody>
<?php
$pem = $pembelian->tampil_barang_pembelian();
foreach ($pem as $index => $data) {
?>
<tr class="odd gradeX">
<td><?= $index + 1; ?></td>
<td><?= $data['nama_barang_beli']; ?></td>
<td><?= $data['satuan']; ?></td>
<td><?= number_format($data['harga_beli']); ?></td>
<td><?= $data['item']; ?></td>
<td>
<a href="index.php?page=simpanbaranggudang&kdbl=<?= $data['kd_barang_beli']; ?>" class="btn btn-success btn-xs"><i class="fa fa-download"></i> Masukan Ke Gudang</button>
</td>
</tr>
<?php
} ?>
</tbody>
</table>
</div>
</div>
</div>
<!--End Advanced Tables -->
</div>
</div>