Added laser winded serial validation error policies and model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 27s

This commit is contained in:
dhanabalan
2026-08-23 18:50:07 +05:30
parent 74b48750e0
commit 3ad1727dcd
2 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class WindedSerialValidationError extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'item_id',
'machine_id',
'machine_name',
'aufnr',
'gernr',
'model_type',
'winded_status',
'winded_qr',
'winded_code',
'winded_serial_number',
'created_at',
'updated_at',
'created_by',
'updated_by',
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
public function item()
{
return $this->belongsTo(Item::class, 'item_id', 'id');
}
public function machine(): BelongsTo
{
return $this->belongsTo(Machine::class);
}
}

View File

@@ -0,0 +1,105 @@
<?php
namespace App\Policies;
use App\Models\User;
use App\Models\WindedSerialValidationError;
class WindedSerialValidationErrorPolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return $user->checkPermissionTo('view-any WindedSerialValidationError');
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, WindedSerialValidationError $windedserialvalidationerror): bool
{
return $user->checkPermissionTo('view WindedSerialValidationError');
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return $user->checkPermissionTo('create WindedSerialValidationError');
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, WindedSerialValidationError $windedserialvalidationerror): bool
{
return $user->checkPermissionTo('update WindedSerialValidationError');
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, WindedSerialValidationError $windedserialvalidationerror): bool
{
return $user->checkPermissionTo('delete WindedSerialValidationError');
}
/**
* Determine whether the user can delete any models.
*/
public function deleteAny(User $user): bool
{
return $user->checkPermissionTo('delete-any WindedSerialValidationError');
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, WindedSerialValidationError $windedserialvalidationerror): bool
{
return $user->checkPermissionTo('restore WindedSerialValidationError');
}
/**
* Determine whether the user can restore any models.
*/
public function restoreAny(User $user): bool
{
return $user->checkPermissionTo('restore-any WindedSerialValidationError');
}
/**
* Determine whether the user can replicate the model.
*/
public function replicate(User $user, WindedSerialValidationError $windedserialvalidationerror): bool
{
return $user->checkPermissionTo('replicate WindedSerialValidationError');
}
/**
* Determine whether the user can reorder the models.
*/
public function reorder(User $user): bool
{
return $user->checkPermissionTo('reorder WindedSerialValidationError');
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, WindedSerialValidationError $windedserialvalidationerror): bool
{
return $user->checkPermissionTo('force-delete WindedSerialValidationError');
}
/**
* Determine whether the user can permanently delete any models.
*/
public function forceDeleteAny(User $user): bool
{
return $user->checkPermissionTo('force-delete-any WindedSerialValidationError');
}
}