mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
More valid triggers.
This commit is contained in:
64
app/Rules/Triggers/AmountLess.php
Normal file
64
app/Rules/Triggers/AmountLess.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/**
|
||||
* AmountLess.php
|
||||
* Copyright (C) 2016 Sander Dorigo
|
||||
*
|
||||
* This software may be modified and distributed under the terms
|
||||
* of the MIT license. See the LICENSE file for details.
|
||||
*/
|
||||
|
||||
namespace FireflyIII\Rules\Triggers;
|
||||
|
||||
|
||||
use FireflyIII\Models\RuleTrigger;
|
||||
use FireflyIII\Models\TransactionJournal;
|
||||
use Log;
|
||||
|
||||
/**
|
||||
* Class AmountLess
|
||||
*
|
||||
* @package FireflyIII\Rules\Triggers
|
||||
*/
|
||||
class AmountLess implements TriggerInterface
|
||||
{
|
||||
/** @var RuleTrigger */
|
||||
protected $trigger;
|
||||
|
||||
/** @var TransactionJournal */
|
||||
protected $journal;
|
||||
|
||||
|
||||
/**
|
||||
* TriggerInterface constructor.
|
||||
*
|
||||
* @param RuleTrigger $trigger
|
||||
* @param TransactionJournal $journal
|
||||
*/
|
||||
public function __construct(RuleTrigger $trigger, TransactionJournal $journal)
|
||||
{
|
||||
$this->trigger = $trigger;
|
||||
$this->journal = $journal;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function triggered()
|
||||
{
|
||||
$amount = $this->journal->amount_positive;
|
||||
$compare = $this->trigger->trigger_value;
|
||||
$result = bccomp($amount, $compare, 4);
|
||||
if ($result === -1) {
|
||||
// found something
|
||||
Log::debug($amount . ' is less than ' . $compare . '. Return true.');
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// found nothing.
|
||||
Log::debug($amount . ' is not less than ' . $compare . '. Return false.');
|
||||
|
||||
return false;
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user