1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/app/Models/Traits/ChargesFees.php

76 lines
1.7 KiB
PHP
Raw Normal View History

2017-03-15 16:24:01 +01:00
<?php
namespace App\Models\Traits;
2017-03-15 19:10:40 +01:00
use App\Models\GatewayType;
2017-03-15 16:24:01 +01:00
use App\Models\InvoiceItem;
use App\Models\AccountGatewaySettings;
/**
* Class ChargesFees
*/
trait ChargesFees
{
2017-03-16 22:12:56 +01:00
public function calcGatewayFee($gatewayTypeId = false, $includeTax = false)
2017-03-15 16:24:01 +01:00
{
2017-03-16 15:03:17 +01:00
$account = $this->account;
$settings = $account->getGatewaySettings($gatewayTypeId);
2017-03-15 16:24:01 +01:00
$fee = 0;
if (! $account->gateway_fee_enabled) {
2017-03-15 16:24:01 +01:00
return false;
}
if ($settings->fee_amount) {
$fee += $settings->fee_amount;
}
if ($settings->fee_percent) {
2017-03-17 14:16:30 +01:00
$amount = $this->partial > 0 ? $this->partial : $this->balance;
2017-03-16 18:18:14 +01:00
$fee += $amount * $settings->fee_percent / 100;
2017-03-15 16:24:01 +01:00
}
2017-03-16 22:12:56 +01:00
// calculate final amount with tax
2017-03-17 13:55:15 +01:00
if ($includeTax) {
$preTaxFee = $fee;
if ($settings->fee_tax_rate1) {
$fee += $preTaxFee * $settings->fee_tax_rate1 / 100;
}
if ($settings->fee_tax_rate2) {
$fee += $preTaxFee * $settings->fee_tax_rate2 / 100;
2017-03-16 22:12:56 +01:00
}
}
2017-03-17 13:55:15 +01:00
return round($fee, 2);
}
2017-03-15 16:24:01 +01:00
2017-03-17 13:55:15 +01:00
public function getGatewayFee()
{
$account = $this->account;
2017-03-15 16:24:01 +01:00
if (! $account->gateway_fee_enabled) {
2017-03-17 13:55:15 +01:00
return 0;
2017-03-15 16:24:01 +01:00
}
$item = $this->getGatewayFeeItem();
return $item ? $item->amount() : 0;
2017-03-15 16:24:01 +01:00
}
2017-03-17 11:47:17 +01:00
public function getGatewayFeeItem()
{
if (! $this->relationLoaded('invoice_items')) {
$this->load('invoice_items');
}
foreach ($this->invoice_items as $item) {
if ($item->invoice_item_type_id == INVOICE_ITEM_TYPE_PENDING_GATEWAY_FEE) {
return $item;
}
}
return false;
}
2017-03-15 16:24:01 +01:00
}