April 2026 waren Wirtschaft Feedback
This commit is contained in:
parent
02f2a4c23e
commit
9ce711d6b2
167 changed files with 25278 additions and 8518 deletions
118
app/Models/StockEntry.php
Normal file
118
app/Models/StockEntry.php
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\User;
|
||||
use Database\Factories\StockEntryFactory;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class StockEntry extends Model
|
||||
{
|
||||
/** @use HasFactory<StockEntryFactory> */
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'entry_type',
|
||||
'ingredient_id',
|
||||
'packaging_item_id',
|
||||
'supplier_id',
|
||||
'location_id',
|
||||
'unit',
|
||||
'ordered_by',
|
||||
'ordered_at',
|
||||
'ordered_quantity',
|
||||
'price_per_kg',
|
||||
'price_total',
|
||||
'received_by',
|
||||
'received_at',
|
||||
'received_quantity',
|
||||
'batch_number',
|
||||
'best_before',
|
||||
'quality_id',
|
||||
'status',
|
||||
];
|
||||
|
||||
/**
|
||||
* @return array<string, string>
|
||||
*/
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'ordered_at' => 'date',
|
||||
'received_at' => 'date',
|
||||
'best_before' => 'date',
|
||||
'ordered_quantity' => 'decimal:2',
|
||||
'received_quantity' => 'decimal:2',
|
||||
'price_per_kg' => 'decimal:4',
|
||||
'price_total' => 'decimal:4',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<Ingredient, $this>
|
||||
*/
|
||||
public function ingredient(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Ingredient::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<PackagingItem, $this>
|
||||
*/
|
||||
public function packagingItem(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(PackagingItem::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<Supplier, $this>
|
||||
*/
|
||||
public function supplier(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Supplier::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<Location, $this>
|
||||
*/
|
||||
public function location(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Location::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<MaterialQuality, $this>
|
||||
*/
|
||||
public function quality(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(MaterialQuality::class, 'quality_id');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<User, $this>
|
||||
*/
|
||||
public function orderedByUser(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class, 'ordered_by');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BelongsTo<User, $this>
|
||||
*/
|
||||
public function receivedByUser(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class, 'received_by');
|
||||
}
|
||||
|
||||
public function isPending(): bool
|
||||
{
|
||||
return $this->status === 'pending';
|
||||
}
|
||||
|
||||
public function isReceived(): bool
|
||||
{
|
||||
return $this->status === 'received';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue