2022-06-02 04:40:26 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
2022-06-06 05:28:10 +02:00
|
|
|
use App\Utils\Ninja;
|
2022-06-02 04:40:26 +02:00
|
|
|
use App\Utils\Traits\Inviteable;
|
|
|
|
use App\Utils\Traits\MakesDates;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
class PurchaseOrderInvitation extends BaseModel
|
|
|
|
{
|
|
|
|
use MakesDates;
|
|
|
|
use SoftDeletes;
|
|
|
|
use Inviteable;
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'id',
|
2022-06-05 04:41:43 +02:00
|
|
|
'vendor_contact_id',
|
2022-06-02 04:40:26 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
protected $with = [
|
|
|
|
'company',
|
|
|
|
'contact',
|
|
|
|
];
|
|
|
|
protected $touches = ['purchase_order'];
|
|
|
|
|
|
|
|
public function getEntityType()
|
|
|
|
{
|
|
|
|
return self::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function entityType()
|
|
|
|
{
|
|
|
|
return PurchaseOrder::class;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function purchase_order()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(PurchaseOrder::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function contact()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(VendorContact::class, 'vendor_contact_id', 'id')->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function markViewed()
|
|
|
|
{
|
|
|
|
$this->viewed_date = Carbon::now();
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
|
2022-06-06 05:28:10 +02:00
|
|
|
public function getPortalLink() :string
|
|
|
|
{
|
|
|
|
|
|
|
|
if(Ninja::isHosted())
|
|
|
|
$domain = $this->company->domain();
|
|
|
|
else
|
|
|
|
$domain = config('ninja.app_url');
|
|
|
|
|
|
|
|
switch ($this->company->portal_mode) {
|
|
|
|
case 'subdomain':
|
|
|
|
return $domain.'/vendor/';
|
|
|
|
break;
|
|
|
|
case 'iframe':
|
|
|
|
return $domain.'/vendor/';
|
|
|
|
break;
|
|
|
|
case 'domain':
|
|
|
|
return $domain.'/vendor/';
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-06-02 04:40:26 +02:00
|
|
|
|
|
|
|
}
|