Merge pull request 'Added scanned quantity in stock master and not in stock resource page' (#458) from ranjith-dev into master
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
Reviewed-on: #458
This commit was merged in pull request #458.
This commit is contained in:
@@ -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),
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user