Added sticker order importer and exporter
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
This commit is contained in:
64
app/Filament/Exports/StickerOrderExporter.php
Normal file
64
app/Filament/Exports/StickerOrderExporter.php
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Exports;
|
||||||
|
|
||||||
|
use App\Models\StickerOrder;
|
||||||
|
use Filament\Actions\Exports\ExportColumn;
|
||||||
|
use Filament\Actions\Exports\Exporter;
|
||||||
|
use Filament\Actions\Exports\Models\Export;
|
||||||
|
|
||||||
|
class StickerOrderExporter extends Exporter
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerOrder::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('item.code')
|
||||||
|
->label('ITEM CODE'),
|
||||||
|
ExportColumn::make('sticker_id')
|
||||||
|
->label('STICKER ID'),
|
||||||
|
ExportColumn::make('production_order')
|
||||||
|
->label('PRODUCTION ORDER'),
|
||||||
|
ExportColumn::make('from_serial_number')
|
||||||
|
->label('FROM SERIAL NUMBER'),
|
||||||
|
ExportColumn::make('to_serial_number')
|
||||||
|
->label('TO SERIAL NUMBER'),
|
||||||
|
ExportColumn::make('print_status')
|
||||||
|
->label('PRINT STATUS'),
|
||||||
|
ExportColumn::make('reprint_count')
|
||||||
|
->label('REPRINT COUNT'),
|
||||||
|
ExportColumn::make('created_at')
|
||||||
|
->label('CREATED AT'),
|
||||||
|
ExportColumn::make('created_by')
|
||||||
|
->label('CREATED BY'),
|
||||||
|
ExportColumn::make('updated_at')
|
||||||
|
->label('UPDATED AT'),
|
||||||
|
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 order 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
56
app/Filament/Imports/StickerOrderImporter.php
Normal file
56
app/Filament/Imports/StickerOrderImporter.php
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Imports;
|
||||||
|
|
||||||
|
use App\Models\StickerOrder;
|
||||||
|
use Filament\Actions\Imports\ImportColumn;
|
||||||
|
use Filament\Actions\Imports\Importer;
|
||||||
|
use Filament\Actions\Imports\Models\Import;
|
||||||
|
|
||||||
|
class StickerOrderImporter extends Importer
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerOrder::class;
|
||||||
|
|
||||||
|
public static function getColumns(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
ImportColumn::make('plant_id')
|
||||||
|
->requiredMapping()
|
||||||
|
->numeric()
|
||||||
|
->rules(['required', 'integer']),
|
||||||
|
ImportColumn::make('item_id')
|
||||||
|
->requiredMapping()
|
||||||
|
->numeric()
|
||||||
|
->rules(['required', 'integer']),
|
||||||
|
ImportColumn::make('sticker_id'),
|
||||||
|
ImportColumn::make('production_order'),
|
||||||
|
ImportColumn::make('from_serial_number'),
|
||||||
|
ImportColumn::make('to_serial_number'),
|
||||||
|
ImportColumn::make('print_status'),
|
||||||
|
ImportColumn::make('reprint_count'),
|
||||||
|
ImportColumn::make('created_by'),
|
||||||
|
ImportColumn::make('updated_by'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function resolveRecord(): ?StickerOrder
|
||||||
|
{
|
||||||
|
// return StickerOrder::firstOrNew([
|
||||||
|
// // Update existing records, matching them by `$this->data['column_name']`
|
||||||
|
// 'email' => $this->data['email'],
|
||||||
|
// ]);
|
||||||
|
|
||||||
|
return new StickerOrder();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getCompletedNotificationBody(Import $import): string
|
||||||
|
{
|
||||||
|
$body = 'Your sticker order 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user