fix opname default value, show different opname and hide system stock opname

This commit is contained in:
2025-07-03 13:55:49 +07:00
parent 9b3889ef1f
commit 0ef03fe7cb
8 changed files with 179 additions and 147 deletions

View File

@@ -69,6 +69,7 @@
<th>Dealer</th>
<th>Pengguna</th>
<th>Status</th>
<th>Informasi Stock</th>
<th>Aksi</th>
</tr>
</thead>
@@ -114,6 +115,44 @@
letter-spacing: normal;
display: block;
}
/* Stock info column styling */
.stock-info-cell {
min-width: 120px;
max-width: 150px;
}
.stock-info-cell .text-success {
color: #28a745 !important;
font-weight: 600;
}
.stock-info-cell .text-danger {
color: #dc3545 !important;
font-weight: 600;
}
.stock-info-cell .text-muted {
color: #6c757d !important;
font-size: 11px;
}
.stock-info-cell i {
margin-right: 4px;
}
/* Responsive adjustments for stock info column */
@media (max-width: 768px) {
.stock-info-cell {
min-width: 100px;
max-width: 120px;
font-size: 12px;
}
.stock-info-cell .text-muted {
font-size: 10px;
}
}
</style>
@endsection