firefly-iii/app/Models/BudgetLimit.php

69 lines
1.5 KiB
PHP
Raw Normal View History

2015-02-27 09:48:33 -06:00
<?php namespace FireflyIII\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class BudgetLimit
*
* @codeCoverageIgnore
2015-02-27 09:48:33 -06:00
* @package FireflyIII\Models
*/
class BudgetLimit extends Model
{
2015-05-23 10:11:16 -05:00
protected $hidden = ['amount_encrypted'];
2015-02-27 09:48:33 -06:00
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function budget()
{
return $this->belongsTo('FireflyIII\Models\Budget');
}
2015-05-23 01:46:46 -05:00
/**
* @param $value
*
* @return float|int
*/
public function getAmountAttribute($value)
{
// if (is_null($this->amount_encrypted)) {
// return $value;
// }
// $value = intval(Crypt::decrypt($this->amount_encrypted));
// $value = $value / 100;
2015-05-23 01:46:46 -05:00
return $value;
}
2015-02-27 09:48:33 -06:00
/**
* @return array
*/
public function getDates()
{
return ['created_at', 'updated_at', 'startdate'];
}
/**
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function limitrepetitions()
{
return $this->hasMany('FireflyIII\Models\LimitRepetition');
}
2015-05-23 01:46:46 -05:00
/**
* @param $value
*/
public function setAmountAttribute($value)
{
// save in cents:
// $value = intval($value * 100);
// $this->attributes['amount_encrypted'] = Crypt::encrypt($value);
// $this->attributes['amount'] = ($value / 100);
$this->attributes['amount'] = round($value, 2);
2015-05-23 01:46:46 -05:00
}
2015-02-27 09:48:33 -06:00
}