Added sticker structure detail importer and exporter
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 17s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 17s
This commit is contained in:
62
app/Filament/Exports/StickerStructureDetailExporter.php
Normal file
62
app/Filament/Exports/StickerStructureDetailExporter.php
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Exports;
|
||||||
|
|
||||||
|
use App\Models\StickerStructureDetail;
|
||||||
|
use Filament\Actions\Exports\ExportColumn;
|
||||||
|
use Filament\Actions\Exports\Exporter;
|
||||||
|
use Filament\Actions\Exports\Models\Export;
|
||||||
|
|
||||||
|
class StickerStructureDetailExporter extends Exporter
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerStructureDetail::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('sticker_id')
|
||||||
|
->label('STICKER ID'),
|
||||||
|
ExportColumn::make('sticker_width')
|
||||||
|
->label('STICKER WIDTH'),
|
||||||
|
ExportColumn::make('sticker_height')
|
||||||
|
->label('STICKER HEIGHT'),
|
||||||
|
ExportColumn::make('sticker_lmargin')
|
||||||
|
->label('STICKER LEFT MARGIN'),
|
||||||
|
ExportColumn::make('sticker_rmargin')
|
||||||
|
->label('STICKER RIGHT MARGIN'),
|
||||||
|
ExportColumn::make('sticker_tmargin')
|
||||||
|
->label('STICKER TOP MARGIN'),
|
||||||
|
ExportColumn::make('sticker_bmargin')
|
||||||
|
->label('STICKER BOTTOM MARGIN'),
|
||||||
|
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 structure detail 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
49
app/Filament/Imports/StickerStructureDetailImporter.php
Normal file
49
app/Filament/Imports/StickerStructureDetailImporter.php
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Filament\Imports;
|
||||||
|
|
||||||
|
use App\Models\StickerStructureDetail;
|
||||||
|
use Filament\Actions\Imports\ImportColumn;
|
||||||
|
use Filament\Actions\Imports\Importer;
|
||||||
|
use Filament\Actions\Imports\Models\Import;
|
||||||
|
|
||||||
|
class StickerStructureDetailImporter extends Importer
|
||||||
|
{
|
||||||
|
protected static ?string $model = StickerStructureDetail::class;
|
||||||
|
|
||||||
|
public static function getColumns(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
ImportColumn::make('sticker_id'),
|
||||||
|
ImportColumn::make('sticker_width'),
|
||||||
|
ImportColumn::make('sticker_height'),
|
||||||
|
ImportColumn::make('sticker_lmargin'),
|
||||||
|
ImportColumn::make('sticker_rmargin'),
|
||||||
|
ImportColumn::make('sticker_tmargin'),
|
||||||
|
ImportColumn::make('sticker_bmargin'),
|
||||||
|
ImportColumn::make('created_by'),
|
||||||
|
ImportColumn::make('updated_by'),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function resolveRecord(): ?StickerStructureDetail
|
||||||
|
{
|
||||||
|
// return StickerStructureDetail::firstOrNew([
|
||||||
|
// // Update existing records, matching them by `$this->data['column_name']`
|
||||||
|
// 'email' => $this->data['email'],
|
||||||
|
// ]);
|
||||||
|
|
||||||
|
return new StickerStructureDetail();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getCompletedNotificationBody(Import $import): string
|
||||||
|
{
|
||||||
|
$body = 'Your sticker structure detail 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