mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 21:19:11 -06:00
83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* LimitRepetition.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class LimitRepetition
|
|
*
|
|
* @deprecated
|
|
* @package FireflyIII\Models
|
|
*/
|
|
class LimitRepetition extends Model
|
|
{
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts
|
|
= [
|
|
'created_at' => 'date',
|
|
'updated_at' => 'date',
|
|
'startdate' => 'date',
|
|
'enddate' => 'date',
|
|
];
|
|
protected $dates = ['created_at', 'updated_at', 'startdate', 'enddate'];
|
|
protected $hidden = ['amount_encrypted'];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function budgetLimit()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\BudgetLimit');
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Builder $query
|
|
* @param Carbon $date
|
|
*
|
|
*/
|
|
public function scopeAfter(Builder $query, Carbon $date)
|
|
{
|
|
$query->where('limit_repetitions.startdate', '>=', $date->format('Y-m-d 00:00:00'));
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Builder $query
|
|
* @param Carbon $date
|
|
*
|
|
*/
|
|
public function scopeBefore(Builder $query, Carbon $date)
|
|
{
|
|
$query->where('limit_repetitions.enddate', '<=', $date->format('Y-m-d 00:00:00'));
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*/
|
|
public function setAmountAttribute($value)
|
|
{
|
|
$this->attributes['amount'] = strval(round($value, 2));
|
|
}
|
|
|
|
}
|