2015-02-27 16:48:33 +01:00
|
|
|
<?php namespace FireflyIII\Models;
|
|
|
|
|
2015-03-02 20:05:28 +01:00
|
|
|
use Carbon\Carbon;
|
2015-03-29 08:18:15 +02:00
|
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2015-02-27 16:48:33 +01:00
|
|
|
/**
|
|
|
|
* Class PiggyBankRepetition
|
|
|
|
*
|
2015-06-03 21:27:36 +02:00
|
|
|
* @codeCoverageIgnore
|
2015-02-27 16:48:33 +01:00
|
|
|
* @package FireflyIII\Models
|
2015-06-03 21:25:11 +02: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 string $currentamount_encrypted
|
2015-05-26 12:19:11 +02:00
|
|
|
* @property-read \FireflyIII\Models\PiggyBank $piggyBank
|
2015-05-26 11:15:45 +02: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 whereCurrentamountEncrypted($value)
|
|
|
|
* @method static \FireflyIII\Models\PiggyBankRepetition onDates($start, $target)
|
|
|
|
* @method static \FireflyIII\Models\PiggyBankRepetition relevantOnDate($date)
|
2015-02-27 16:48:33 +01:00
|
|
|
*/
|
|
|
|
class PiggyBankRepetition extends Model
|
|
|
|
{
|
|
|
|
|
2015-05-06 18:09:45 +02:00
|
|
|
protected $fillable = ['piggy_bank_id', 'startdate', 'targetdate', 'currentamount'];
|
2015-05-23 17:11:16 +02:00
|
|
|
protected $hidden = ['currentamount_encrypted'];
|
2015-05-06 18:09:45 +02:00
|
|
|
|
2015-02-27 16:48:33 +01: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 20:05:28 +01:00
|
|
|
/**
|
|
|
|
* @param EloquentBuilder $query
|
2015-03-29 08:18:15 +02:00
|
|
|
* @param Carbon $start
|
|
|
|
* @param Carbon $target
|
2015-03-02 20:05:28 +01:00
|
|
|
*
|
2015-03-29 08:18:15 +02:00
|
|
|
* @return $this
|
2015-03-02 20:05:28 +01:00
|
|
|
*/
|
2015-03-29 08:18:15 +02:00
|
|
|
public function scopeOnDates(EloquentBuilder $query, Carbon $start, Carbon $target)
|
2015-03-02 20:05:28 +01:00
|
|
|
{
|
2015-03-29 08:18:15 +02:00
|
|
|
return $query->where('startdate', $start->format('Y-m-d'))->where('targetdate', $target->format('Y-m-d'));
|
2015-03-02 20:05:28 +01:00
|
|
|
}
|
|
|
|
|
2015-03-21 21:33:52 +01:00
|
|
|
/**
|
|
|
|
* @param EloquentBuilder $query
|
2015-03-29 08:18:15 +02:00
|
|
|
* @param Carbon $date
|
2015-03-21 21:33:52 +01:00
|
|
|
*
|
2015-03-29 08:18:15 +02:00
|
|
|
* @return mixed
|
2015-03-21 21:33:52 +01:00
|
|
|
*/
|
2015-03-29 08:18:15 +02:00
|
|
|
public function scopeRelevantOnDate(EloquentBuilder $query, Carbon $date)
|
2015-03-21 21:33:52 +01:00
|
|
|
{
|
2015-03-29 08:18:15 +02: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-05 08:40:26 +00:00
|
|
|
->where(
|
|
|
|
function (EloquentBuilder $q) use ($date) {
|
2015-03-29 08:18:15 +02:00
|
|
|
|
2015-06-05 08:40:26 +00:00
|
|
|
$q->where('targetdate', '>=', $date->format('Y-m-d 00:00:00'));
|
|
|
|
$q->orWhereNull('targetdate');
|
|
|
|
}
|
|
|
|
);
|
2015-03-21 21:33:52 +01:00
|
|
|
}
|
|
|
|
|
2015-05-23 08:46:46 +02:00
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*/
|
|
|
|
public function setCurrentamountAttribute($value)
|
|
|
|
{
|
2015-05-24 08:00:40 +02:00
|
|
|
$this->attributes['currentamount'] = strval(round($value, 2));
|
2015-05-23 08:46:46 +02:00
|
|
|
}
|
|
|
|
|
2015-02-27 16:48:33 +01:00
|
|
|
}
|