Merge pull request 'Added inspection lot number in production characteristic resource page' (#909) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 31s

Reviewed-on: #909
This commit was merged in pull request #909.
This commit is contained in:
2026-08-18 11:40:56 +00:00

View File

@@ -170,6 +170,8 @@ class ProductionCharacteristicResource extends Resource
->label('Production Order'),
Forms\Components\TextInput::make('serial_number')
->label('Serial Number'),
Forms\Components\TextInput::make('inspection_lot_number')
->label('Inspection Lot No'),
Forms\Components\TextInput::make('characteristic_name')
->label('Characteristic Name'),
Forms\Components\TextInput::make('observed_value')
@@ -239,6 +241,11 @@ class ProductionCharacteristicResource extends Resource
->searchable()
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('inspection_lot_number')
->label('Inspection Lot No')
->searchable()
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('serial_number')
->label('Serial Number')
->searchable()
@@ -280,11 +287,6 @@ class ProductionCharacteristicResource extends Resource
})
->alignCenter()
->sortable(),
// Tables\Columns\TextColumn::make('result')
// ->label('Result')
// ->searchable()
// ->alignCenter()
// ->sortable(),
Tables\Columns\TextColumn::make('remark')
->label('Remark')
->searchable()