This commit is contained in:
Dwi Swandhana
2026-05-04 06:32:22 +07:00
parent fe89a024a1
commit 16eac8512e
11 changed files with 466 additions and 56 deletions

No files matched your search

@@ -101,6 +101,7 @@
<tr>
<th style="width: 110px">Kode</th>
<th>Barang</th>
<th>Keterangan</th>
<th style="width: 90px">Qty</th>
<th style="width: 80px">Sat</th>
<th style="width: 60px">Aksi</th>
@@ -111,6 +112,7 @@
<tr>
<td class="text-center"><code>{{ $line['kode'] }}</code></td>
<td>{{ $line['jenis'] }}</td>
<td>{{ $line['keterangan'] ?: '-' }}</td>
<td class="text-right">{{ number_format((int) ($line['qty'] ?? 0), 0, '.', ',') }}</td>
<td class="text-center">{{ strtoupper($line['satuan_transaksi'] ?? '-') }}</td>
<td class="text-center">
@@ -118,7 +120,7 @@
</td>
</tr>
@empty
<tr><td colspan="5" class="text-center text-muted">Keranjang masih kosong.</td></tr>
<tr><td colspan="6" class="text-center text-muted">Keranjang masih kosong.</td></tr>
@endforelse
</tbody>
</table>
@@ -171,6 +173,10 @@
<label>Jumlah</label>
<input id="gudangpos_qty" type="number" min="1" class="form-control" wire:model.live="qty" wire:keydown.enter.prevent="addSelected">
</div>
<div class="form-group m-t-10 m-b-0">
<label>Keterangan</label>
<input type="text" class="form-control" wire:model.live="keterangan" placeholder="opsional">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Batal</button>