mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			172 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * BillLine.php
 | |
|  * Copyright (C) 2016 thegrumpydictator@gmail.com
 | |
|  *
 | |
|  * This software may be modified and distributed under the terms of the
 | |
|  * Creative Commons Attribution-ShareAlike 4.0 International License.
 | |
|  *
 | |
|  * See the LICENSE file for details.
 | |
|  */
 | |
| 
 | |
| declare(strict_types = 1);
 | |
| namespace FireflyIII\Helpers\Collection;
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use FireflyIII\Models\Bill as BillModel;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * Class BillLine
 | |
|  *
 | |
|  * @package FireflyIII\Helpers\Collection
 | |
|  */
 | |
| class BillLine
 | |
| {
 | |
| 
 | |
|     /** @var  string */
 | |
|     protected $amount;
 | |
|     /** @var  BillModel */
 | |
|     protected $bill;
 | |
|     /** @var  bool */
 | |
|     protected $hit;
 | |
|     /** @var  string */
 | |
|     protected $max;
 | |
|     /** @var  string */
 | |
|     protected $min;
 | |
|     /** @var  Carbon */
 | |
|     private $lastHitDate;
 | |
|     /** @var  int */
 | |
|     private $transactionJournalId;
 | |
| 
 | |
|     /**
 | |
|      * BillLine constructor.
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         $this->lastHitDate = new Carbon;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     public function getAmount(): string
 | |
|     {
 | |
|         return $this->amount ?? '0';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param string $amount
 | |
|      */
 | |
|     public function setAmount(string $amount)
 | |
|     {
 | |
|         $this->amount = $amount;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return BillModel
 | |
|      */
 | |
|     public function getBill(): BillModel
 | |
|     {
 | |
|         return $this->bill;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param BillModel $bill
 | |
|      */
 | |
|     public function setBill(BillModel $bill)
 | |
|     {
 | |
|         $this->bill = $bill;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return Carbon
 | |
|      */
 | |
|     public function getLastHitDate(): Carbon
 | |
|     {
 | |
|         return $this->lastHitDate;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param Carbon $lastHitDate
 | |
|      */
 | |
|     public function setLastHitDate(Carbon $lastHitDate)
 | |
|     {
 | |
|         $this->lastHitDate = $lastHitDate;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     public function getMax(): string
 | |
|     {
 | |
|         return $this->max;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param string $max
 | |
|      */
 | |
|     public function setMax(string $max)
 | |
|     {
 | |
|         $this->max = $max;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     public function getMin(): string
 | |
|     {
 | |
|         return $this->min;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param string $min
 | |
|      */
 | |
|     public function setMin(string $min)
 | |
|     {
 | |
|         $this->min = $min;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return int
 | |
|      */
 | |
|     public function getTransactionJournalId(): int
 | |
|     {
 | |
|         return $this->transactionJournalId ?? 0;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param int $transactionJournalId
 | |
|      */
 | |
|     public function setTransactionJournalId(int $transactionJournalId)
 | |
|     {
 | |
|         $this->transactionJournalId = $transactionJournalId;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return bool
 | |
|      */
 | |
|     public function isActive(): bool
 | |
|     {
 | |
|         return intval($this->bill->active) === 1;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return bool
 | |
|      */
 | |
|     public function isHit(): bool
 | |
|     {
 | |
|         return $this->hit;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param bool $hit
 | |
|      */
 | |
|     public function setHit(bool $hit)
 | |
|     {
 | |
|         $this->hit = $hit;
 | |
|     }
 | |
| 
 | |
| 
 | |
| }
 |