1
0
forked from poc/pds

Merge pull request 'Updated gernr column readOnly and stateUpdate logic' (#981) from ranjith-dev into master

Reviewed-on: poc/pds#981
This commit is contained in:
2026-09-04 11:43:23 +00:00

View File

@@ -256,8 +256,12 @@ class RequestCharacteristicResource extends Resource
->label('Serial Number')
->reactive()
->minLength(13)
->readOnly(fn (callable $get) => (! $get('aufnr')))
->afterStateUpdated(function (callable $set) {
->readOnly(fn (callable $get) => (! $get('aufnr') || $get('approver_type') != 'Stop'))
->afterStateUpdated(function ($state, callable $set, callable $get) {
$appTyp = $get('approver_type');
if ($appTyp != 'Stop') {
$set('gernr', null);
}
$set('updated_by', Filament::auth()->user()?->name);
})
// ->rules([