mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-23 14:13:31 -05:00
77 lines
1.4 KiB
PHP
77 lines
1.4 KiB
PHP
<?php
|
|
|
|
class TimesheetEvent extends Eloquent
|
|
{
|
|
public $timestamps = true;
|
|
protected $softDelete = true;
|
|
|
|
/* protected $dates = array('org_updated_at');
|
|
|
|
public function getDates() {
|
|
return array('created_at', 'updated_at', 'deleted_at');
|
|
} */
|
|
|
|
/* public function setOrgUpdatedAtAttribute($value)
|
|
{
|
|
var_dump($value);
|
|
$this->attributes['org_updated_at'] = $value->getTimestamp();
|
|
}*/
|
|
|
|
public function account()
|
|
{
|
|
return $this->belongsTo('Account');
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
|
|
public function source()
|
|
{
|
|
return $this->belongsTo('TimesheetEventSource');
|
|
}
|
|
|
|
public function timesheet()
|
|
{
|
|
return $this->belongsTo('Timesheet');
|
|
}
|
|
|
|
public function project()
|
|
{
|
|
return $this->belongsTo('Project');
|
|
}
|
|
|
|
public function project_code()
|
|
{
|
|
return $this->belongsTo('ProjectCode');
|
|
}
|
|
|
|
/**
|
|
* @return TimesheetEvent
|
|
*/
|
|
public static function createNew($parent = false)
|
|
{
|
|
$className = get_called_class();
|
|
$entity = new $className();
|
|
|
|
if ($parent)
|
|
{
|
|
$entity->user_id = $parent instanceof User ? $parent->id : $parent->user_id;
|
|
$entity->account_id = $parent->account_id;
|
|
}
|
|
else if (Auth::check())
|
|
{
|
|
$entity->user_id = Auth::user()->id;
|
|
$entity->account_id = Auth::user()->account_id;
|
|
}
|
|
else
|
|
{
|
|
Utils::fatalError();
|
|
}
|
|
|
|
return $entity;
|
|
}
|
|
|
|
}
|