mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			159 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			159 lines
		
	
	
		
			5.8 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\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;
 | |
| use Illuminate\Support\Collection;
 | |
| 
 | |
| /**
 | |
|  * Class RecurrenceTransaction
 | |
|  *
 | |
|  * @property int                 $transaction_currency_id,
 | |
|  * @property int                 $foreign_currency_id
 | |
|  * @property int                 $source_id
 | |
|  * @property int                 $destination_id
 | |
|  * @property string              $amount
 | |
|  * @property string              $foreign_amount
 | |
|  * @property string              $description
 | |
|  * @property TransactionCurrency $transactionCurrency
 | |
|  * @property TransactionCurrency $foreignCurrency
 | |
|  * @property Account             $sourceAccount
 | |
|  * @property Account             $destinationAccount
 | |
|  * @property Collection          $recurrenceTransactionMeta
 | |
|  * @property int                 $id
 | |
|  * @property Recurrence          $recurrence
 | |
|  * @property Carbon|null         $created_at
 | |
|  * @property Carbon|null         $updated_at
 | |
|  * @property Carbon|null         $deleted_at
 | |
|  * @property int                 $recurrence_id
 | |
|  * @method static bool|null forceDelete()
 | |
|  * @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 bool|null restore()
 | |
|  * @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-read int|null $recurrence_transaction_meta_count
 | |
|  * @property int $transaction_currency_id
 | |
|  */
 | |
| 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);
 | |
|     }
 | |
| }
 |