invoiceninja/app/Models/Proposal.php

108 lines
2 KiB
PHP
Raw Normal View History

2018-01-30 20:58:55 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
use Laracasts\Presenter\PresentableTrait;
/**
* Class ExpenseCategory.
*/
class Proposal extends EntityModel
{
use SoftDeletes;
use PresentableTrait;
/**
* @var array
*/
protected $dates = ['deleted_at'];
2018-02-08 13:41:22 +02:00
/**
* @var string
*/
protected $presenter = 'App\Ninja\Presenters\ProposalPresenter';
2018-01-30 20:58:55 +02:00
/**
* @var array
*/
protected $fillable = [
2018-02-04 18:42:13 +02:00
'private_notes',
2018-02-04 21:34:38 +02:00
'html',
'css',
2018-01-30 20:58:55 +02:00
];
/**
* @var string
*/
//protected $presenter = 'App\Ninja\Presenters\ProjectPresenter';
/**
* @return mixed
*/
public function getEntityType()
{
return ENTITY_PROPOSAL;
}
/**
* @return string
*/
public function getRoute()
{
return "/proposals/{$this->public_id}";
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function account()
{
return $this->belongsTo('App\Models\Account');
}
/**
* @return mixed
*/
2018-02-07 16:16:31 +02:00
public function invoice()
2018-01-30 20:58:55 +02:00
{
return $this->belongsTo('App\Models\Invoice')->withTrashed();
}
2018-02-11 11:14:47 +02:00
/**
* @return mixed
*/
public function invitations()
{
return $this->hasMany('App\Models\ProposalInvitation')->orderBy('proposal_invitations.contact_id');
}
2018-02-07 18:20:53 +02:00
/**
* @return mixed
*/
public function proposal_invitations()
{
return $this->hasMany('App\Models\ProposalInvitation')->orderBy('proposal_invitations.contact_id');
}
2018-02-04 18:42:13 +02:00
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function proposal_template()
{
return $this->belongsTo('App\Models\ProposalTemplate')->withTrashed();
}
2018-01-30 20:58:55 +02:00
public function getDisplayName()
{
2018-02-08 13:41:22 +02:00
return $this->invoice->invoice_number;
2018-01-30 20:58:55 +02:00
}
}
Proposal::creating(function ($project) {
$project->setNullValues();
});
Proposal::updating(function ($project) {
$project->setNullValues();
});