- Menambahkan kolom dan relasi `permohonan_id` pada model, request, dan database terkait. - Memperbarui logika rendering di tampilan untuk mendukung data dari relasi `permohonan`. - Menambahkan fitur baru di menu `Approval Pembayaran` dengan pengaturan role dan icon spesifik.
62 lines
1.6 KiB
PHP
62 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Modules\Lpj\Models;
|
|
|
|
use Modules\Usermanagemenet\Models\User;
|
|
|
|
class PersetujuanPenawaran extends Base
|
|
{
|
|
|
|
protected $table = 'persetujuan_penawaran';
|
|
|
|
protected $fillable = [
|
|
'permohonan_id',
|
|
'penawaran_id',
|
|
'nomor_proposal_penawaran',
|
|
'tanggal_proposal_penawaran',
|
|
'biaya_final',
|
|
'sla_resume',
|
|
'sla_final',
|
|
'file_persetujuan_penawaran',
|
|
'surat_representasi',
|
|
'bukti_bayar',
|
|
'nominal_bayar',
|
|
'status',
|
|
'authorized_status',
|
|
'authorized_at',
|
|
'authorized_by',
|
|
'status',
|
|
'catatan',
|
|
];
|
|
|
|
protected $casts = [
|
|
'tanggal_proposal_penawaran' => 'date',
|
|
'biaya_final' => 'decimal:2',
|
|
'status' => 'boolean',
|
|
'authorized_status' => 'boolean',
|
|
'authorized_at' => 'datetime',
|
|
];
|
|
|
|
// Relationship with Penawaran
|
|
public function penawaran()
|
|
{
|
|
return $this->belongsTo(PenawaranTender::class, 'penawaran_id');
|
|
}
|
|
|
|
public function permohonan(){
|
|
return $this->belongsTo(Permohonan::class, 'permohonan_id');
|
|
}
|
|
|
|
// Relationship with Region
|
|
public function region()
|
|
{
|
|
return $this->belongsTo(Region::class);
|
|
}
|
|
|
|
// Relationship with User (for authorized_by)
|
|
public function authorizedBy()
|
|
{
|
|
return $this->belongsTo(User::class, 'authorized_by');
|
|
}
|
|
}
|