Compare commits
30 Commits
dhana-dev
...
0de49f14ce
| Author | SHA1 | Date | |
|---|---|---|---|
| 0de49f14ce | |||
| 0473ca33cf | |||
| 8a01033459 | |||
| 0555f9faff | |||
| 8cbbaa4845 | |||
| cb6b201648 | |||
| c3089a147c | |||
| 45f0e39f73 | |||
| fe1e1b9918 | |||
| e20915ca82 | |||
| 58e6cbfac0 | |||
| 1ace049687 | |||
| e5e85a8eea | |||
| 555802ab35 | |||
| 587b743f12 | |||
| 42555d4a81 | |||
| fd1e554076 | |||
| 022654f192 | |||
| 55f1088fda | |||
| f9233f44d8 | |||
| e0fec6b07c | |||
| 6bda9c1459 | |||
| 39bdd3df57 | |||
| 5bcf0703d9 | |||
| 80e522b7e6 | |||
| ee101f80ea | |||
| 37a99d03c1 | |||
| 5fdced003a | |||
| 0b0bb90efb | |||
| 32ce6da2c1 |
@@ -267,7 +267,9 @@ class ItemResource extends Resource
|
|||||||
->options(function (callable $get) {
|
->options(function (callable $get) {
|
||||||
$plantId = $get('Plant');
|
$plantId = $get('Plant');
|
||||||
|
|
||||||
return $plantId ? Item::where('plant_id', $plantId)->pluck('code', 'id') : [];
|
return $plantId
|
||||||
|
? Item::where('plant_id', $plantId)->pluck('code', 'id')
|
||||||
|
: [];
|
||||||
})
|
})
|
||||||
->searchable()
|
->searchable()
|
||||||
->reactive(),
|
->reactive(),
|
||||||
|
|||||||
@@ -109,7 +109,6 @@ class ProcessOrderResource extends Resource
|
|||||||
->afterStateHydrated(function ($component, $state, Get $get, Set $set) {
|
->afterStateHydrated(function ($component, $state, Get $get, Set $set) {
|
||||||
$itemId = $get('item_id');
|
$itemId = $get('item_id');
|
||||||
if ($get('id')) {
|
if ($get('id')) {
|
||||||
|
|
||||||
$item = \App\Models\Item::where('id', $itemId)->first()?->description;
|
$item = \App\Models\Item::where('id', $itemId)->first()?->description;
|
||||||
if ($item) {
|
if ($item) {
|
||||||
$set('item_description', $item);
|
$set('item_description', $item);
|
||||||
@@ -123,7 +122,6 @@ class ProcessOrderResource extends Resource
|
|||||||
->hidden()
|
->hidden()
|
||||||
->readOnly(),
|
->readOnly(),
|
||||||
// ->readOnly(true),
|
// ->readOnly(true),
|
||||||
|
|
||||||
Forms\Components\TextInput::make('process_order')
|
Forms\Components\TextInput::make('process_order')
|
||||||
->label('Process Order')
|
->label('Process Order')
|
||||||
->reactive()
|
->reactive()
|
||||||
|
|||||||
@@ -620,7 +620,9 @@ class StickerMasterResource extends Resource
|
|||||||
->options(function (callable $get) {
|
->options(function (callable $get) {
|
||||||
$plantId = $get('Plant');
|
$plantId = $get('Plant');
|
||||||
|
|
||||||
return $plantId ? Item::where('plant_id', $plantId)->pluck('code', 'id') : [];
|
return $plantId
|
||||||
|
? Item::where('plant_id', $plantId)->pluck('code', 'id')
|
||||||
|
: Item::pluck('code', 'id');
|
||||||
})
|
})
|
||||||
->searchable()
|
->searchable()
|
||||||
->reactive(),
|
->reactive(),
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ use SimpleSoftwareIO\QrCode\Facades\QrCode;
|
|||||||
use Filament\Facades\Filament;
|
use Filament\Facades\Filament;
|
||||||
use App\Models\StickerPrinting;
|
use App\Models\StickerPrinting;
|
||||||
use Filament\Notifications\Notification;
|
use Filament\Notifications\Notification;
|
||||||
use Str;
|
|
||||||
|
|
||||||
|
|
||||||
class CreateStickerPrinting extends CreateRecord
|
class CreateStickerPrinting extends CreateRecord
|
||||||
@@ -78,65 +77,7 @@ class CreateStickerPrinting extends CreateRecord
|
|||||||
|
|
||||||
$sNumber = $this->form->getState()['serial_number'] ?? null;
|
$sNumber = $this->form->getState()['serial_number'] ?? null;
|
||||||
|
|
||||||
$pattern1 = '/^(?<item_code>[^|]+)\|(?<serial_number>[^|]+)\|?$/i';
|
if(empty($this->plantId) || empty($ref) || empty($this->serial_number)) {
|
||||||
|
|
||||||
$pattern2 = '/^(?<item_code>[^|]+)\|(?<serial_number>[^|]+)\|(?<batch_number>.+)$/i';
|
|
||||||
|
|
||||||
$pattern3 = '/^(?<serial_number>[^|]+)$/i';
|
|
||||||
|
|
||||||
|
|
||||||
if (preg_match($pattern1, $sNumber, $matches) || preg_match($pattern2, $sNumber, $matches) || preg_match($pattern3, $sNumber, $matches)) {
|
|
||||||
|
|
||||||
$serial = $matches['serial_number'];
|
|
||||||
|
|
||||||
if (Str::length($serial) < 9) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Invalid Serial Number')
|
|
||||||
->body("Serial number should conatin minimum 9 digits '$serial'.")
|
|
||||||
->warning()
|
|
||||||
->send();
|
|
||||||
$this->form->fill([
|
|
||||||
'plant_id' => $plant,
|
|
||||||
'reference_number' => $ref,
|
|
||||||
'serial_number' => '',
|
|
||||||
]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else if(!ctype_alnum($serial)) {
|
|
||||||
Notification::make()
|
|
||||||
->title('Invalid Serial Number')
|
|
||||||
->body("Serial number should be alphanumeric '$serial'.")
|
|
||||||
->warning()
|
|
||||||
->send();
|
|
||||||
$this->form->fill([
|
|
||||||
'plant_id' => $plant,
|
|
||||||
'reference_number' => $ref,
|
|
||||||
'serial_number' => '',
|
|
||||||
]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$extractedSerialNumber = $matches['serial_number'];
|
|
||||||
$sNumber = $extractedSerialNumber;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Notification::make()
|
|
||||||
->title('Invalid Format')
|
|
||||||
->body("Serial number must be in the format 'itemcode|serialnumber' or 'itemcode|serialnumber|batchnumber'. or just 'serialnumber'.")
|
|
||||||
->warning()
|
|
||||||
->send();
|
|
||||||
|
|
||||||
// Reset only serial number field
|
|
||||||
$this->form->fill([
|
|
||||||
'plant_id' => $plant,
|
|
||||||
'reference_number' => $ref,
|
|
||||||
'serial_number' => '',
|
|
||||||
]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($plant == null || trim($plant) == '' || $ref == null || trim($ref) == '' || $sNumber == null || trim($sNumber) == '')
|
|
||||||
{
|
|
||||||
Notification::make()
|
Notification::make()
|
||||||
->title('Unknown: Incomplete Data!')
|
->title('Unknown: Incomplete Data!')
|
||||||
->body("Please ensure Plant, Reference Number, and Serial Number are provided.")
|
->body("Please ensure Plant, Reference Number, and Serial Number are provided.")
|
||||||
@@ -169,16 +110,16 @@ class CreateStickerPrinting extends CreateRecord
|
|||||||
}
|
}
|
||||||
|
|
||||||
StickerPrinting::create([
|
StickerPrinting::create([
|
||||||
'plant_id' => $plant,
|
'plant_id' => $this->plantId,
|
||||||
'reference_number' => $ref,
|
'reference_number' => $ref,
|
||||||
'serial_number' => $sNumber,
|
'serial_number' => $this->serial_number,
|
||||||
'created_by' => Filament::auth()->user()->name,
|
'created_by' => Filament::auth()->user()->name,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->dispatch('addStickerToList', $plant, $ref, $sNumber);
|
$this->dispatch('addStickerToList', $this->plantId, $ref, $this->serial_number);
|
||||||
|
|
||||||
$this->form->fill([
|
$this->form->fill([
|
||||||
'plant_id' => $plant,
|
'plant_id' => $this->plantId,
|
||||||
'reference_number' => $ref,
|
'reference_number' => $ref,
|
||||||
'serial_number' => '',
|
'serial_number' => '',
|
||||||
]);
|
]);
|
||||||
@@ -234,7 +175,6 @@ class CreateStickerPrinting extends CreateRecord
|
|||||||
// Send data to Pdf view
|
// Send data to Pdf view
|
||||||
$pdf = PDF::loadView('pdf.qrcode', [
|
$pdf = PDF::loadView('pdf.qrcode', [
|
||||||
'qrCode' => $qrCode,
|
'qrCode' => $qrCode,
|
||||||
'referenceNumber' => $refNumber,
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return response()->streamDownload(function () use ($pdf) {
|
return response()->streamDownload(function () use ($pdf) {
|
||||||
|
|||||||
@@ -1,55 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Livewire;
|
|
||||||
|
|
||||||
use Livewire\Component;
|
|
||||||
use App\Models\StickerPrinting;
|
|
||||||
|
|
||||||
class StickerPrintData extends Component
|
|
||||||
{
|
|
||||||
public $plantId;
|
|
||||||
|
|
||||||
public $refNumber;
|
|
||||||
|
|
||||||
public $serialNumber;
|
|
||||||
|
|
||||||
public bool $materialInvoice = false;
|
|
||||||
|
|
||||||
public $records = [];
|
|
||||||
|
|
||||||
protected $listeners = [
|
|
||||||
'refreshEmptySticker' => 'loadStickerData',
|
|
||||||
'addStickerToList' => 'loadSticker'
|
|
||||||
];
|
|
||||||
|
|
||||||
public function loadStickerData($plantId, $refNumber)
|
|
||||||
{
|
|
||||||
$this->plantId = $plantId;
|
|
||||||
$this->refNumber = $refNumber;
|
|
||||||
$this->materialInvoice = true;
|
|
||||||
|
|
||||||
$this->records = StickerPrinting::where('plant_id', $plantId)
|
|
||||||
->where('reference_number', $refNumber)
|
|
||||||
->orderBy('created_at', 'asc')
|
|
||||||
->get(['serial_number', 'created_by']);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function loadSticker($plantId, $refNumber, $serialNumber)
|
|
||||||
{
|
|
||||||
|
|
||||||
$this->plantId = $plantId;
|
|
||||||
$this->refNumber = $refNumber;
|
|
||||||
$this->materialInvoice = true;
|
|
||||||
|
|
||||||
$this->records = StickerPrinting::where('plant_id', $plantId)
|
|
||||||
->where('reference_number', $refNumber)
|
|
||||||
->orderBy('created_at', 'asc')
|
|
||||||
->get(['serial_number', 'created_by']);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function render()
|
|
||||||
{
|
|
||||||
return view('livewire.sticker-print-data');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,13 +6,12 @@ use Illuminate\Auth\Access\Response;
|
|||||||
use App\Models\StickerPrinting;
|
use App\Models\StickerPrinting;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
|
|
||||||
|
|
||||||
class StickerPrintingPolicy
|
class StickerPrintingPolicy
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Determine whether the user can view any models.
|
* Determine whether the user can view any models.
|
||||||
*/
|
*/
|
||||||
public function viewAny(User $user): bool
|
public function viewAny(App\Models\User $user): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('view-any StickerPrinting');
|
return $user->checkPermissionTo('view-any StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -20,7 +19,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can view the model.
|
* Determine whether the user can view the model.
|
||||||
*/
|
*/
|
||||||
public function view(User $user, StickerPrinting $stickerprinting): bool
|
public function view(App\Models\User $user, StickerPrinting $stickerprinting): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('view StickerPrinting');
|
return $user->checkPermissionTo('view StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -28,7 +27,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can create models.
|
* Determine whether the user can create models.
|
||||||
*/
|
*/
|
||||||
public function create(User $user): bool
|
public function create(App\Models\User $user): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('create StickerPrinting');
|
return $user->checkPermissionTo('create StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -36,7 +35,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can update the model.
|
* Determine whether the user can update the model.
|
||||||
*/
|
*/
|
||||||
public function update(User $user, StickerPrinting $stickerprinting): bool
|
public function update(App\Models\User $user, StickerPrinting $stickerprinting): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('update StickerPrinting');
|
return $user->checkPermissionTo('update StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -44,7 +43,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can delete the model.
|
* Determine whether the user can delete the model.
|
||||||
*/
|
*/
|
||||||
public function delete(User $user, StickerPrinting $stickerprinting): bool
|
public function delete(App\Models\User $user, StickerPrinting $stickerprinting): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('delete StickerPrinting');
|
return $user->checkPermissionTo('delete StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -52,7 +51,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can delete any models.
|
* Determine whether the user can delete any models.
|
||||||
*/
|
*/
|
||||||
public function deleteAny(User $user): bool
|
public function deleteAny(App\Models\User $user): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('delete-any StickerPrinting');
|
return $user->checkPermissionTo('delete-any StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -60,7 +59,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can restore the model.
|
* Determine whether the user can restore the model.
|
||||||
*/
|
*/
|
||||||
public function restore(User $user, StickerPrinting $stickerprinting): bool
|
public function restore(App\Models\User $user, StickerPrinting $stickerprinting): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('restore StickerPrinting');
|
return $user->checkPermissionTo('restore StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -68,7 +67,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can restore any models.
|
* Determine whether the user can restore any models.
|
||||||
*/
|
*/
|
||||||
public function restoreAny(User $user): bool
|
public function restoreAny(App\Models\User $user): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('restore-any StickerPrinting');
|
return $user->checkPermissionTo('restore-any StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -76,7 +75,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can replicate the model.
|
* Determine whether the user can replicate the model.
|
||||||
*/
|
*/
|
||||||
public function replicate(User $user, StickerPrinting $stickerprinting): bool
|
public function replicate(App\Models\User $user, StickerPrinting $stickerprinting): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('replicate StickerPrinting');
|
return $user->checkPermissionTo('replicate StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -84,7 +83,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can reorder the models.
|
* Determine whether the user can reorder the models.
|
||||||
*/
|
*/
|
||||||
public function reorder(User $user): bool
|
public function reorder(App\Models\User $user): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('reorder StickerPrinting');
|
return $user->checkPermissionTo('reorder StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -92,7 +91,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can permanently delete the model.
|
* Determine whether the user can permanently delete the model.
|
||||||
*/
|
*/
|
||||||
public function forceDelete(User $user, StickerPrinting $stickerprinting): bool
|
public function forceDelete(App\Models\User $user, StickerPrinting $stickerprinting): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('force-delete StickerPrinting');
|
return $user->checkPermissionTo('force-delete StickerPrinting');
|
||||||
}
|
}
|
||||||
@@ -100,7 +99,7 @@ class StickerPrintingPolicy
|
|||||||
/**
|
/**
|
||||||
* Determine whether the user can permanently delete any models.
|
* Determine whether the user can permanently delete any models.
|
||||||
*/
|
*/
|
||||||
public function forceDeleteAny(User $user): bool
|
public function forceDeleteAny(App\Models\User $user): bool
|
||||||
{
|
{
|
||||||
return $user->checkPermissionTo('force-delete-any StickerPrinting');
|
return $user->checkPermissionTo('force-delete-any StickerPrinting');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -213,7 +213,7 @@ return [
|
|||||||
|
|
||||||
'user_model' => \App\Models\User::class,
|
'user_model' => \App\Models\User::class,
|
||||||
|
|
||||||
// 'user_model_class' => \App\Models\User::class,
|
'user_model_class' => \App\Models\User::class,
|
||||||
|
|
||||||
'policies_namespace' => 'App\Policies',
|
'policies_namespace' => 'App\Policies',
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -169,7 +169,6 @@ class PermissionSeeder extends Seeder
|
|||||||
Permission::updateOrCreate(['name' => 'view import process order']);
|
Permission::updateOrCreate(['name' => 'view import process order']);
|
||||||
Permission::updateOrCreate(['name' => 'view export process order']);
|
Permission::updateOrCreate(['name' => 'view export process order']);
|
||||||
|
|
||||||
Permission::updateOrCreate(['name' => 'view import sticker printing']);
|
|
||||||
Permission::updateOrCreate(['name' => 'view export sticker printing']);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
<x-filament::page>
|
|
||||||
<form wire:submit.prevent="create" class="space-y-6">
|
|
||||||
{{-- Form Section --}}
|
|
||||||
<div class="filament-form space-y-6">
|
|
||||||
{{ $this->form }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{-- <livewire:notification-sound /> --}}
|
|
||||||
|
|
||||||
{{-- Livewire Component (Invoice Table) --}}
|
|
||||||
<div class="bg-white shadow rounded-xl p-4">
|
|
||||||
<livewire:sticker-print-data :ref-data="$ref_number" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{-- Actions --}}
|
|
||||||
<div class="filament-actions mt-6">
|
|
||||||
<x-filament::actions>
|
|
||||||
@foreach ($this->getFormActions() as $action)
|
|
||||||
{{ $action }}
|
|
||||||
@endforeach
|
|
||||||
</x-filament::actions>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</x-filament::page>
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
{{-- <div class="flex flex-col items-start space-y-2">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
wire:click="printSticker"
|
|
||||||
class="mt-15 px-2 py-1 border border-primary-500 text-primary-600 rounded hover:bg-primary-50 hover:border-primary-700 transition text-sm"
|
|
||||||
>
|
|
||||||
Print
|
|
||||||
</button>
|
|
||||||
</div> --}}
|
|
||||||
|
|
||||||
|
|
||||||
<div class="flex flex-col items-start space-y-2">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
wire:click="printSticker"
|
|
||||||
class="px-2 py-1 border border-primary-500 text-primary-600 bg-white rounded hover:bg-primary-50 hover:border-primary-700 transition text-sm"
|
|
||||||
style="margin-top: 10mm;"
|
|
||||||
>
|
|
||||||
Print
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
|
|
||||||
{{-- <div class="overflow-x-auto overflow-y-visible" style="height: 385px;">
|
|
||||||
<table class="table-auto w-full border-collapse border">
|
|
||||||
<thead class="bg-gray-100">
|
|
||||||
<tr>
|
|
||||||
<th class="border p-2">No</th>
|
|
||||||
<th class="border p-2">Reference No</th>
|
|
||||||
<th class="border p-2">Serial Number</th>
|
|
||||||
<th class="border p-2">Created By</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
@forelse($records as $index => $record)
|
|
||||||
<tr>
|
|
||||||
<td class="border p-2 text-center">{{ $index + 1 }}</td>
|
|
||||||
<td class="border p-2 text-center">{{ $refNumber }}</td>
|
|
||||||
<td class="border p-2 text-center">{{ $record['serial_number'] }}</td>
|
|
||||||
<td class="border p-2 text-center">{{ $record->created_by }}</td>
|
|
||||||
</tr>
|
|
||||||
@empty
|
|
||||||
<tr>
|
|
||||||
<td class="border p-2 text-center" colspan="4">No serial numbers found.</td>
|
|
||||||
</tr>
|
|
||||||
@endforelse
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div> --}}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3 class="text-lg font-semibold mb-2">Sticker Printing Table</h3>
|
|
||||||
|
|
||||||
<div
|
|
||||||
wire:loading.remove
|
|
||||||
@if(!$materialInvoice) style="display:none" @endif
|
|
||||||
class="overflow-x-auto overflow-y-visible"
|
|
||||||
style="height: 385px;"
|
|
||||||
>
|
|
||||||
<table class="table-auto w-full border-collapse border">
|
|
||||||
{{-- <thead class="bg-gray-100"> --}}
|
|
||||||
<thead class="bg-gray-100 text-xs">
|
|
||||||
<tr>
|
|
||||||
<th class="border p-2">No</th>
|
|
||||||
<th class="border p-2">Reference No</th>
|
|
||||||
<th class="border p-2">Serial Number</th>
|
|
||||||
<th class="border p-2">Created By</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
{{-- <tbody> --}}
|
|
||||||
<tbody class="text-xs">
|
|
||||||
@forelse($records as $index => $record)
|
|
||||||
<tr>
|
|
||||||
<td class="border p-2 text-center">{{ $index + 1 }}</td>
|
|
||||||
<td class="border p-2 text-center">{{ $refNumber }}</td>
|
|
||||||
<td class="border p-2 text-center">{{ $record['serial_number'] }}</td>
|
|
||||||
<td class="border p-2 text-center">{{ $record->created_by }}</td>
|
|
||||||
</tr>
|
|
||||||
@empty
|
|
||||||
<tr>
|
|
||||||
<td class="border p-2 text-center" colspan="4">No serial numbers found.</td>
|
|
||||||
</tr>
|
|
||||||
@endforelse
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
window.addEventListener('focus-serial-number', () => {
|
|
||||||
setTimeout(() => {
|
|
||||||
const container = document.getElementById('serial_number_input');
|
|
||||||
const input = container?.querySelector('input'); // gets the actual input inside
|
|
||||||
|
|
||||||
if (input) {
|
|
||||||
input.focus();
|
|
||||||
input.select();
|
|
||||||
}
|
|
||||||
}, 50);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
{{-- <!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<style>
|
|
||||||
body { text-align: center; font-family: Arial, sans-serif; }
|
|
||||||
.qr-container { margin-top: 30px; }
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<div class="qr-container">
|
|
||||||
<img src="data:image/png;base64,{{ $qrCode }}" width="250" height="250">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html> --}}
|
|
||||||
|
|
||||||
|
|
||||||
{{-- <!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<style>
|
|
||||||
@page {
|
|
||||||
margin: 0;
|
|
||||||
size: 100mm 100mm;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 100mm;
|
|
||||||
height: 100mm;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
width: 100mm;
|
|
||||||
height: 100mm;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<img src="data:image/png;base64,{{ $qrCode }}" />
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html> --}}
|
|
||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<style>
|
|
||||||
@page {
|
|
||||||
margin: 0;
|
|
||||||
size: 100mm 100mm;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 100mm;
|
|
||||||
height: 100mm;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 12px;
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
width: 90mm; /* QR CODE REDUCED TO FIT TEXT */
|
|
||||||
height: 90mm;
|
|
||||||
}
|
|
||||||
.ref-text {
|
|
||||||
margin-top: 3mm;
|
|
||||||
font-size: 16px; /* Increased Font Size */
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="ref-text">
|
|
||||||
{{ $referenceNumber }}
|
|
||||||
</div>
|
|
||||||
<img src="data:image/png;base64,{{ $qrCode }}" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user