mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 01:11:37 -06:00
99 lines
2.9 KiB
PHP
99 lines
2.9 KiB
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Watson\Validating\ValidatingTrait;
|
|
|
|
/**
|
|
* FireflyIII\Models\Transaction
|
|
*
|
|
* @property integer $id
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property \Carbon\Carbon $deleted_at
|
|
* @property integer $account_id
|
|
* @property integer $transaction_journal_id
|
|
* @property string $description
|
|
* @property float $amount
|
|
* @property-read Account $account
|
|
* @property-read TransactionJournal $transactionJournal
|
|
* @method static \Illuminate\Database\Query\Builder|Transaction after($date)
|
|
* @method static \Illuminate\Database\Query\Builder|Transaction before($date)
|
|
* @property float $before
|
|
* @property float $after
|
|
*/
|
|
class Transaction extends Model
|
|
{
|
|
|
|
protected $fillable = ['account_id', 'transaction_journal_id', 'description', 'amount'];
|
|
protected $hidden = ['encrypted'];
|
|
protected $rules
|
|
= [
|
|
'account_id' => 'required|exists:accounts,id',
|
|
'transaction_journal_id' => 'required|exists:transaction_journals,id',
|
|
'description' => 'between:1,255',
|
|
'amount' => 'required|numeric',
|
|
];
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
|
|
use SoftDeletes, ValidatingTrait;
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function account()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\Account');
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*
|
|
* @return float|int
|
|
*/
|
|
public function getAmountAttribute($value)
|
|
{
|
|
return $value;
|
|
}
|
|
|
|
/**
|
|
* @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'));
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*/
|
|
public function setAmountAttribute($value)
|
|
{
|
|
$this->attributes['amount'] = strval(round($value, 2));
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function transactionJournal()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\TransactionJournal');
|
|
}
|
|
}
|