Added scanned quantity in stock master and not in stock resource page #458

Merged
jothi merged 1 commits from ranjith-dev into master 2026-03-10 03:49:58 +00:00
2 changed files with 9 additions and 9 deletions
Showing only changes of commit ed9d53b0ae - Show all commits

View File

@@ -82,8 +82,8 @@ class NotInStockResource extends Resource
->label('Panel Box Sno'), ->label('Panel Box Sno'),
Forms\Components\TextInput::make('scanned_status') Forms\Components\TextInput::make('scanned_status')
->label('Scanned Status'), ->label('Scanned Status'),
Forms\Components\TextInput::make('scanned_count') Forms\Components\TextInput::make('scanned_quantity')
->label('Scanned Count'), ->label('Scanned Quantity'),
Forms\Components\Hidden::make('created_by') Forms\Components\Hidden::make('created_by')
->label('Created By') ->label('Created By')
->default(Filament::auth()->user()?->name), ->default(Filament::auth()->user()?->name),

View File

@@ -86,8 +86,8 @@ class StockDataMasterResource extends Resource
->label('Panel Box Sno'), ->label('Panel Box Sno'),
Forms\Components\TextInput::make('scanned_status') Forms\Components\TextInput::make('scanned_status')
->label('Scanned Status'), ->label('Scanned Status'),
Forms\Components\TextInput::make('scanned_count') Forms\Components\TextInput::make('scanned_quantity')
->label('Scanned Count'), ->label('Scanned Quantity'),
Forms\Components\Hidden::make('created_by') Forms\Components\Hidden::make('created_by')
->label('Created By') ->label('Created By')
->default(Filament::auth()->user()?->name), ->default(Filament::auth()->user()?->name),
@@ -200,11 +200,11 @@ class StockDataMasterResource extends Resource
->alignCenter() ->alignCenter()
->searchable() ->searchable()
->sortable(), ->sortable(),
// Tables\Columns\TextColumn::make('scanned_count') Tables\Columns\TextColumn::make('scanned_quantity')
// ->label('Scanned Count') ->label('Scanned Quantity')
// ->alignCenter() ->alignCenter()
// ->searchable() ->searchable()
// ->sortable(), ->sortable(),
Tables\Columns\TextColumn::make('created_at') Tables\Columns\TextColumn::make('created_at')
->label('Created At') ->label('Created At')
->alignCenter() ->alignCenter()