Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Failing after 28s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 20s
Laravel Pint / pint (pull_request) Successful in 2m28s
Laravel Larastan / larastan (pull_request) Failing after 3m57s
90 lines
3.4 KiB
PHP
90 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Exports;
|
|
|
|
use App\Models\StockDataMaster;
|
|
use Filament\Actions\Exports\ExportColumn;
|
|
use Filament\Actions\Exports\Exporter;
|
|
use Filament\Actions\Exports\Models\Export;
|
|
|
|
class StockDataMasterExporter extends Exporter
|
|
{
|
|
protected static ?string $model = StockDataMaster::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('stickerMaster.item.code')
|
|
->label('ITEM CODE'),
|
|
ExportColumn::make('type')
|
|
->label('TYPE')
|
|
->formatStateUsing(fn ($state) => match ($state) {
|
|
'0' => 'FG',
|
|
'1' => 'SFG',
|
|
default => '-',
|
|
}),
|
|
ExportColumn::make('location')
|
|
->label('LOCATION'),
|
|
ExportColumn::make('bin')
|
|
->label('BIN'),
|
|
ExportColumn::make('serial_number')
|
|
->label('SERIAL NUMBER'),
|
|
ExportColumn::make('batch')
|
|
->label('BATCH'),
|
|
ExportColumn::make('quantity')
|
|
->label('QUANTITY'),
|
|
ExportColumn::make('doc_no')
|
|
->label('DOCUMENT NUMBER'),
|
|
ExportColumn::make('motor_scanned_status')
|
|
->label('MOTOR SCANNED STATUS'),
|
|
ExportColumn::make('pump_scanned_status')
|
|
->label('PUMP SCANNED STATUS'),
|
|
ExportColumn::make('capacitor_scanned_status')
|
|
->label('CAPACITOR SCANNED STATUS'),
|
|
ExportColumn::make('scanned_status_set')
|
|
->label('SCANNED STATUS SET'),
|
|
ExportColumn::make('panel_box_item_code')
|
|
->label('PANEL BOX ITEM CODE'),
|
|
ExportColumn::make('panel_box_supplier')
|
|
->label('PANEL BOX SUPPLIER'),
|
|
ExportColumn::make('panel_box_sno')
|
|
->label('PANEL BOX SNO'),
|
|
ExportColumn::make('scanned_status')
|
|
->label('SCANNED STATUS'),
|
|
ExportColumn::make('scanned_count')
|
|
->label('SCANNED COUNT'),
|
|
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 stock data master 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;
|
|
}
|
|
}
|