partial update create modal list dealers

This commit is contained in:
2025-06-05 12:05:20 +07:00
parent ff498cd98f
commit ce0a4718e0
12 changed files with 303 additions and 31 deletions

View File

@@ -39,6 +39,34 @@
</div>
</div>
</div>
<div class="modal fade" id="dealerStockModal" tabindex="-1" role="dialog" aria-labelledby="dealerStockModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Dealer Stock for <span id="product-name-title"></span></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span>&times;</span>
</button>
</div>
<div class="modal-body">
<table id="dealer-stock-table" class="table table-bordered">
<thead>
<tr>
<th>Dealer</th>
<th>System Stock</th>
<th>Physical Stock</th>
<th>Difference</th>
<th>Opname Date</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@section('javascripts')