Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f145b9e2ec | |||
| ea969beedc |
@@ -187,6 +187,7 @@ class Items extends CI_Controller {
|
||||
|
||||
$barcodes = $this->db
|
||||
->where('item_id',$item_id)
|
||||
->where('status !=', 'sold_out')
|
||||
->order_by('id','ASC')
|
||||
->get('item_barcodes')
|
||||
->result();
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
:root {
|
||||
--tech-primary: #ff9800;
|
||||
--tech-primary-light: #fff3e0;
|
||||
--tech-primary-dark: #e65100;
|
||||
--tech-primary-dark: #ff9800;
|
||||
}
|
||||
|
||||
body {
|
||||
@@ -78,6 +78,15 @@ body {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.table-tech td .badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 65px;
|
||||
padding: 0.35em 0.65em;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.table-tech tbody tr:hover {
|
||||
background: #fff3e0;
|
||||
}
|
||||
@@ -480,7 +489,7 @@ body {
|
||||
<th>Nama Barang</th>
|
||||
<th>Serial Number</th>
|
||||
<th>Jumlah</th>
|
||||
<th style="width:100px">Status</th>
|
||||
<th class="text-center" style="width:100px">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
@@ -529,7 +538,7 @@ body {
|
||||
</div>
|
||||
|
||||
<!-- Data table -->
|
||||
<h6 class="fw-bold mb-2"><i class="bi bi-box me-1"></i> Barang Bawaan</h6>
|
||||
<h6 class="fw-bold mb-2 mt-5"><i class="bi bi-box me-1"></i> Barang Bawaan</h6>
|
||||
<div class="table-responsive">
|
||||
<table id="tableFormBarang" class="table table-tech table-hover table-striped align-middle w-100">
|
||||
<thead>
|
||||
@@ -538,7 +547,7 @@ body {
|
||||
<th>Barcode</th>
|
||||
<th>Nama Barang</th>
|
||||
<th>Serial Number</th>
|
||||
<th style="width:20px">Jumlah</th>
|
||||
<th style="width:100px">Jumlah</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
|
||||
Reference in New Issue
Block a user