firefly-iii/app/Models/TransactionType.php

85 lines
2.5 KiB
PHP
Raw Normal View History

2016-05-20 01:57:45 -05:00
<?php
/**
* TransactionType.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
2016-05-20 01:57:45 -05:00
declare(strict_types = 1);
namespace FireflyIII\Models;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
2016-01-01 14:49:27 -06:00
* FireflyIII\Models\TransactionType
2015-02-27 09:48:33 -06:00
*
* @property integer $id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
* @property string $type
* @property-read \Illuminate\Database\Eloquent\Collection|TransactionJournal[] $transactionJournals
2016-03-12 00:36:23 -06:00
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\TransactionType whereId($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\TransactionType whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\TransactionType whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\TransactionType whereDeletedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\TransactionType whereType($value)
* @mixin \Eloquent
2015-02-27 09:48:33 -06:00
*/
class TransactionType extends Model
{
use SoftDeletes;
2015-12-18 09:38:50 -06:00
const WITHDRAWAL = 'Withdrawal';
const DEPOSIT = 'Deposit';
const TRANSFER = 'Transfer';
const OPENING_BALANCE = 'Opening balance';
2016-01-15 15:32:21 -06:00
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
2015-02-27 09:48:33 -06:00
/**
2015-12-18 09:38:50 -06:00
* @return bool
2015-02-27 09:48:33 -06:00
*/
2015-12-18 09:38:50 -06:00
public function isDeposit()
2015-02-27 09:48:33 -06:00
{
2015-12-18 09:38:50 -06:00
return $this->type === TransactionType::DEPOSIT;
2015-02-27 09:48:33 -06:00
}
/**
* @return bool
*/
2015-12-18 09:38:50 -06:00
public function isOpeningBalance()
{
2015-12-18 09:38:50 -06:00
return $this->type === TransactionType::OPENING_BALANCE;
}
/**
* @return bool
*/
2015-12-18 09:38:50 -06:00
public function isTransfer()
{
2015-12-18 09:38:50 -06:00
return $this->type === TransactionType::TRANSFER;
}
/**
* @return bool
*/
2015-12-18 09:38:50 -06:00
public function isWithdrawal()
{
2015-12-18 09:38:50 -06:00
return $this->type === TransactionType::WITHDRAWAL;
}
/**
2016-01-17 08:28:01 -06:00
*
2015-12-18 09:38:50 -06:00
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
2015-12-18 09:38:50 -06:00
public function transactionJournals()
{
2015-12-18 09:38:50 -06:00
return $this->hasMany('FireflyIII\Models\TransactionJournal');
}
2015-02-27 09:48:33 -06:00
}