Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Has been cancelled
Laravel Larastan / larastan (pull_request) Has been cancelled
Laravel Pint / pint (pull_request) Has been cancelled
77 lines
1.5 KiB
PHP
77 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Item extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'plant_id',
|
|
'line_id',
|
|
'category',
|
|
'code',
|
|
'description',
|
|
'hourly_quantity',
|
|
'uom',
|
|
];
|
|
|
|
public function plant()
|
|
{
|
|
return $this->belongsTo(Plant::class);
|
|
}
|
|
|
|
public function item()
|
|
{
|
|
return $this->belongsTo(Item::class, 'item_id', 'id');
|
|
}
|
|
|
|
public function stickerMasters()
|
|
{
|
|
return $this->hasMany(StickerMaster::class, 'item_id', 'id');
|
|
}
|
|
|
|
public function productionQuantities()
|
|
{
|
|
return $this->hasMany(ProductionQuantity::class);
|
|
}
|
|
|
|
public function motorTestingMasters()
|
|
{
|
|
return $this->hasMany(MotorTestingMaster::class);
|
|
}
|
|
|
|
public function testingPanelReadings()
|
|
{
|
|
return $this->hasMany(TestingPanelReading::class);
|
|
}
|
|
|
|
public function processOrders()
|
|
{
|
|
return $this->hasMany(ProcessOrder::class);
|
|
}
|
|
|
|
public function productCharacteristicsMasters()
|
|
{
|
|
return $this->hasMany(ProductCharacteristicsMaster::class);
|
|
}
|
|
|
|
public function characteristicValues()
|
|
{
|
|
return $this->hasMany(CharacteristicValue::class);
|
|
}
|
|
|
|
public function ClassCharacteristics()
|
|
{
|
|
return $this->hasMany(ClassCharacteristic::class, 'item_id', 'id');
|
|
}
|
|
|
|
public function weightValidations()
|
|
{
|
|
return $this->hasMany(WeightValidation::class);
|
|
}
|
|
}
|