|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use App\Models\Peti;
|
|
|
|
use App\Traits\UUID;
|
|
|
|
use App\Models\Customer;
|
|
|
|
use App\Models\Type_peti;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
|
|
|
class asset_status extends Model
|
|
|
|
{
|
|
|
|
use HasFactory, UUID;
|
|
|
|
protected $table = 'asset_statuses';
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'peti_id',
|
|
|
|
'exit_at',
|
|
|
|
'est_pengembalian',
|
|
|
|
'exit_pic',
|
|
|
|
'exit_warehouse',
|
|
|
|
'enter_at',
|
|
|
|
'enter_pic',
|
|
|
|
'enter_warehouse',
|
|
|
|
'kondisi_peti',
|
|
|
|
'created_by',
|
|
|
|
'updated_by',
|
|
|
|
];
|
|
|
|
|
|
|
|
public function asset()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(m_asset::class, 'asset_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function warehouse()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(m_warehouse::class, 'exit_warehouse')->select('id', 'name', 'address');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function warehouseEnter()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(m_warehouse::class, 'enter_warehouse')->select('id', 'name', 'address');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function peti()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Peti::class, 'peti_id')->select('id', 'tipe_peti_id', 'warna', 'fix_lot', 'packing_no', 'customer_id', 'jumlah', 'date_pembuatan', 'warehouse_id', 'kondisipeti_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tipe_peti()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Type_peti::class, 'type')->select('id', 'type', 'size_peti', 'description');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function customer()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Customer::class, 'customer_id');
|
|
|
|
}
|
|
|
|
}
|