2015-02-27 09:48:33 -06:00
|
|
|
<?php namespace FireflyIII\Models;
|
|
|
|
|
2015-03-02 13:05:28 -06:00
|
|
|
use Carbon\Carbon;
|
2015-03-29 01:18:15 -05:00
|
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
/**
|
|
|
|
* Class PiggyBankRepetition
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Models
|
2015-07-15 14:06:26 -05:00
|
|
|
* @property integer $id
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
* @property integer $piggy_bank_id
|
|
|
|
* @property \Carbon\Carbon $startdate
|
|
|
|
* @property \Carbon\Carbon $targetdate
|
|
|
|
* @property float $currentamount
|
|
|
|
* @property-read \FireflyIII\Models\PiggyBank $piggyBank
|
2015-07-09 14:29:30 -05:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition wherePiggyBankId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition whereStartdate($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition whereTargetdate($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition whereCurrentamount($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition onDates($start, $target)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\PiggyBankRepetition relevantOnDate($date)
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
|
|
|
class PiggyBankRepetition extends Model
|
|
|
|
{
|
|
|
|
|
2015-05-06 11:09:45 -05:00
|
|
|
protected $fillable = ['piggy_bank_id', 'startdate', 'targetdate', 'currentamount'];
|
2015-05-23 10:11:16 -05:00
|
|
|
protected $hidden = ['currentamount_encrypted'];
|
2015-05-06 11:09:45 -05:00
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDates()
|
|
|
|
{
|
|
|
|
return ['created_at', 'updated_at', 'startdate', 'targetdate'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function piggyBank()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\Models\PiggyBank');
|
|
|
|
}
|
|
|
|
|
2015-03-02 13:05:28 -06:00
|
|
|
/**
|
|
|
|
* @param EloquentBuilder $query
|
2015-03-29 01:18:15 -05:00
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $target
|
2015-03-02 13:05:28 -06:00
|
|
|
*
|
2015-03-29 01:18:15 -05:00
|
|
|
* @return $this
|
2015-03-02 13:05:28 -06:00
|
|
|
*/
|
2015-03-29 01:18:15 -05:00
|
|
|
public function scopeOnDates(EloquentBuilder $query, Carbon $start, Carbon $target)
|
2015-03-02 13:05:28 -06:00
|
|
|
{
|
2015-03-29 01:18:15 -05:00
|
|
|
return $query->where('startdate', $start->format('Y-m-d'))->where('targetdate', $target->format('Y-m-d'));
|
2015-03-02 13:05:28 -06:00
|
|
|
}
|
|
|
|
|
2015-03-21 15:33:52 -05:00
|
|
|
/**
|
|
|
|
* @param EloquentBuilder $query
|
2015-03-29 01:18:15 -05:00
|
|
|
* @param Carbon $date
|
2015-03-21 15:33:52 -05:00
|
|
|
*
|
2015-03-29 01:18:15 -05:00
|
|
|
* @return mixed
|
2015-03-21 15:33:52 -05:00
|
|
|
*/
|
2015-03-29 01:18:15 -05:00
|
|
|
public function scopeRelevantOnDate(EloquentBuilder $query, Carbon $date)
|
2015-03-21 15:33:52 -05:00
|
|
|
{
|
2015-03-29 01:18:15 -05:00
|
|
|
return $query->where(
|
|
|
|
function (EloquentBuilder $q) use ($date) {
|
|
|
|
$q->where('startdate', '<=', $date->format('Y-m-d 00:00:00'));
|
|
|
|
$q->orWhereNull('startdate');
|
|
|
|
}
|
|
|
|
)
|
2015-06-06 16:09:12 -05:00
|
|
|
->where(
|
|
|
|
function (EloquentBuilder $q) use ($date) {
|
2015-03-29 01:18:15 -05:00
|
|
|
|
2015-06-06 16:09:12 -05:00
|
|
|
$q->where('targetdate', '>=', $date->format('Y-m-d 00:00:00'));
|
|
|
|
$q->orWhereNull('targetdate');
|
|
|
|
}
|
|
|
|
);
|
2015-03-21 15:33:52 -05:00
|
|
|
}
|
|
|
|
|
2015-05-23 01:46:46 -05:00
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setCurrentamountAttribute($value)
|
|
|
|
{
|
2015-05-24 01:00:40 -05:00
|
|
|
$this->attributes['currentamount'] = strval(round($value, 2));
|
2015-05-23 01:46:46 -05:00
|
|
|
}
|
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
}
|