2015-02-27 09:48:33 -06:00
|
|
|
<?php namespace FireflyIII\Models;
|
|
|
|
|
2015-04-07 11:26:14 -05:00
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
2015-02-27 09:48:33 -06:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Watson\Validating\ValidatingTrait;
|
2015-04-07 11:26:14 -05:00
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
/**
|
2016-01-01 14:49:27 -06:00
|
|
|
* FireflyIII\Models\Transaction
|
2015-02-27 09:48:33 -06:00
|
|
|
*
|
2016-01-01 14:49:27 -06:00
|
|
|
* @property integer $id
|
2016-01-28 15:06:16 -06:00
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
* @property \Carbon\Carbon $deleted_at
|
2016-01-01 14:49:27 -06:00
|
|
|
* @property integer $account_id
|
|
|
|
* @property integer $transaction_journal_id
|
|
|
|
* @property string $description
|
|
|
|
* @property float $amount
|
|
|
|
* @property-read Account $account
|
|
|
|
* @property-read TransactionJournal $transactionJournal
|
2016-01-28 15:06:16 -06:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|Transaction after($date)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|Transaction before($date)
|
|
|
|
* @property float $before
|
|
|
|
* @property float $after
|
2016-03-12 00:36:23 -06:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereAccountId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereTransactionJournalId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereDescription($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Transaction whereAmount($value)
|
|
|
|
* @mixin \Eloquent
|
2016-04-29 13:59:28 -05:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Budget[] $budgets
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Category[] $categories
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
|
|
|
class Transaction extends Model
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $fillable = ['account_id', 'transaction_journal_id', 'description', 'amount'];
|
2015-05-23 10:11:16 -05:00
|
|
|
protected $hidden = ['encrypted'];
|
2015-02-27 09:48:33 -06:00
|
|
|
protected $rules
|
|
|
|
= [
|
|
|
|
'account_id' => 'required|exists:accounts,id',
|
|
|
|
'transaction_journal_id' => 'required|exists:transaction_journals,id',
|
|
|
|
'description' => 'between:1,255',
|
2016-01-15 15:32:21 -06:00
|
|
|
'amount' => 'required|numeric',
|
2015-02-27 09:48:33 -06:00
|
|
|
];
|
2016-01-15 15:32:21 -06:00
|
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
use SoftDeletes, ValidatingTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function account()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\Models\Account');
|
|
|
|
}
|
|
|
|
|
2015-05-23 01:46:46 -05:00
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return float|int
|
|
|
|
*/
|
|
|
|
public function getAmountAttribute($value)
|
|
|
|
{
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2015-04-03 15:54:21 -05:00
|
|
|
/**
|
|
|
|
* @param EloquentBuilder $query
|
|
|
|
* @param Carbon $date
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function scopeAfter(EloquentBuilder $query, Carbon $date)
|
|
|
|
{
|
|
|
|
return $query->where('transaction_journals.date', '>=', $date->format('Y-m-d 00:00:00'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param EloquentBuilder $query
|
|
|
|
* @param Carbon $date
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function scopeBefore(EloquentBuilder $query, Carbon $date)
|
|
|
|
{
|
|
|
|
return $query->where('transaction_journals.date', '<=', $date->format('Y-m-d 00:00:00'));
|
|
|
|
}
|
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
/**
|
2015-05-23 01:46:46 -05:00
|
|
|
* @param $value
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
2015-05-23 01:46:46 -05:00
|
|
|
public function setAmountAttribute($value)
|
2015-02-27 09:48:33 -06:00
|
|
|
{
|
2015-05-24 01:00:40 -05:00
|
|
|
$this->attributes['amount'] = strval(round($value, 2));
|
2015-02-27 09:48:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function transactionJournal()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\Models\TransactionJournal');
|
|
|
|
}
|
2016-04-29 13:59:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
|
|
*/
|
|
|
|
public function budgets()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany('FireflyIII\Models\Budget');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
|
|
*/
|
|
|
|
public function categories()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany('FireflyIII\Models\Category');
|
|
|
|
}
|
2015-02-27 09:48:33 -06:00
|
|
|
}
|