1
0
forked from poc/pds

Added logic for not ok slectremark text box gets visble in production characteristic page

This commit is contained in:
dhanabalan
2026-08-22 12:06:32 +05:30
parent e9645d0922
commit 46544c8543

View File

@@ -190,7 +190,11 @@ class ProductionCharacteristicResource extends Resource
->label('Remark')
->reactive()
->required(fn ($get) => $get('status') == 'ConditionallyAccepted')
->visible(fn ($get) => $get('status') == 'ConditionallyAccepted'),
// ->visible(fn ($get) => $get('status') == 'ConditionallyAccepted'),
->visible(fn ($get) => in_array($get('status'), [
'NotOk',
'ConditionallyAccepted',
])),
Forms\Components\Hidden::make('created_by')
->label('Created By'),
Forms\Components\Hidden::make('updated_by')