mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Adds acceptable contract to asset
This commit is contained in:
parent
830a6cf67e
commit
43437aac14
|
@ -5,7 +5,9 @@ use App\Events\AssetCheckedOut;
|
|||
use App\Exceptions\CheckoutNotAllowed;
|
||||
use App\Http\Traits\UniqueSerialTrait;
|
||||
use App\Http\Traits\UniqueUndeletedTrait;
|
||||
use App\Models\Contracts\Acceptable as AcceptableContract;
|
||||
use App\Models\Traits\Searchable;
|
||||
use App\Models\User;
|
||||
use App\Presenters\Presentable;
|
||||
use AssetPresenter;
|
||||
use Auth;
|
||||
|
@ -24,7 +26,7 @@ use App\Notifications\CheckoutAssetNotification;
|
|||
*
|
||||
* @version v1.0
|
||||
*/
|
||||
class Asset extends Depreciable
|
||||
class Asset extends Depreciable implements AcceptableContract
|
||||
{
|
||||
protected $presenter = 'App\Presenters\AssetPresenter';
|
||||
use Loggable, Requestable, Presentable, SoftDeletes, ValidatingTrait, UniqueUndeletedTrait, UniqueSerialTrait;
|
||||
|
@ -35,6 +37,53 @@ class Asset extends Depreciable
|
|||
|
||||
const ACCEPTANCE_PENDING = 'pending';
|
||||
|
||||
/**
|
||||
* Accept the asset
|
||||
*
|
||||
* @param User $acceptedBy The user who accepts the asset
|
||||
* @param string $signature The filename of the signature, if provided
|
||||
*/
|
||||
public function accept(User $acceptedBy, $signature = null) {
|
||||
$this->accepted = 'accepted';
|
||||
$this->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* Decline the asset
|
||||
*
|
||||
* @param User $declinedBy The user who declines the asset
|
||||
* @param string $signature The filename of the signature, if provided
|
||||
*/
|
||||
public function decline(User $declinedBy, $signature = null) {
|
||||
$this->assigned_to = null;
|
||||
$this->assigned_type = null;
|
||||
$this->accepted = null;
|
||||
$this->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* Is the asset already accepted?
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function isAccepted() : bool {
|
||||
return $this->accepted != 'pending';
|
||||
}
|
||||
|
||||
/**
|
||||
* Is the asset checked out to this user?
|
||||
*
|
||||
* @param User $user
|
||||
* @return boolean
|
||||
*/
|
||||
public function isCheckedOutTo(User $user) {
|
||||
if (is_null($this->assignedTo)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $this->assignedTo->is($user);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The database table used by the model.
|
||||
|
|
11
app/Models/Contracts/Acceptable.php
Normal file
11
app/Models/Contracts/Acceptable.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
namespace App\Models\Contracts;
|
||||
|
||||
use App\Models\User;
|
||||
|
||||
interface Acceptable {
|
||||
public function accept(User $acceptedBy, $signature);
|
||||
public function decline(User $declinedBy, $signature);
|
||||
public function isAccepted();
|
||||
public function isCheckedOutTo(User $user);
|
||||
}
|
Loading…
Reference in a new issue