1
0
forked from poc/pds

Added block name column on report view

This commit is contained in:
dhanabalan
2025-06-21 10:36:31 +05:30
parent 5f7911b5c2
commit 05ac6c7712
3 changed files with 12 additions and 1 deletions

View File

@@ -45,7 +45,6 @@ class ProductionLineStopResource extends Resource
public static function form(Form $form): Form
{
return $form
->schema([
Section::make('')
@@ -389,6 +388,10 @@ class ProductionLineStopResource extends Resource
->label('Line')
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('shift.block.name')
->label('Block')
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('shift.name')
->label('Shift')
->alignCenter()

View File

@@ -541,6 +541,10 @@ class ProductionPlanResource extends Resource
->label('Line')
->alignCenter()
->sortable(),// ->searchable(),
Tables\Columns\TextColumn::make('shift.block.name')
->label('Block')
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('shift.name')
->label('Shift')
->alignCenter()

View File

@@ -974,6 +974,10 @@ class ProductionQuantityResource extends Resource
->label('Line')
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('shift.block.name')
->label('Block')
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('shift.name')
->label('Shift')
->alignCenter()