update
This commit is contained in:
@@ -0,0 +1,119 @@
|
||||
<?php
|
||||
|
||||
namespace App\Filament\Resources;
|
||||
|
||||
use App\Filament\Resources\InventarioPrendaResource\Pages;
|
||||
use App\Filament\Resources\InventarioPrendaResource\RelationManagers;
|
||||
use App\Models\InventarioPrenda;
|
||||
use Filament\Forms;
|
||||
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\Forms\Components\{
|
||||
Select,
|
||||
TextInput,
|
||||
DatePicker,
|
||||
Section
|
||||
};
|
||||
use Filament\Tables\Columns\{
|
||||
TextColumn,
|
||||
BadgeColumn
|
||||
};
|
||||
|
||||
class InventarioPrendaResource extends Resource
|
||||
{
|
||||
protected static ?string $model = InventarioPrenda::class;
|
||||
|
||||
protected static ?string $navigationGroup = 'Administración';
|
||||
protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';
|
||||
|
||||
public static function form(Form $form): Form
|
||||
{
|
||||
return $form->schema([
|
||||
Section::make('Ingreso a Inventario')
|
||||
->schema([
|
||||
Select::make('orden_produccion_id')
|
||||
->label('Orden de Producción')
|
||||
->relationship('ordenProduccion', 'numero_orden')
|
||||
->searchable()
|
||||
->required(),
|
||||
|
||||
TextInput::make('cantidad_terminada')
|
||||
->numeric()
|
||||
->required(),
|
||||
|
||||
TextInput::make('cantidad_disponible')
|
||||
->disabled()
|
||||
->dehydrated(false),
|
||||
|
||||
DatePicker::make('fecha_ingreso')
|
||||
->required(),
|
||||
|
||||
Select::make('estado')
|
||||
->options([
|
||||
'en_bodega' => 'En bodega',
|
||||
'lista_despacho' => 'Lista para despacho',
|
||||
])
|
||||
->required(),
|
||||
])
|
||||
->columns(2),
|
||||
]);
|
||||
}
|
||||
|
||||
public static function table(Table $table): Table
|
||||
{
|
||||
return $table
|
||||
->columns([
|
||||
TextColumn::make('ordenProduccion.numero_orden')
|
||||
->label('OP')
|
||||
->searchable(),
|
||||
|
||||
TextColumn::make('cantidad_terminada'),
|
||||
|
||||
TextColumn::make('cantidad_disponible'),
|
||||
|
||||
TextColumn::make('fecha_ingreso')
|
||||
->date(),
|
||||
|
||||
BadgeColumn::make('estado')
|
||||
->formatStateUsing(fn ($state) => match ($state) {
|
||||
'en_bodega' => 'En bodega',
|
||||
'lista_despacho' => 'Lista para despacho',
|
||||
})
|
||||
->colors([
|
||||
'secondary' => 'en_bodega',
|
||||
'success' => 'lista_despacho',
|
||||
]),
|
||||
])
|
||||
->filters([
|
||||
//
|
||||
])
|
||||
->actions([
|
||||
Tables\Actions\EditAction::make(),
|
||||
])
|
||||
->bulkActions([
|
||||
Tables\Actions\BulkActionGroup::make([
|
||||
Tables\Actions\DeleteBulkAction::make(),
|
||||
]),
|
||||
]);
|
||||
}
|
||||
|
||||
public static function getRelations(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
|
||||
public static function getPages(): array
|
||||
{
|
||||
return [
|
||||
'index' => Pages\ListInventarioPrendas::route('/'),
|
||||
'create' => Pages\CreateInventarioPrenda::route('/create'),
|
||||
'edit' => Pages\EditInventarioPrenda::route('/{record}/edit'),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user