Compare commits
26 Commits
renovate/f
...
dhana-dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d7d27a9dc0 | ||
|
|
e525e3c526 | ||
|
|
caf2f3c1e7 | ||
|
|
2ceb76f008 | ||
|
|
988d109acc | ||
|
|
bc8163a535 | ||
|
|
6834e37429 | ||
|
|
a9012ffc05 | ||
|
|
c67bbc02b6 | ||
|
|
d71837f314 | ||
|
|
36a50815f9 | ||
|
|
11678dd846 | ||
|
|
035e6cd560 | ||
|
|
91deb448ef | ||
|
|
c05b536253 | ||
|
|
10071413a1 | ||
|
|
624e18e18d | ||
|
|
11bbad0cf8 | ||
|
|
6ac3c664dd | ||
|
|
10f2909b0e | ||
|
|
e8ed47a110 | ||
|
|
055d7707f4 | ||
|
|
55cf2f6924 | ||
|
|
d389136223 | ||
|
|
173638cd19 | ||
|
|
c8c38a05f4 |
54
app/Filament/Exports/StickerPrintingExporter.php
Normal file
54
app/Filament/Exports/StickerPrintingExporter.php
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Exports;
|
||||||
|
|
||||||
|
use App\Models\StickerPrinting;
|
||||||
|
use Filament\Actions\Exports\ExportColumn;
|
||||||
|
use Filament\Actions\Exports\Exporter;
|
||||||
|
use Filament\Actions\Exports\Models\Export;
|
||||||
|
|
||||||
|
class StickerPrintingExporter extends Exporter
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerPrinting::class;
|
||||||
|
|
||||||
|
public static function getColumns(): array
|
||||||
|
{
|
||||||
|
static $rowNumber = 0;
|
||||||
|
return [
|
||||||
|
ExportColumn::make('no')
|
||||||
|
->label('NO')
|
||||||
|
->state(function ($record) use (&$rowNumber) {
|
||||||
|
// Increment and return the row number
|
||||||
|
return ++$rowNumber;
|
||||||
|
}),
|
||||||
|
ExportColumn::make('plant.code')
|
||||||
|
->label('PLANT CODE'),
|
||||||
|
ExportColumn::make('reference_number')
|
||||||
|
->label('REFERENCE NUMBER'),
|
||||||
|
ExportColumn::make('serial_number')
|
||||||
|
->label('SERIAL NUMBER'),
|
||||||
|
ExportColumn::make('created_at')
|
||||||
|
->label('CREATED AT'),
|
||||||
|
ExportColumn::make('updated_at')
|
||||||
|
->label('UPDATED AT'),
|
||||||
|
ExportColumn::make('created_by')
|
||||||
|
->label('CREATED BY'),
|
||||||
|
ExportColumn::make('updated_by')
|
||||||
|
->label('UPDATED BY'),
|
||||||
|
ExportColumn::make('deleted_at')
|
||||||
|
->label('DELETED AT')
|
||||||
|
->enabledByDefault(false),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getCompletedNotificationBody(Export $export): string
|
||||||
|
{
|
||||||
|
$body = 'Your sticker printing export has completed and ' . number_format($export->successful_rows) . ' ' . str('row')->plural($export->successful_rows) . ' exported.';
|
||||||
|
|
||||||
|
if ($failedRowsCount = $export->getFailedRowsCount()) {
|
||||||
|
$body .= ' ' . number_format($failedRowsCount) . ' ' . str('row')->plural($failedRowsCount) . ' failed to export.';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $body;
|
||||||
|
}
|
||||||
|
}
|
||||||
106
app/Filament/Imports/StickerPrintingImporter.php
Normal file
106
app/Filament/Imports/StickerPrintingImporter.php
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Imports;
|
||||||
|
|
||||||
|
use App\Models\StickerPrinting;
|
||||||
|
use Filament\Actions\Imports\ImportColumn;
|
||||||
|
use Filament\Actions\Imports\Importer;
|
||||||
|
use Filament\Actions\Imports\Models\Import;
|
||||||
|
use Filament\Actions\Imports\Exceptions\RowImportFailedException;
|
||||||
|
use App\Models\Plant;
|
||||||
|
use App\Models\User;
|
||||||
|
use Str;
|
||||||
|
use Filament\Facades\Filament;
|
||||||
|
|
||||||
|
class StickerPrintingImporter extends Importer
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerPrinting::class;
|
||||||
|
|
||||||
|
public static function getColumns(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
ImportColumn::make('plant')
|
||||||
|
->requiredMapping()
|
||||||
|
->exampleHeader('PLANT CODE')
|
||||||
|
->example('1000')
|
||||||
|
->label('PLANT CODE')
|
||||||
|
->relationship(resolveUsing: 'code')
|
||||||
|
->rules(['required']),
|
||||||
|
ImportColumn::make('reference_number')
|
||||||
|
->exampleHeader('REFERENCE NUMBER')
|
||||||
|
->example('REF123456')
|
||||||
|
->label('REFERENCE NUMBER'),
|
||||||
|
ImportColumn::make('serial_number')
|
||||||
|
->exampleHeader('SERIAL NUMBER')
|
||||||
|
->example('135245325212')
|
||||||
|
->label('SERIAL NUMBER'),
|
||||||
|
// ImportColumn::make('created_by')
|
||||||
|
// ->exampleHeader('CREATED BY')
|
||||||
|
// ->example('RAW01234')
|
||||||
|
// ->label('CREATED BY'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function resolveRecord(): ?StickerPrinting
|
||||||
|
{
|
||||||
|
// return StickerPrinting::firstOrNew([
|
||||||
|
// // Update existing records, matching them by `$this->data['column_name']`
|
||||||
|
// 'email' => $this->data['email'],
|
||||||
|
// ]);
|
||||||
|
|
||||||
|
$warnMsg = [];
|
||||||
|
$plant = Plant::where('code', $this->data['plant'])->first();
|
||||||
|
|
||||||
|
if (Str::length($this->data['serial_number']) < 9 || !ctype_alnum($this->data['serial_number'])) {
|
||||||
|
$warnMsg[] = "Invalid serial number found";
|
||||||
|
}
|
||||||
|
|
||||||
|
$existing = StickerPrinting::where('plant_id', $plant->id)
|
||||||
|
->where('serial_number', $this->data['serial_number'])
|
||||||
|
->first();
|
||||||
|
|
||||||
|
if ($existing) {
|
||||||
|
$warnMsg[] = "Serial number already exists for this plant!";//throw new RowImportFailedException("Serial number already exists for this plant!");
|
||||||
|
}
|
||||||
|
|
||||||
|
$serial = $this->data['serial_number'];
|
||||||
|
|
||||||
|
// --- Check duplicate in DB ---
|
||||||
|
$existsInDB = StickerPrinting::where('plant_id', $plant->id)
|
||||||
|
->where('serial_number', $serial)
|
||||||
|
->first();
|
||||||
|
|
||||||
|
if ($existsInDB) {
|
||||||
|
//throw new RowImportFailedException("Serial number '{$serial}' already exists in DB for this plant!");
|
||||||
|
$warnMsg[] = "Serial number '{$serial}' already exists in DB for this plant!";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($warnMsg)) {
|
||||||
|
throw new RowImportFailedException(implode(', ', $warnMsg));
|
||||||
|
}
|
||||||
|
|
||||||
|
StickerPrinting::Create([
|
||||||
|
'plant_id' => $plant->id,
|
||||||
|
'reference_number' => $this->data['reference_number'],
|
||||||
|
'serial_number' => $this->data['serial_number'],
|
||||||
|
'created_at' => now(),
|
||||||
|
'updated_at' =>now(),
|
||||||
|
'created_by' => Filament::auth()->user()?->name,
|
||||||
|
]);
|
||||||
|
|
||||||
|
return null;
|
||||||
|
|
||||||
|
//return new StickerPrinting();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getCompletedNotificationBody(Import $import): string
|
||||||
|
{
|
||||||
|
$body = 'Your sticker printing import has completed and ' . number_format($import->successful_rows) . ' ' . str('row')->plural($import->successful_rows) . ' imported.';
|
||||||
|
|
||||||
|
if ($failedRowsCount = $import->getFailedRowsCount()) {
|
||||||
|
$body .= ' ' . number_format($failedRowsCount) . ' ' . str('row')->plural($failedRowsCount) . ' failed to import.';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $body;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -50,7 +50,7 @@ class AlertMailRuleResource extends Resource
|
|||||||
'InvoiceValidation' => 'InvoiceValidation',
|
'InvoiceValidation' => 'InvoiceValidation',
|
||||||
'InvoiceDataReport' => 'InvoiceDataReport',
|
'InvoiceDataReport' => 'InvoiceDataReport',
|
||||||
'ProductionQuantities' => 'ProductionQuantities',
|
'ProductionQuantities' => 'ProductionQuantities',
|
||||||
//'Calibration' => 'Calibration',
|
'QualityValidation' => 'QualityValidation',
|
||||||
]),
|
]),
|
||||||
Forms\Components\Select::make('rule_name')
|
Forms\Components\Select::make('rule_name')
|
||||||
->label('Rule Name')
|
->label('Rule Name')
|
||||||
@@ -60,7 +60,7 @@ class AlertMailRuleResource extends Resource
|
|||||||
'MaterialInvoiceMail' => 'Material Invoice Mail',
|
'MaterialInvoiceMail' => 'Material Invoice Mail',
|
||||||
'ProductionMail' => 'Production Mail',
|
'ProductionMail' => 'Production Mail',
|
||||||
'InvoiceDataMail' => 'Invoice Data Mail',
|
'InvoiceDataMail' => 'Invoice Data Mail',
|
||||||
//'CalibrationMail' => 'Calibration Mail',
|
'QualityMail' => 'Quality Mail',
|
||||||
])
|
])
|
||||||
->required(),
|
->required(),
|
||||||
Forms\Components\TextInput::make('email')
|
Forms\Components\TextInput::make('email')
|
||||||
|
|||||||
@@ -3265,6 +3265,8 @@ class CreateInvoiceValidation extends CreateRecord
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$invalidPackage = false;
|
||||||
|
|
||||||
$hasMotorQr = $record->stickerMasterRelation->tube_sticker_motor ?? null;
|
$hasMotorQr = $record->stickerMasterRelation->tube_sticker_motor ?? null;
|
||||||
$hasPumpQr = $record->stickerMasterRelation->tube_sticker_pump ?? null;
|
$hasPumpQr = $record->stickerMasterRelation->tube_sticker_pump ?? null;
|
||||||
$hasPumpSetQr = $record->stickerMasterRelation->tube_sticker_pumpset ?? null;
|
$hasPumpSetQr = $record->stickerMasterRelation->tube_sticker_pumpset ?? null;
|
||||||
@@ -3274,17 +3276,18 @@ class CreateInvoiceValidation extends CreateRecord
|
|||||||
$hasMotorQr = $record->stickerMasterRelation->pack_slip_motor ?? null;
|
$hasMotorQr = $record->stickerMasterRelation->pack_slip_motor ?? null;
|
||||||
$hasPumpQr = $record->stickerMasterRelation->pack_slip_pump ?? null;
|
$hasPumpQr = $record->stickerMasterRelation->pack_slip_pump ?? null;
|
||||||
$hasPumpSetQr = $record->stickerMasterRelation->pack_slip_pumpset ?? null;
|
$hasPumpSetQr = $record->stickerMasterRelation->pack_slip_pumpset ?? null;
|
||||||
} elseif (! $hasPumpSetQr && ! $hasPumpQr) {
|
} else {
|
||||||
$hasPumpQr = $record->stickerMasterRelation->pack_slip_pump ?? null;
|
if (! $hasPumpSetQr && ! $hasPumpQr) {
|
||||||
}
|
$hasPumpQr = $record->stickerMasterRelation->pack_slip_pump ?? null;
|
||||||
|
}
|
||||||
|
|
||||||
$invalidPackage = false;
|
$hasTubeMotorQr = $record->stickerMasterRelation->tube_sticker_motor ?? null;
|
||||||
$hasTubeMotorQr = $record->stickerMasterRelation->tube_sticker_motor ?? null;
|
$hasPackMotorQr = $record->stickerMasterRelation->pack_slip_motor ?? null;
|
||||||
$hasPackMotorQr = $record->stickerMasterRelation->pack_slip_motor ?? null;
|
$hasTubePumpSetQr = $record->stickerMasterRelation->tube_sticker_pumpset ?? null;
|
||||||
$hasTubePumpSetQr = $record->stickerMasterRelation->tube_sticker_pumpset ?? null;
|
$hasPackPumpSetQr = $record->stickerMasterRelation->pack_slip_pumpset ?? null;
|
||||||
$hasPackPumpSetQr = $record->stickerMasterRelation->pack_slip_pumpset ?? null;
|
if ($hasTubeMotorQr != $hasPackMotorQr || $hasTubePumpSetQr != $hasPackPumpSetQr) {
|
||||||
if ($hasTubeMotorQr != $hasPackMotorQr || $hasTubePumpSetQr != $hasPackPumpSetQr) {
|
$invalidPackage = true;
|
||||||
$invalidPackage = true;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$hadMotorQr = $record->motor_scanned_status ?? null;
|
$hadMotorQr = $record->motor_scanned_status ?? null;
|
||||||
|
|||||||
@@ -237,9 +237,6 @@ class ItemResource extends Resource
|
|||||||
->sortable()
|
->sortable()
|
||||||
->toggleable(isToggledHiddenByDefault: true),
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
])
|
])
|
||||||
// ->filters([
|
|
||||||
// Tables\Filters\TrashedFilter::make(),
|
|
||||||
// ])
|
|
||||||
->filters([
|
->filters([
|
||||||
Tables\Filters\TrashedFilter::make(),
|
Tables\Filters\TrashedFilter::make(),
|
||||||
Filter::make('advanced_filters')
|
Filter::make('advanced_filters')
|
||||||
@@ -251,11 +248,11 @@ class ItemResource extends Resource
|
|||||||
->options(function (callable $get) {
|
->options(function (callable $get) {
|
||||||
$userHas = Filament::auth()->user()->plant_id;
|
$userHas = Filament::auth()->user()->plant_id;
|
||||||
|
|
||||||
return ($userHas && strlen($userHas) > 0) ? Plant::where('id', $userHas)->pluck('name', 'id')->toArray() : Plant::pluck('name', 'id')->toArray();
|
return ($userHas && strlen($userHas) > 0) ? Plant::where('id', $userHas)->orderBy('code')->pluck('name', 'id')->toArray() : Plant::orderBy('code')->pluck('name', 'id')->toArray();
|
||||||
})
|
})
|
||||||
->reactive()
|
->reactive()
|
||||||
->afterStateUpdated(function ($state, callable $set, callable $get): void {
|
->afterStateUpdated(function ($state, callable $set, callable $get): void {
|
||||||
$set('item_id', null);
|
$set('code', null);
|
||||||
$set('operator_id', null);
|
$set('operator_id', null);
|
||||||
}),
|
}),
|
||||||
Select::make('code')
|
Select::make('code')
|
||||||
@@ -270,9 +267,7 @@ class ItemResource extends Resource
|
|||||||
->options(function (callable $get) {
|
->options(function (callable $get) {
|
||||||
$plantId = $get('Plant');
|
$plantId = $get('Plant');
|
||||||
|
|
||||||
return $plantId
|
return $plantId ? Item::where('plant_id', $plantId)->pluck('code', 'id') : [];
|
||||||
? Item::where('plant_id', $plantId)->pluck('code', 'id')
|
|
||||||
: [];
|
|
||||||
})
|
})
|
||||||
->searchable()
|
->searchable()
|
||||||
->reactive(),
|
->reactive(),
|
||||||
@@ -300,7 +295,7 @@ class ItemResource extends Resource
|
|||||||
// Hide all records initially if no filters are applied
|
// Hide all records initially if no filters are applied
|
||||||
if (
|
if (
|
||||||
empty($data['Plant']) &&
|
empty($data['Plant']) &&
|
||||||
empty($data['item_id']) &&
|
empty($data['code']) &&
|
||||||
empty($data['description']) &&
|
empty($data['description']) &&
|
||||||
empty($data['uom']) &&
|
empty($data['uom']) &&
|
||||||
empty($data['category']) &&
|
empty($data['category']) &&
|
||||||
@@ -314,8 +309,8 @@ class ItemResource extends Resource
|
|||||||
$query->where('plant_id', $data['Plant']);
|
$query->where('plant_id', $data['Plant']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! empty($data['item_id'])) {
|
if (! empty($data['code'])) {
|
||||||
$query->where('item_id', $data['item_id']);
|
$query->where('id', $data['code']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! empty($data['description'])) {
|
if (! empty($data['description'])) {
|
||||||
@@ -337,7 +332,6 @@ class ItemResource extends Resource
|
|||||||
if (! empty($data['created_to'])) {
|
if (! empty($data['created_to'])) {
|
||||||
$query->where('created_at', '<=', $data['created_to']);
|
$query->where('created_at', '<=', $data['created_to']);
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
->indicateUsing(function (array $data) {
|
->indicateUsing(function (array $data) {
|
||||||
$indicators = [];
|
$indicators = [];
|
||||||
@@ -346,8 +340,8 @@ class ItemResource extends Resource
|
|||||||
$indicators[] = 'Plant: '.Plant::where('id', $data['Plant'])->value('name');
|
$indicators[] = 'Plant: '.Plant::where('id', $data['Plant'])->value('name');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! empty($data['item_id'])) {
|
if (! empty($data['code'])) {
|
||||||
$indicators[] = 'Item Code: '.$data['item_id'];
|
$indicators[] = 'Item Code: '.Item::where('id', $data['code'])->value('code');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! empty($data['description'])) {
|
if (! empty($data['description'])) {
|
||||||
@@ -621,10 +615,10 @@ class ItemResource extends Resource
|
|||||||
}),
|
}),
|
||||||
// ->maxRows(100000),
|
// ->maxRows(100000),
|
||||||
ExportAction::make()
|
ExportAction::make()
|
||||||
// ->columnMapping(true)
|
// ->columnMapping(true)
|
||||||
->label('Export Items')
|
->label('Export Items')
|
||||||
->color('warning')
|
->color('warning')
|
||||||
// ->fileName("Items Report " . date('Y-m-d H:i:s'))
|
// ->fileName("Items Report " . date('Y-m-d H:i:s'))
|
||||||
->exporter(ItemExporter::class)
|
->exporter(ItemExporter::class)
|
||||||
->visible(function () {
|
->visible(function () {
|
||||||
return Filament::auth()->user()->can('view export item');
|
return Filament::auth()->user()->can('view export item');
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ 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);
|
||||||
@@ -122,6 +123,7 @@ 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()
|
||||||
|
|||||||
@@ -601,7 +601,7 @@ class StickerMasterResource extends Resource
|
|||||||
->options(function (callable $get) {
|
->options(function (callable $get) {
|
||||||
$userHas = Filament::auth()->user()->plant_id;
|
$userHas = Filament::auth()->user()->plant_id;
|
||||||
|
|
||||||
return ($userHas && strlen($userHas) > 0) ? Plant::where('id', $userHas)->pluck('name', 'id')->toArray() : Plant::pluck('name', 'id')->toArray();
|
return ($userHas && strlen($userHas) > 0) ? Plant::where('id', $userHas)->orderBy('code')->pluck('name', 'id')->toArray() : Plant::orderBy('code')->pluck('name', 'id')->toArray();
|
||||||
})
|
})
|
||||||
->reactive()
|
->reactive()
|
||||||
->afterStateUpdated(function ($state, callable $set, callable $get): void {
|
->afterStateUpdated(function ($state, callable $set, callable $get): void {
|
||||||
@@ -620,9 +620,7 @@ class StickerMasterResource extends Resource
|
|||||||
->options(function (callable $get) {
|
->options(function (callable $get) {
|
||||||
$plantId = $get('Plant');
|
$plantId = $get('Plant');
|
||||||
|
|
||||||
return $plantId
|
return $plantId ? Item::where('plant_id', $plantId)->pluck('code', 'id') : [];
|
||||||
? Item::where('plant_id', $plantId)->pluck('code', 'id')
|
|
||||||
: Item::pluck('code', 'id');
|
|
||||||
})
|
})
|
||||||
->searchable()
|
->searchable()
|
||||||
->reactive(),
|
->reactive(),
|
||||||
|
|||||||
199
app/Filament/Resources/StickerPrintingResource.php
Normal file
199
app/Filament/Resources/StickerPrintingResource.php
Normal file
@@ -0,0 +1,199 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Resources;
|
||||||
|
|
||||||
|
use App\Filament\Resources\StickerPrintingResource\Pages;
|
||||||
|
use App\Models\Plant;
|
||||||
|
use App\Models\StickerPrinting;
|
||||||
|
use Filament\Facades\Filament;
|
||||||
|
use Filament\Forms;
|
||||||
|
use Filament\Forms\Components\Section;
|
||||||
|
use Filament\Forms\Form;
|
||||||
|
use Filament\Resources\Resource;
|
||||||
|
use Filament\Tables;
|
||||||
|
use Filament\Tables\Table;
|
||||||
|
use Illuminate\Database\Eloquent\Builder;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
||||||
|
use Filament\Tables\Actions\ExportAction;
|
||||||
|
use Filament\Tables\Actions\ImportAction;
|
||||||
|
use App\Filament\Exports\StickerPrintingExporter;
|
||||||
|
use App\Filament\Imports\StickerPrintingImporter;
|
||||||
|
use Filament\Forms\Components\Actions\Action;
|
||||||
|
|
||||||
|
class StickerPrintingResource extends Resource
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerPrinting::class;
|
||||||
|
|
||||||
|
protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';
|
||||||
|
|
||||||
|
public static function form(Form $form): Form
|
||||||
|
{
|
||||||
|
return $form
|
||||||
|
->schema([
|
||||||
|
Section::make('')
|
||||||
|
->schema([
|
||||||
|
Forms\Components\Select::make('plant_id')
|
||||||
|
->label('Plant')
|
||||||
|
->reactive()
|
||||||
|
->relationship('plant', 'name')
|
||||||
|
->options(function (callable $get) {
|
||||||
|
$userHas = Filament::auth()->user()->plant_id;
|
||||||
|
|
||||||
|
return ($userHas && strlen($userHas) > 0) ? Plant::where('id', $userHas)->pluck('name', 'id')->toArray() : Plant::pluck('name', 'id')->toArray();
|
||||||
|
})
|
||||||
|
->required()
|
||||||
|
->afterStateUpdated(function ($state, callable $set, callable $get) {
|
||||||
|
$plantId = $get('plant_id');
|
||||||
|
|
||||||
|
if (!$plantId) {
|
||||||
|
$set('reference_number', null);
|
||||||
|
$set('serial_number', null);
|
||||||
|
$set('ivPlantError', 'Please select a plant first.');
|
||||||
|
} else {
|
||||||
|
$set('ivPlantError', null);
|
||||||
|
$set('reference_number', null);
|
||||||
|
$set('serial_number', null);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
->extraAttributes(fn ($get) => [
|
||||||
|
'class' => $get('ivPlantError') ? 'border-red-500' : '',
|
||||||
|
])
|
||||||
|
->hint(fn ($get) => $get('ivPlantError') ? $get('ivPlantError') : null)
|
||||||
|
->hintColor('danger'),
|
||||||
|
Forms\Components\TextInput::make('reference_number')
|
||||||
|
->label('Reference Number')
|
||||||
|
->reactive()
|
||||||
|
->readOnly(fn (callable $get) => !empty($get('serial_number')))
|
||||||
|
->extraAttributes([
|
||||||
|
'id' => 'invoice_number_input',
|
||||||
|
'x-data' => '{ value: "" }',
|
||||||
|
'x-model' => 'value',
|
||||||
|
'wire:keydown.enter.prevent' => 'processRef(value)',
|
||||||
|
])
|
||||||
|
->required(),
|
||||||
|
Forms\Components\TextInput::make('serial_number')
|
||||||
|
->label('Serial Number')
|
||||||
|
->reactive()
|
||||||
|
// ->required()
|
||||||
|
->readOnly(fn (callable $get) => empty($get('reference_number')))
|
||||||
|
->extraAttributes([
|
||||||
|
'id' => 'serial_number_input',
|
||||||
|
'x-data' => '{ value: "" }',
|
||||||
|
'x-model' => 'value',
|
||||||
|
'wire:keydown.enter.prevent' => 'processSno(value)',
|
||||||
|
//'x-on:keydown.enter.prevent' => '$wire.processInvoice(value)',
|
||||||
|
]),
|
||||||
|
//->required(),
|
||||||
|
Forms\Components\View::make('forms.components.print-button'),
|
||||||
|
|
||||||
|
Forms\Components\Hidden::make('created_by')
|
||||||
|
->label('Created By')
|
||||||
|
->default(Filament::auth()->user()?->name),
|
||||||
|
Forms\Components\Hidden::make('updated_by')
|
||||||
|
->label('Updated By')
|
||||||
|
->default(Filament::auth()->user()?->name),
|
||||||
|
|
||||||
|
])
|
||||||
|
->columns(4),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function table(Table $table): Table
|
||||||
|
{
|
||||||
|
return $table
|
||||||
|
->columns([
|
||||||
|
Tables\Columns\TextColumn::make('No.')
|
||||||
|
->label('No.')
|
||||||
|
->getStateUsing(function ($record, $livewire, $column, $rowLoop) {
|
||||||
|
$paginator = $livewire->getTableRecords();
|
||||||
|
$perPage = method_exists($paginator, 'perPage') ? $paginator->perPage() : 10;
|
||||||
|
$currentPage = method_exists($paginator, 'currentPage') ? $paginator->currentPage() : 1;
|
||||||
|
|
||||||
|
return ($currentPage - 1) * $perPage + $rowLoop->iteration;
|
||||||
|
}),
|
||||||
|
Tables\Columns\TextColumn::make('plant.name')
|
||||||
|
->label('Plant')
|
||||||
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
|
Tables\Columns\TextColumn::make('reference_number')
|
||||||
|
->label('Reference Number')
|
||||||
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
|
Tables\Columns\TextColumn::make('serial_number')
|
||||||
|
->label('Serial Number')
|
||||||
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
|
Tables\Columns\TextColumn::make('created_by')
|
||||||
|
->label('Created By')
|
||||||
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
|
Tables\Columns\TextColumn::make('created_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
Tables\Columns\TextColumn::make('updated_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
Tables\Columns\TextColumn::make('deleted_at')
|
||||||
|
->dateTime()
|
||||||
|
->sortable()
|
||||||
|
->toggleable(isToggledHiddenByDefault: true),
|
||||||
|
])
|
||||||
|
->filters([
|
||||||
|
Tables\Filters\TrashedFilter::make(),
|
||||||
|
])
|
||||||
|
->actions([
|
||||||
|
Tables\Actions\ViewAction::make(),
|
||||||
|
Tables\Actions\EditAction::make(),
|
||||||
|
])
|
||||||
|
->bulkActions([
|
||||||
|
Tables\Actions\BulkActionGroup::make([
|
||||||
|
Tables\Actions\DeleteBulkAction::make(),
|
||||||
|
Tables\Actions\ForceDeleteBulkAction::make(),
|
||||||
|
Tables\Actions\RestoreBulkAction::make(),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
->headerActions([
|
||||||
|
ImportAction::make()
|
||||||
|
->importer(StickerPrintingImporter::class)
|
||||||
|
->label('Import Sticker Printing')
|
||||||
|
->color('warning')
|
||||||
|
->visible(function () {
|
||||||
|
return Filament::auth()->user()->can('view import sticker printing');
|
||||||
|
}),
|
||||||
|
ExportAction::make()
|
||||||
|
->exporter(StickerPrintingExporter::class)
|
||||||
|
->label('Export Sticker Printing')
|
||||||
|
->color('warning')
|
||||||
|
->visible(function () {
|
||||||
|
return Filament::auth()->user()->can('view export sticker printing');
|
||||||
|
}),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getRelations(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
//
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'index' => Pages\ListStickerPrintings::route('/'),
|
||||||
|
'create' => Pages\CreateStickerPrinting::route('/create'),
|
||||||
|
'view' => Pages\ViewStickerPrinting::route('/{record}'),
|
||||||
|
'edit' => Pages\EditStickerPrinting::route('/{record}/edit'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getEloquentQuery(): Builder
|
||||||
|
{
|
||||||
|
return parent::getEloquentQuery()
|
||||||
|
->withoutGlobalScopes([
|
||||||
|
SoftDeletingScope::class,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,244 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Resources\StickerPrintingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\Resources\StickerPrintingResource;
|
||||||
|
use Filament\Resources\Pages\CreateRecord;
|
||||||
|
use PDF;
|
||||||
|
use SimpleSoftwareIO\QrCode\Facades\QrCode;
|
||||||
|
use Filament\Facades\Filament;
|
||||||
|
use App\Models\StickerPrinting;
|
||||||
|
use Filament\Notifications\Notification;
|
||||||
|
use Str;
|
||||||
|
|
||||||
|
|
||||||
|
class CreateStickerPrinting extends CreateRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = StickerPrintingResource::class;
|
||||||
|
|
||||||
|
protected static string $view = 'filament.resources.sticker-printing-resource.pages.create-sticker-printing';
|
||||||
|
|
||||||
|
public $plantId;
|
||||||
|
|
||||||
|
public $ref_number;
|
||||||
|
|
||||||
|
public $ref;
|
||||||
|
|
||||||
|
public $serial_number;
|
||||||
|
|
||||||
|
public function getFormActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
$this->getCancelFormAction(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getRedirectUrl(): string
|
||||||
|
{
|
||||||
|
return $this->getResource()::getUrl('create');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function loadRecords()
|
||||||
|
{
|
||||||
|
$this->records = StickerPrinting::where('reference_number', $this->refNumber)
|
||||||
|
->where('plant_id', $this->plantId)
|
||||||
|
->latest()
|
||||||
|
->get();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function processRef($value)
|
||||||
|
{
|
||||||
|
|
||||||
|
//$this->ref_number = $value;
|
||||||
|
$ref = $this->form->getState()['reference_number'] ?? null;
|
||||||
|
|
||||||
|
$user = Filament::auth()->user();
|
||||||
|
|
||||||
|
$operatorName = $user->name;
|
||||||
|
|
||||||
|
$plantId = $this->form->getState()['plant_id'];
|
||||||
|
|
||||||
|
$this->plantId = $plantId;
|
||||||
|
|
||||||
|
$this->dispatch('refreshEmptySticker', $plantId, $ref);
|
||||||
|
|
||||||
|
$this->dispatch('focus-serial-number');
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function processSno($value)
|
||||||
|
{
|
||||||
|
|
||||||
|
$this->serial_number = $value;
|
||||||
|
|
||||||
|
$plant = $this->form->getState()['plant_id'] ?? null;
|
||||||
|
|
||||||
|
$ref = $this->form->getState()['reference_number'] ?? null;
|
||||||
|
|
||||||
|
$sNumber = $this->form->getState()['serial_number'] ?? null;
|
||||||
|
|
||||||
|
$pattern1 = '/^(?<item_code>[^|]+)\|(?<serial_number>[^|]+)\|?$/i';
|
||||||
|
|
||||||
|
$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()
|
||||||
|
->title('Unknown: Incomplete Data!')
|
||||||
|
->body("Please ensure Plant, Reference Number, and Serial Number are provided.")
|
||||||
|
->danger()
|
||||||
|
->seconds(3)
|
||||||
|
->send();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$exists = StickerPrinting::where('plant_id', $plant)
|
||||||
|
->where('serial_number', $sNumber)
|
||||||
|
->first();
|
||||||
|
|
||||||
|
if ($exists) {
|
||||||
|
Notification::make()
|
||||||
|
->title('Duplicate Serial Number!')
|
||||||
|
->body("Serial Number {$sNumber} already exists for this plant.")
|
||||||
|
->danger()
|
||||||
|
->seconds(3)
|
||||||
|
->send();
|
||||||
|
|
||||||
|
// Reset only serial number field
|
||||||
|
$this->form->fill([
|
||||||
|
'plant_id' => $plant,
|
||||||
|
'reference_number' => $ref,
|
||||||
|
'serial_number' => '',
|
||||||
|
]);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
StickerPrinting::create([
|
||||||
|
'plant_id' => $plant,
|
||||||
|
'reference_number' => $ref,
|
||||||
|
'serial_number' => $sNumber,
|
||||||
|
'created_by' => Filament::auth()->user()->name,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->dispatch('addStickerToList', $plant, $ref, $sNumber);
|
||||||
|
|
||||||
|
$this->form->fill([
|
||||||
|
'plant_id' => $plant,
|
||||||
|
'reference_number' => $ref,
|
||||||
|
'serial_number' => '',
|
||||||
|
]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function printSticker() {
|
||||||
|
|
||||||
|
$plantId = $this->form->getState()['plant_id'];
|
||||||
|
|
||||||
|
$plantId = trim($plantId) ?? null;
|
||||||
|
|
||||||
|
$refNumber = trim($this->form->getState()['reference_number'])?? null;
|
||||||
|
|
||||||
|
$refNumber = trim($refNumber) ?? null;
|
||||||
|
|
||||||
|
$serialNumber = trim($this->form->getState()['serial_number'])?? null;
|
||||||
|
|
||||||
|
$serialNumber = trim($serialNumber) ?? null;
|
||||||
|
|
||||||
|
// dd($plantId, $refNumber, $serialNumber);
|
||||||
|
|
||||||
|
$serialNumbers = StickerPrinting::where('plant_id', $plantId)
|
||||||
|
->where('reference_number', $refNumber)
|
||||||
|
->pluck('serial_number')
|
||||||
|
->toArray();
|
||||||
|
|
||||||
|
if (empty($serialNumbers))
|
||||||
|
{
|
||||||
|
Notification::make()
|
||||||
|
->title('No Serial Numbers found!')
|
||||||
|
->body('Please check the selected Plant & Reference Number.')
|
||||||
|
->danger()
|
||||||
|
->send();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Encode as JSON string in QR Code
|
||||||
|
// $qrData = json_encode([
|
||||||
|
// 'serial_numbers' => $serialNumbers,
|
||||||
|
// ]);
|
||||||
|
//$qrData = implode(',', $serialNumbers);
|
||||||
|
$qrData = implode("\n", $serialNumbers);
|
||||||
|
|
||||||
|
$qrCode = base64_encode(
|
||||||
|
QrCode::format('png')
|
||||||
|
->size(1200) // smaller, still high res
|
||||||
|
->margin(6) // white border
|
||||||
|
->errorCorrection('Q')// medium-high correction
|
||||||
|
->generate($qrData)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Send data to Pdf view
|
||||||
|
$pdf = PDF::loadView('pdf.qrcode', [
|
||||||
|
'qrCode' => $qrCode,
|
||||||
|
'referenceNumber' => $refNumber,
|
||||||
|
]);
|
||||||
|
|
||||||
|
return response()->streamDownload(function () use ($pdf) {
|
||||||
|
echo $pdf->output();
|
||||||
|
}, "qr-sticker.pdf");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Resources\StickerPrintingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\Resources\StickerPrintingResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\EditRecord;
|
||||||
|
|
||||||
|
class EditStickerPrinting extends EditRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = StickerPrintingResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\ViewAction::make(),
|
||||||
|
Actions\DeleteAction::make(),
|
||||||
|
Actions\ForceDeleteAction::make(),
|
||||||
|
Actions\RestoreAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Resources\StickerPrintingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\Resources\StickerPrintingResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ListRecords;
|
||||||
|
|
||||||
|
class ListStickerPrintings extends ListRecords
|
||||||
|
{
|
||||||
|
protected static string $resource = StickerPrintingResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\CreateAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Resources\StickerPrintingResource\Pages;
|
||||||
|
|
||||||
|
use App\Filament\Resources\StickerPrintingResource;
|
||||||
|
use Filament\Actions;
|
||||||
|
use Filament\Resources\Pages\ViewRecord;
|
||||||
|
|
||||||
|
class ViewStickerPrinting extends ViewRecord
|
||||||
|
{
|
||||||
|
protected static string $resource = StickerPrintingResource::class;
|
||||||
|
|
||||||
|
protected function getHeaderActions(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
Actions\EditAction::make(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
55
app/Livewire/StickerPrintData.php
Normal file
55
app/Livewire/StickerPrintData.php
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
<?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');
|
||||||
|
}
|
||||||
|
}
|
||||||
29
app/Models/StickerPrinting.php
Normal file
29
app/Models/StickerPrinting.php
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||||
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||||
|
|
||||||
|
class StickerPrinting extends Model
|
||||||
|
{
|
||||||
|
//
|
||||||
|
|
||||||
|
use SoftDeletes;
|
||||||
|
|
||||||
|
protected $fillable = [
|
||||||
|
'plant_id',
|
||||||
|
'reference_number',
|
||||||
|
'serial_number',
|
||||||
|
'created_at',
|
||||||
|
'updated_at',
|
||||||
|
'created_by',
|
||||||
|
'updated_by',
|
||||||
|
];
|
||||||
|
|
||||||
|
public function plant(): BelongsTo
|
||||||
|
{
|
||||||
|
return $this->belongsTo(Plant::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
107
app/Policies/StickerPrintingPolicy.php
Normal file
107
app/Policies/StickerPrintingPolicy.php
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Policies;
|
||||||
|
|
||||||
|
use Illuminate\Auth\Access\Response;
|
||||||
|
use App\Models\StickerPrinting;
|
||||||
|
use App\Models\User;
|
||||||
|
|
||||||
|
|
||||||
|
class StickerPrintingPolicy
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Determine whether the user can view any models.
|
||||||
|
*/
|
||||||
|
public function viewAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('view-any StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can view the model.
|
||||||
|
*/
|
||||||
|
public function view(User $user, StickerPrinting $stickerprinting): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('view StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can create models.
|
||||||
|
*/
|
||||||
|
public function create(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('create StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can update the model.
|
||||||
|
*/
|
||||||
|
public function update(User $user, StickerPrinting $stickerprinting): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('update StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can delete the model.
|
||||||
|
*/
|
||||||
|
public function delete(User $user, StickerPrinting $stickerprinting): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('delete StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can delete any models.
|
||||||
|
*/
|
||||||
|
public function deleteAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('delete-any StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can restore the model.
|
||||||
|
*/
|
||||||
|
public function restore(User $user, StickerPrinting $stickerprinting): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('restore StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can restore any models.
|
||||||
|
*/
|
||||||
|
public function restoreAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('restore-any StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can replicate the model.
|
||||||
|
*/
|
||||||
|
public function replicate(User $user, StickerPrinting $stickerprinting): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('replicate StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can reorder the models.
|
||||||
|
*/
|
||||||
|
public function reorder(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('reorder StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can permanently delete the model.
|
||||||
|
*/
|
||||||
|
public function forceDelete(User $user, StickerPrinting $stickerprinting): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('force-delete StickerPrinting');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the user can permanently delete any models.
|
||||||
|
*/
|
||||||
|
public function forceDeleteAny(User $user): bool
|
||||||
|
{
|
||||||
|
return $user->checkPermissionTo('force-delete-any StickerPrinting');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -213,6 +213,8 @@ return [
|
|||||||
|
|
||||||
'user_model' => \App\Models\User::class,
|
'user_model' => \App\Models\User::class,
|
||||||
|
|
||||||
|
// 'user_model_class' => \App\Models\User::class,
|
||||||
|
|
||||||
'policies_namespace' => 'App\Policies',
|
'policies_namespace' => 'App\Policies',
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -0,0 +1,40 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
$sql = <<<'SQL'
|
||||||
|
CREATE TABLE sticker_printings (
|
||||||
|
id BIGINT GENERATED always AS IDENTITY PRIMARY KEY,
|
||||||
|
plant_id BIGINT NOT NULL,
|
||||||
|
|
||||||
|
reference_number TEXT DEFAULT NULL,
|
||||||
|
serial_number TEXT DEFAULT NULL,
|
||||||
|
|
||||||
|
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
||||||
|
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
||||||
|
created_by TEXT DEFAULT NULL,
|
||||||
|
updated_by TEXT DEFAULT NULL,
|
||||||
|
deleted_at TIMESTAMP,
|
||||||
|
|
||||||
|
FOREIGN KEY (plant_id) REFERENCES plants (id)
|
||||||
|
);
|
||||||
|
SQL;
|
||||||
|
DB::statement($sql);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('sticker_printings');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -169,6 +169,7 @@ 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']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
<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>
|
||||||
23
resources/views/forms/components/print-button.blade.php
Normal file
23
resources/views/forms/components/print-button.blade.php
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{{-- <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>
|
||||||
|
|
||||||
|
|
||||||
81
resources/views/livewire/sticker-print-data.blade.php
Normal file
81
resources/views/livewire/sticker-print-data.blade.php
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
|
||||||
|
{{-- <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>
|
||||||
|
|
||||||
|
|
||||||
92
resources/views/pdf/qrcode.blade.php
Normal file
92
resources/views/pdf/qrcode.blade.php
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
{{-- <!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