mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 13:44:58 -06:00
71 lines
1.6 KiB
PHP
71 lines
1.6 KiB
PHP
<?php
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Watson\Validating\ValidatingTrait;
|
|
use \Illuminate\Database\Eloquent\Model as Eloquent;
|
|
/**
|
|
* Class PiggyBankRepetition
|
|
*/
|
|
class PiggyBankRepetition extends Eloquent
|
|
{
|
|
use ValidatingTrait;
|
|
public static $rules
|
|
= [
|
|
'piggy_bank_id' => 'required|exists:piggy_banks,id',
|
|
'targetdate' => 'date',
|
|
'startdate' => 'date',
|
|
'currentamount' => 'required|numeric'];
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getDates()
|
|
{
|
|
return ['created_at', 'updated_at', 'targetdate', 'startdate'];
|
|
}
|
|
|
|
/**
|
|
* TODO remove this method in favour of something in the FireflyIII libraries.
|
|
*
|
|
* @return float|int
|
|
*/
|
|
public function pct()
|
|
{
|
|
$total = $this->piggyBank->targetamount;
|
|
$saved = $this->currentamount;
|
|
if ($total == 0) {
|
|
return 0;
|
|
}
|
|
$pct = round(($saved / $total) * 100, 1);
|
|
|
|
return $pct;
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function piggyBank()
|
|
{
|
|
return $this->belongsTo('PiggyBank');
|
|
}
|
|
|
|
/**
|
|
* @param Builder $query
|
|
* @param Carbon $date
|
|
*/
|
|
public function scopeStarts(Builder $query, Carbon $date)
|
|
{
|
|
$query->where('startdate', $date->format('Y-m-d'));
|
|
}
|
|
|
|
/**
|
|
* @param Builder $query
|
|
* @param Carbon $date
|
|
*/
|
|
public function scopeTargets(Builder $query, Carbon $date)
|
|
{
|
|
$query->where('targetdate', $date->format('Y-m-d'));
|
|
}
|
|
|
|
|
|
}
|