mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
96 lines
2.5 KiB
PHP
96 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* PiggyBankRepetition.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 as EloquentBuilder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class PiggyBankRepetition
|
|
*
|
|
* @package FireflyIII\Models
|
|
*/
|
|
class PiggyBankRepetition extends Model
|
|
{
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts
|
|
= [
|
|
'created_at' => 'date',
|
|
'updated_at' => 'date',
|
|
'deleted_at' => 'date',
|
|
'startdate' => 'date',
|
|
'targetdate' => 'date',
|
|
];
|
|
protected $dates = ['created_at', 'updated_at', 'startdate', 'targetdate'];
|
|
protected $fillable = ['piggy_bank_id', 'startdate', 'targetdate', 'currentamount'];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function piggyBank()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\PiggyBank');
|
|
}
|
|
|
|
/**
|
|
* @param EloquentBuilder $query
|
|
* @param Carbon $start
|
|
* @param Carbon $target
|
|
*
|
|
* @return EloquentBuilder
|
|
*/
|
|
public function scopeOnDates(EloquentBuilder $query, Carbon $start, Carbon $target)
|
|
{
|
|
return $query->where('startdate', $start->format('Y-m-d'))->where('targetdate', $target->format('Y-m-d'));
|
|
}
|
|
|
|
/**
|
|
* @param EloquentBuilder $query
|
|
* @param Carbon $date
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function scopeRelevantOnDate(EloquentBuilder $query, Carbon $date)
|
|
{
|
|
return $query->where(
|
|
function (EloquentBuilder $q) use ($date) {
|
|
$q->where('startdate', '<=', $date->format('Y-m-d 00:00:00'));
|
|
$q->orWhereNull('startdate');
|
|
}
|
|
)
|
|
->where(
|
|
function (EloquentBuilder $q) use ($date) {
|
|
|
|
$q->where('targetdate', '>=', $date->format('Y-m-d 00:00:00'));
|
|
$q->orWhereNull('targetdate');
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*/
|
|
public function setCurrentamountAttribute($value)
|
|
{
|
|
$this->attributes['currentamount'] = strval(round($value, 12));
|
|
}
|
|
|
|
}
|