62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Traits;
|
|
|
|
use App\Models\CompanyableScope;
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
trait CompanyableTrait
|
|
{
|
|
/**
|
|
* This trait is used to scope models to the current company. To use this scope on companyable models,
|
|
* we use the "use Companyable;" statement at the top of the mode.
|
|
*
|
|
* @see Company::scopeCompanyables()
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function bootCompanyableTrait()
|
|
{
|
|
static::addGlobalScope(new CompanyableScope);
|
|
}
|
|
|
|
/**
|
|
* Whether this item may be checked out to the given target under FMCS rules.
|
|
*
|
|
* Returns true when:
|
|
* - FMCS is disabled, OR
|
|
* - this item has no company (uncompanied items are unrestricted), OR
|
|
* - target is a User whose company pivot includes this item's company, OR
|
|
* - target has no company and null_company_is_floater is enabled, OR
|
|
* - target's company_id exactly matches this item's company_id.
|
|
*/
|
|
public function canCheckoutTo(Model $target): bool
|
|
{
|
|
$settings = Setting::getSettings();
|
|
|
|
if (! $settings->full_multiple_companies_support) {
|
|
return true;
|
|
}
|
|
|
|
if (! $this->company_id) {
|
|
if (is_null($target->company_id)) {
|
|
return true;
|
|
}
|
|
|
|
return (bool) $settings->null_company_is_floater;
|
|
}
|
|
|
|
if ($target instanceof User) {
|
|
return $target->canReceiveFromCompany((int) $this->company_id);
|
|
}
|
|
|
|
if (is_null($target->company_id)) {
|
|
return (bool) $settings->null_company_is_floater;
|
|
}
|
|
|
|
return (int) $target->company_id === (int) $this->company_id;
|
|
}
|
|
}
|