mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-09 15:43:19 -06:00
52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
use LaravelBook\Ardent\Ardent as Ardent;
|
|
|
|
/**
|
|
* Class Importmap
|
|
*
|
|
* @property-read \User $user
|
|
* @property integer $id
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property integer $user_id
|
|
* @property string $file
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereUserId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereFile($value)
|
|
* @property integer $totaljobs
|
|
* @property integer $jobsdone
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereTotaljobs($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Importmap whereJobsdone($value)
|
|
*/
|
|
class Importmap extends Ardent
|
|
{
|
|
public static $rules
|
|
= [
|
|
'user_id' => 'required|exists:users,id',
|
|
'file' => 'required',
|
|
'totaljobs' => 'numeric|required|min:0',
|
|
'jobsdone' => 'numeric|required|min:0',
|
|
|
|
];
|
|
|
|
/**
|
|
* User
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
|
|
public function pct()
|
|
{
|
|
if ($this->jobsdone == 0 || $this->totaljobs == 0) {
|
|
return 0;
|
|
} else {
|
|
return round((($this->jobsdone / $this->totaljobs) * 100), 1);
|
|
}
|
|
}
|
|
}
|