'required|exists:users,id', 'transaction_type_id' => 'required|exists:transaction_types,id', 'bill_id' => 'exists:bills,id', 'transaction_currency_id' => 'required|exists:transaction_currencies,id', 'description' => 'required|between:1,1024', 'completed' => 'required|boolean', 'date' => 'required|date', 'encrypted' => 'required|boolean' ]; /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function bill() { return $this->belongsTo('FireflyIII\Models\Bill'); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ public function budgets() { return $this->belongsToMany('FireflyIII\Models\Budget'); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ public function categories() { return $this->belongsToMany('FireflyIII\Models\Category'); } /** * @return string */ public function getActualAmountAttribute() { $amount = '0'; /** @var Transaction $t */ foreach ($this->transactions as $t) { if ($t->amount > 0) { $amount = $t->amount; } } return $amount; } /** * @return float */ public function getAmountAttribute() { $cache = new CacheProperties(); $cache->addProperty($this->id); $cache->addProperty('amount'); if ($cache->has()) { return $cache->get(); // @codeCoverageIgnore } $amount = '0'; bcscale(2); /** @var Transaction $t */ foreach ($this->transactions as $t) { if ($t->amount > 0) { $amount = $t->amount; } } /* * If the journal has tags, it gets complicated. */ if ($this->tags->count() == 0) { $cache->store($amount); return $amount; } // if journal is part of advancePayment AND journal is a withdrawal, // then journal is being repaid by other journals, so the actual amount will lower: /** @var Tag $advancePayment */ $advancePayment = $this->tags()->where('tagMode', 'advancePayment')->first(); if ($advancePayment && $this->transactionType->type == 'Withdrawal') { // loop other deposits, remove from our amount. $others = $advancePayment->transactionJournals()->transactionTypes(['Deposit'])->get(); foreach ($others as $other) { $amount = bcsub($amount, $other->actual_amount); } $cache->store($amount); return $amount; } // if this journal is part of an advancePayment AND the journal is a deposit, // then the journal amount is correcting a withdrawal, and the amount is zero: if ($advancePayment && $this->transactionType->type == 'Deposit') { $cache->store('0'); return '0'; } // is balancing act? $balancingAct = $this->tags()->where('tagMode', 'balancingAct')->first(); if ($balancingAct) { // this is the expense: if ($this->transactionType->type == 'Withdrawal') { $transfer = $balancingAct->transactionJournals()->transactionTypes(['Transfer'])->first(); if ($transfer) { $amount = bcsub($amount, $transfer->actual_amount); $cache->store($amount); return $amount; } } // @codeCoverageIgnore } // @codeCoverageIgnore $cache->store($amount); return $amount; } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ public function tags() { return $this->belongsToMany('FireflyIII\Models\Tag'); } /** * @return Account */ public function getAssetAccountAttribute() { // if it's a deposit, it's the one thats positive // if it's a withdrawal, it's the one thats negative // otherwise, it's either (return first one): switch ($this->transactionType->type) { case 'Deposit': return $this->transactions()->where('amount', '>', 0)->first()->account; case 'Withdrawal': return $this->transactions()->where('amount', '<', 0)->first()->account; } return $this->transactions()->first()->account; } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function transactions() { return $this->hasMany('FireflyIII\Models\Transaction'); } /** * @return string */ public function getCorrectAmountAttribute() { switch ($this->transactionType->type) { case 'Deposit': return $this->transactions()->where('amount', '>', 0)->first()->amount; case 'Withdrawal': return $this->transactions()->where('amount', '<', 0)->first()->amount; } return '0'; } /** * @codeCoverageIgnore * @return string[] */ public function getDates() { return ['created_at', 'updated_at', 'date', 'deleted_at']; } /** * @codeCoverageIgnore * * @param $value * * @return string */ public function getDescriptionAttribute($value) { if ($this->encrypted) { return Crypt::decrypt($value); } return $value; } /** * @return Account */ public function getDestinationAccountAttribute() { /** @var Transaction $transaction */ foreach ($this->transactions()->get() as $transaction) { if (floatval($transaction->amount) > 0) { return $transaction->account; } } return $this->transactions()->first()->account; } /** * @return Account */ public function getExpenseAccountAttribute() { // if it's a deposit, it's the one thats negative // if it's a withdrawal, it's the one thats positive // otherwise, it's either (return first one): switch ($this->transactionType->type) { case 'Deposit': return $this->transactions()->where('amount', '<', 0)->first()->account; case 'Withdrawal': return $this->transactions()->where('amount', '>', 0)->first()->account; } return $this->transactions()->first()->account; } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function piggyBankEvents() { return $this->hasMany('FireflyIII\Models\PiggyBankEvent'); } /** * @codeCoverageIgnore * * @param EloquentBuilder $query * @param Account $account */ public function scopeAccountIs(EloquentBuilder $query, Account $account) { if (!isset($this->joinedTransactions)) { $query->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id'); $this->joinedTransactions = true; } $query->where('transactions.account_id', $account->id); } /** * @codeCoverageIgnore * * @param EloquentBuilder $query * @param Carbon $date * * @return EloquentBuilder */ public function scopeAfter(EloquentBuilder $query, Carbon $date) { return $query->where('transaction_journals.date', '>=', $date->format('Y-m-d 00:00:00')); } /** * @codeCoverageIgnore * * @param EloquentBuilder $query * @param Carbon $date * * @return EloquentBuilder */ public function scopeBefore(EloquentBuilder $query, Carbon $date) { return $query->where('transaction_journals.date', '<=', $date->format('Y-m-d 00:00:00')); } /** * @codeCoverageIgnore * * @param EloquentBuilder $query * @param Carbon $date * * @return EloquentBuilder */ public function scopeOnDate(EloquentBuilder $query, Carbon $date) { return $query->where('date', '=', $date->format('Y-m-d')); } /** * @codeCoverageIgnore * * @param EloquentBuilder $query * @param array $types */ public function scopeTransactionTypes(EloquentBuilder $query, array $types) { if (is_null($this->joinedTransactionTypes)) { $query->leftJoin( 'transaction_types', 'transaction_types.id', '=', 'transaction_journals.transaction_type_id' ); $this->joinedTransactionTypes = true; } $query->whereIn('transaction_types.type', $types); } /** * @codeCoverageIgnore * Automatically includes the 'with' parameters to get relevant related * objects. * * @param EloquentBuilder $query */ public function scopeWithRelevantData(EloquentBuilder $query) { $query->with( ['transactions' => function (HasMany $q) { $q->orderBy('amount', 'ASC'); }, 'transactiontype', 'transactioncurrency', 'budgets', 'categories', 'transactions.account.accounttype', 'bill', 'budgets', 'categories'] ); } /** * @codeCoverageIgnore * * @param $value */ public function setDescriptionAttribute($value) { $this->attributes['description'] = Crypt::encrypt($value); $this->attributes['encrypted'] = true; } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function transactionCurrency() { return $this->belongsTo('FireflyIII\Models\TransactionCurrency'); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function transactionType() { return $this->belongsTo('FireflyIII\Models\TransactionType'); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ public function transactiongroups() { return $this->belongsToMany('FireflyIII\Models\TransactionGroup'); } /** * @codeCoverageIgnore * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function user() { return $this->belongsTo('FireflyIII\User'); } }