migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<div class="modal fade" id="view-party-loss-profit-modal" tabindex="-1" aria-labelledby="viewPaymentModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">{{ __('View Details') }}</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<table class="table table-striped">
<thead>
<tr>
<th>{{ __('SL.') }}</th>
<th class="text-start">{{ __('Product Name') }}</th>
<th>{{ __('Quantity') }}</th>
<th>{{ __('Purchase Price') }}</th>
<th>{{ __('Sale Price') }}</th>
<th>{{ __('Profit') }}</th>
<th>{{ __('Loss') }}</th>
</tr>
</thead>
<tbody id="view-party-loss-profit-data">
<tr>
<td colspan="7" class="text-center text-muted">{{ __('Loading...') }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>