mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
168 lines
6.6 KiB
PHP
168 lines
6.6 KiB
PHP
<?php
|
|
/**
|
|
* RecurrenceTransaction.php
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
|
*
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
use Eloquent;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Database\Query\Builder;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* FireflyIII\Models\RecurrenceTransaction
|
|
*
|
|
* @property int $id
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
* @property Carbon|null $deleted_at
|
|
* @property int $recurrence_id
|
|
* @property int $transaction_currency_id
|
|
* @property int|null $foreign_currency_id
|
|
* @property int $source_id
|
|
* @property int $destination_id
|
|
* @property string $amount
|
|
* @property string|null $foreign_amount
|
|
* @property string $description
|
|
* @property-read Account $destinationAccount
|
|
* @property-read TransactionCurrency|null $foreignCurrency
|
|
* @property-read Recurrence $recurrence
|
|
* @property-read Collection|RecurrenceTransactionMeta[] $recurrenceTransactionMeta
|
|
* @property-read int|null $recurrence_transaction_meta_count
|
|
* @property-read Account $sourceAccount
|
|
* @property-read TransactionCurrency $transactionCurrency
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction newQuery()
|
|
* @method static Builder|RecurrenceTransaction onlyTrashed()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereAmount($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereDeletedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereDescription($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereDestinationId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereForeignAmount($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereForeignCurrencyId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereRecurrenceId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereSourceId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereTransactionCurrencyId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereUpdatedAt($value)
|
|
* @method static Builder|RecurrenceTransaction withTrashed()
|
|
* @method static Builder|RecurrenceTransaction withoutTrashed()
|
|
* @mixin Eloquent
|
|
* @property int|null $transaction_type_id
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurrenceTransaction whereTransactionTypeId($value)
|
|
* @property-read TransactionType|null $transactionType
|
|
*/
|
|
class RecurrenceTransaction extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
/**
|
|
* The attributes that should be casted to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts
|
|
= [
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
'deleted_at' => 'datetime',
|
|
'amount' => 'string',
|
|
'foreign_amount' => 'string',
|
|
'description' => 'string',
|
|
];
|
|
/** @var array Fields that can be filled */
|
|
protected $fillable
|
|
= ['recurrence_id', 'transaction_currency_id', 'foreign_currency_id', 'source_id', 'destination_id', 'amount', 'foreign_amount',
|
|
'description'];
|
|
/** @var string The table to store the data in */
|
|
protected $table = 'recurrences_transactions';
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* @return BelongsTo
|
|
*/
|
|
public function destinationAccount(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Account::class, 'destination_id');
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* @return BelongsTo
|
|
*/
|
|
public function foreignCurrency(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TransactionCurrency::class);
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function recurrence(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Recurrence::class);
|
|
}
|
|
|
|
/**
|
|
* @return HasMany
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function recurrenceTransactionMeta(): HasMany
|
|
{
|
|
return $this->hasMany(RecurrenceTransactionMeta::class, 'rt_id');
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* @return BelongsTo
|
|
*/
|
|
public function sourceAccount(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Account::class, 'source_id');
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* @return BelongsTo
|
|
*/
|
|
public function transactionCurrency(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TransactionCurrency::class);
|
|
}
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
* @return BelongsTo
|
|
*/
|
|
public function transactionType(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TransactionType::class);
|
|
}
|
|
}
|