changed logic in invoice data tbale for capacitor issue
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Has been cancelled
Laravel Larastan / larastan (pull_request) Has been cancelled
Laravel Pint / pint (pull_request) Has been cancelled

This commit is contained in:
dhanabalan
2026-01-29 17:13:47 +05:30
parent 547ee4b78f
commit 9a9051b884
2 changed files with 313 additions and 143 deletions

View File

@@ -64,7 +64,7 @@
@endif
{{-- Modal for serial invoice--}}
@if ($hasSearched)
{{-- @if ($hasSearched)
<div class="overflow-x-auto overflow-y-visible" style="height: 385px;">
<table class="min-w-[1500px] text-sm text-center border border-gray-300">
<table class="table-fixed min-w-[1500px] text-sm text-center border border-gray-300">
@@ -111,14 +111,14 @@
</tbody>
</table>
</div>
@endif
@endif --}}
{{-- @if ($hasSearched)
@if ($hasSearched)
<div class="overflow-x-auto" style="height: 385px;">
<table class="min-w-full text-sm text-center border border-gray-300">
<thead class="bg-gray-100 font-bold sticky top-0 z-10">
<table class="table-fixed min-w-[1500px] text-sm text-center border border-gray-300">
<thead class="bg-gray-100 font-bold">
<tr>
<th class="border px-4 py-2">No</th>
<th class="border px-4 py-2">Material Code</th>
@@ -164,7 +164,8 @@
{{ $records->onEachSide(3)->links() }}
</div>
</div>
@endif --}}
@endif
{{-- Modal for Capacitor Input --}}
<div>
@@ -198,8 +199,18 @@
</div>
</div>
{{-- Add this script to focus on the input --}}
<script>
{{-- <script>
document.getElementById('capacitorInput').focus();
</script> --}}
<script>
document.addEventListener('livewire:initialized', () => {
@this.on('focus-capacitor-input', () => {
setTimeout(() => {
const el = document.getElementById('capacitorInput');
if (el) el.focus();
}, 100);
});
});
</script>
@endif
</div>