2019-10-13 12:59:55 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-13 12:59:55 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-13 12:59:55 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Helpers\Invoice;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class for discount calculations.
|
2019-10-13 12:59:55 +02:00
|
|
|
*/
|
|
|
|
trait Discounter
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public function discount($amount)
|
|
|
|
{
|
|
|
|
if ($this->invoice->is_amount_discount == true) {
|
|
|
|
return $this->invoice->discount;
|
|
|
|
}
|
2019-10-13 12:59:55 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return round($amount * ($this->invoice->discount / 100), 2);
|
|
|
|
}
|
2019-10-13 12:59:55 +02:00
|
|
|
}
|