diff --git a/app/Helpers/Epc/EpcQrGenerator.php b/app/Helpers/Epc/EpcQrGenerator.php index 1bfbff2f95..b608466f35 100644 --- a/app/Helpers/Epc/EpcQrGenerator.php +++ b/app/Helpers/Epc/EpcQrGenerator.php @@ -13,6 +13,7 @@ namespace App\Helpers\Epc; use App\Models\Company; use App\Models\Invoice; +use App\Models\RecurringInvoice; use App\Utils\Ninja; use BaconQrCode\Renderer\ImageRenderer; use BaconQrCode\Renderer\Image\SvgImageBackEnd; @@ -35,7 +36,7 @@ class EpcQrGenerator ]; - public function __construct(protected Company $company, protected Invoice $invoice, protected float $amount){} + public function __construct(protected Company $company, protected Invoice|RecurringInvoice $invoice, protected float $amount){} public function getQrCode() { diff --git a/app/Utils/HtmlEngine.php b/app/Utils/HtmlEngine.php index f1958ef621..d663dd0dfa 100644 --- a/app/Utils/HtmlEngine.php +++ b/app/Utils/HtmlEngine.php @@ -596,7 +596,7 @@ class HtmlEngine $data['$payments'] = ['value' => $payment_list, 'label' => ctrans('texts.payments')]; } - if($this->entity_string == 'invoice' && isset($this->company?->custom_fields?->company1)) + if(($this->entity_string == 'invoice' || $this->entity_string == 'recurring_invoice') && isset($this->company?->custom_fields?->company1)) { $data['$sepa_qr_code'] = ['value' => (new EpcQrGenerator($this->company, $this->entity,$data['$amount_raw']['value']))->getQrCode(), 'label' => '']; }