2020-08-25 15:06:38 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-08-25 15:06:38 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-08-25 15:06:38 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-08-25 15:06:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Invoice;
|
|
|
|
|
|
|
|
use App\DataMapper\InvoiceItem;
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\CompanyGateway;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Services\AbstractService;
|
2021-12-10 11:50:46 +01:00
|
|
|
use App\Utils\Ninja;
|
|
|
|
use Illuminate\Support\Facades\App;
|
2020-08-25 15:06:38 +02:00
|
|
|
|
|
|
|
class AddGatewayFee extends AbstractService
|
|
|
|
{
|
|
|
|
private $company_gateway;
|
|
|
|
|
2021-12-28 11:34:53 +01:00
|
|
|
public $invoice;
|
2020-08-25 15:06:38 +02:00
|
|
|
|
|
|
|
private $amount;
|
|
|
|
|
2020-10-12 11:38:55 +02:00
|
|
|
private $gateway_type_id;
|
|
|
|
|
|
|
|
public function __construct(CompanyGateway $company_gateway, int $gateway_type_id, Invoice $invoice, float $amount)
|
2020-08-25 15:06:38 +02:00
|
|
|
{
|
|
|
|
$this->company_gateway = $company_gateway;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-08-25 15:06:38 +02:00
|
|
|
$this->invoice = $invoice;
|
|
|
|
|
|
|
|
$this->amount = $amount;
|
2020-10-12 11:38:55 +02:00
|
|
|
|
|
|
|
$this->gateway_type_id = $gateway_type_id;
|
2020-08-25 15:06:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function run()
|
|
|
|
{
|
2021-01-04 14:07:50 +01:00
|
|
|
$gateway_fee = round($this->company_gateway->calcGatewayFee($this->amount, $this->gateway_type_id, $this->invoice->uses_inclusive_taxes), $this->invoice->client->currency()->precision);
|
2020-08-25 15:06:38 +02:00
|
|
|
|
2021-05-16 00:18:43 +02:00
|
|
|
if (!$gateway_fee)
|
2020-10-12 01:27:38 +02:00
|
|
|
return $this->invoice;
|
2020-10-10 12:57:28 +02:00
|
|
|
|
2021-01-17 10:35:01 +01:00
|
|
|
// Removes existing stale gateway fees
|
2020-08-26 00:10:49 +02:00
|
|
|
$this->cleanPendingGatewayFees();
|
|
|
|
|
2021-01-17 10:35:01 +01:00
|
|
|
// If a gateway fee is > 0 insert the line item
|
|
|
|
if ($gateway_fee > 0)
|
2020-08-25 15:06:38 +02:00
|
|
|
return $this->processGatewayFee($gateway_fee);
|
2021-01-17 10:35:01 +01:00
|
|
|
|
|
|
|
// If we have reached this far, then we are apply a gateway discount
|
2020-08-25 15:06:38 +02:00
|
|
|
return $this->processGatewayDiscount($gateway_fee);
|
|
|
|
}
|
|
|
|
|
2020-08-26 00:10:49 +02:00
|
|
|
private function cleanPendingGatewayFees()
|
|
|
|
{
|
2021-12-28 11:34:53 +01:00
|
|
|
$invoice_items = (array)$this->invoice->line_items;
|
2020-08-26 00:10:49 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$invoice_items = collect($invoice_items)->filter(function ($item) {
|
2020-08-31 04:00:43 +02:00
|
|
|
return $item->type_id != '3';
|
2020-08-26 00:10:49 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$this->invoice->line_items = $invoice_items;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2020-08-25 15:06:38 +02:00
|
|
|
private function processGatewayFee($gateway_fee)
|
|
|
|
{
|
2022-03-24 03:11:09 +01:00
|
|
|
$balance = $this->invoice->balance;
|
|
|
|
|
2021-12-10 11:50:46 +01:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
|
|
|
$t->replace(Ninja::transformTranslations($this->invoice->company->settings));
|
2021-12-14 12:02:53 +01:00
|
|
|
App::setLocale($this->invoice->client->locale());
|
2021-12-10 11:50:46 +01:00
|
|
|
|
2020-08-25 15:06:38 +02:00
|
|
|
$invoice_item = new InvoiceItem;
|
2020-08-31 04:00:43 +02:00
|
|
|
$invoice_item->type_id = '3';
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_item->product_key = ctrans('texts.surcharge');
|
|
|
|
$invoice_item->notes = ctrans('texts.online_payment_surcharge');
|
|
|
|
$invoice_item->quantity = 1;
|
|
|
|
$invoice_item->cost = $gateway_fee;
|
|
|
|
|
2020-10-12 11:38:55 +02:00
|
|
|
if ($fees_and_limits = $this->company_gateway->getFeesAndLimits($this->gateway_type_id)) {
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_item->tax_rate1 = $fees_and_limits->fee_tax_rate1;
|
|
|
|
$invoice_item->tax_rate2 = $fees_and_limits->fee_tax_rate2;
|
|
|
|
$invoice_item->tax_rate3 = $fees_and_limits->fee_tax_rate3;
|
|
|
|
}
|
|
|
|
|
2021-12-28 11:34:53 +01:00
|
|
|
$invoice_items = (array)$this->invoice->line_items;
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_items[] = $invoice_item;
|
|
|
|
|
|
|
|
$this->invoice->line_items = $invoice_items;
|
|
|
|
|
2020-08-30 12:47:32 +02:00
|
|
|
/**Refresh Invoice values*/
|
2020-08-26 00:10:49 +02:00
|
|
|
$this->invoice = $this->invoice->calc()->getInvoice();
|
|
|
|
|
2022-03-24 03:11:09 +01:00
|
|
|
$new_balance = $this->invoice->balance;
|
|
|
|
|
|
|
|
if(floatval($new_balance) - floatval($balance) != 0)
|
|
|
|
{
|
|
|
|
$adjustment = $new_balance - $balance;
|
|
|
|
|
|
|
|
$this->invoice
|
|
|
|
->client
|
|
|
|
->service()
|
|
|
|
->updateBalance($adjustment)
|
|
|
|
->save();
|
|
|
|
|
|
|
|
$this->invoice
|
|
|
|
->ledger()
|
|
|
|
->updateInvoiceBalance($adjustment, 'Adjustment for removing gateway fee');
|
|
|
|
}
|
|
|
|
|
2020-08-26 00:10:49 +02:00
|
|
|
return $this->invoice;
|
2020-08-25 15:06:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function processGatewayDiscount($gateway_fee)
|
|
|
|
{
|
2022-03-24 03:11:09 +01:00
|
|
|
$balance = $this->invoice->balance;
|
|
|
|
|
2021-12-10 11:50:46 +01:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
|
|
|
$t->replace(Ninja::transformTranslations($this->invoice->company->settings));
|
|
|
|
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_item = new InvoiceItem;
|
2020-08-31 04:00:43 +02:00
|
|
|
$invoice_item->type_id = '3';
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_item->product_key = ctrans('texts.discount');
|
|
|
|
$invoice_item->notes = ctrans('texts.online_payment_discount');
|
|
|
|
$invoice_item->quantity = 1;
|
|
|
|
$invoice_item->cost = $gateway_fee;
|
|
|
|
|
2021-12-02 21:01:13 +01:00
|
|
|
if ($fees_and_limits = $this->company_gateway->getFeesAndLimits($this->gateway_type_id)) {
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_item->tax_rate1 = $fees_and_limits->fee_tax_rate1;
|
|
|
|
$invoice_item->tax_rate2 = $fees_and_limits->fee_tax_rate2;
|
|
|
|
$invoice_item->tax_rate3 = $fees_and_limits->fee_tax_rate3;
|
|
|
|
}
|
|
|
|
|
2021-12-28 11:34:53 +01:00
|
|
|
$invoice_items = (array)$this->invoice->line_items;
|
2020-08-26 00:10:49 +02:00
|
|
|
$invoice_items[] = $invoice_item;
|
|
|
|
|
|
|
|
$this->invoice->line_items = $invoice_items;
|
|
|
|
|
|
|
|
$this->invoice = $this->invoice->calc()->getInvoice();
|
|
|
|
|
2022-03-24 03:11:09 +01:00
|
|
|
$new_balance = $this->invoice->balance;
|
|
|
|
|
|
|
|
|
|
|
|
if(floatval($new_balance) - floatval($balance) != 0)
|
|
|
|
{
|
|
|
|
$adjustment = $new_balance - $balance;
|
|
|
|
|
|
|
|
$this->invoice
|
|
|
|
->client
|
|
|
|
->service()
|
|
|
|
->updateBalance($adjustment * -1)
|
|
|
|
->save();
|
|
|
|
|
|
|
|
$this->invoice
|
|
|
|
->ledger()
|
|
|
|
->updateInvoiceBalance($adjustment * -1, 'Adjustment for removing gateway fee');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-26 00:10:49 +02:00
|
|
|
return $this->invoice;
|
2020-08-25 15:06:38 +02:00
|
|
|
}
|
|
|
|
}
|