Files
kulakpos_web/Modules/Business/resources/views/stocks/stock-modal.blade.php
eko54r 05fd3230b8
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped
update marketing
2026-05-14 11:55:22 +07:00

50 lines
2.6 KiB
PHP

<div class="modal fade p-0" id="stock-modal-view">
<div class="modal-dialog modal-dialog-centered modal-xl">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5">{{ __('View Stock') }}</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body order-form-section">
<div class="costing-list">
<div class="table-responsive mt-3">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>{{ __('Batch') }}</th>
<th>{{ __('Stock') }}</th>
@usercan('stocks.price')
<th>{{ __('Purchase Price (Inc. tax)') }}</th>
<th>{{ __('Purchase Price (Exc. tax)') }}</th>
@endusercan
<th>{{ __('MRP') }}</th>
<th>{{ __('WholeSale Price') }}</th>
<th>{{ __('Dealer Price') }}</th>
@if (is_module_enabled($modules, 'show_expire_date'))
<th>{{ __('Expire Date') }}</th>
@endif
@if (moduleCheck('WarehouseAddon') && is_module_enabled($modules, 'show_warehouse'))
<th>{{ __('Warehouse') }}</th>
@endif
@if (is_module_enabled($modules, 'show_weight'))
<th id="weight-header" class="d-none">{{ __('Weight') }}</th>
@endif
@if (is_module_enabled($modules, 'show_rack'))
<th>{{ __('Rack') }}</th>
@endif
@if (is_module_enabled($modules, 'show_shelf'))
<th>{{ __('Shelf') }}</th>
@endif
</tr>
</thead>
<tbody id="stocks-table-data">
{{-- Filled via jQuery --}}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>