mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
146 lines
4.3 KiB
PHP
146 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Helpers\SwissQr;
|
|
|
|
use App\Models\Client;
|
|
use App\Models\Company;
|
|
use App\Models\Invoice;
|
|
use Sprain\SwissQrBill as QrBill;
|
|
|
|
/**
|
|
* SwissQrGenerator.
|
|
*/
|
|
class SwissQrGenerator
|
|
{
|
|
|
|
protected Company $company;
|
|
|
|
protected Invoice $invoice;
|
|
|
|
protected Client $client;
|
|
|
|
public function __construct(Invoice $invoice, Company $company)
|
|
{
|
|
$this->company = $company;
|
|
|
|
$this->invoice = $invoice;
|
|
|
|
$this->client = $invoice->client;
|
|
}
|
|
|
|
private function calcDueAmount()
|
|
{
|
|
if($this->invoice->partial > 0)
|
|
return $this->invoice->partial;
|
|
|
|
if($this->invoice->status_id == Invoice::STATUS_DRAFT)
|
|
return $this->invoice->amount;
|
|
|
|
return $this->invoice->balance;
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
|
|
// This is an example how to create a typical qr bill:
|
|
// - with reference number
|
|
// - with known debtor
|
|
// - with specified amount
|
|
// - with human-readable additional information
|
|
// - using your QR-IBAN
|
|
//
|
|
// Likely the most common use-case in the business world.
|
|
|
|
// Create a new instance of QrBill, containing default headers with fixed values
|
|
$qrBill = QrBill\QrBill::create();
|
|
|
|
|
|
// Add creditor information
|
|
// Who will receive the payment and to which bank account?
|
|
$qrBill->setCreditor(
|
|
QrBill\DataGroup\Element\CombinedAddress::create(
|
|
$this->company->present()->name(),
|
|
$this->company->present()->address1(),
|
|
$this->company->present()->getCompanyCityState(),
|
|
'CH'
|
|
));
|
|
|
|
$qrBill->setCreditorInformation(
|
|
QrBill\DataGroup\Element\CreditorInformation::create(
|
|
$this->company->present()->qr_iban() ?: '' // This is a special QR-IBAN. Classic IBANs will not be valid here.
|
|
));
|
|
|
|
// Add debtor information
|
|
// Who has to pay the invoice? This part is optional.
|
|
//
|
|
// Notice how you can use two different styles of addresses: CombinedAddress or StructuredAddress
|
|
// They are interchangeable for creditor as well as debtor.
|
|
$qrBill->setUltimateDebtor(
|
|
QrBill\DataGroup\Element\StructuredAddress::createWithStreet(
|
|
$this->client->present()->name(),
|
|
$this->client->address1 ?: '',
|
|
$this->client->address2 ?: '',
|
|
$this->client->postal_code ?: '',
|
|
$this->client->city ?: '',
|
|
'CH'
|
|
));
|
|
|
|
// Add payment amount information
|
|
// What amount is to be paid?
|
|
$qrBill->setPaymentAmountInformation(
|
|
QrBill\DataGroup\Element\PaymentAmountInformation::create(
|
|
'CHF',
|
|
$this->calcDueAmount()
|
|
));
|
|
|
|
// Add payment reference
|
|
// This is what you will need to identify incoming payments.
|
|
$referenceNumber = QrBill\Reference\QrPaymentReferenceGenerator::generate(
|
|
$this->company->present()->besr_id() ?: '', // You receive this number from your bank (BESR-ID). Unless your bank is PostFinance, in that case use NULL.
|
|
$this->invoice->number // A number to match the payment with your internal data, e.g. an invoice number
|
|
);
|
|
|
|
$qrBill->setPaymentReference(
|
|
QrBill\DataGroup\Element\PaymentReference::create(
|
|
QrBill\DataGroup\Element\PaymentReference::TYPE_QR,
|
|
$referenceNumber
|
|
));
|
|
|
|
// Optionally, add some human-readable information about what the bill is for.
|
|
$qrBill->setAdditionalInformation(
|
|
QrBill\DataGroup\Element\AdditionalInformation::create(
|
|
$this->invoice->public_notes ?: ''
|
|
)
|
|
);
|
|
|
|
|
|
// Now get the QR code image and save it as a file.
|
|
try {
|
|
// $qrBill->getQrCode()->writeFile(__DIR__ . '/qr.png');
|
|
// $qrBill->getQrCode()->writeFile(__DIR__ . '/qr.svg');
|
|
} catch (\Exception $e) {
|
|
foreach($qrBill->getViolations() as $key => $violation) {
|
|
}
|
|
|
|
// return $e->getMessage();
|
|
}
|
|
|
|
$output = new QrBill\PaymentPart\Output\HtmlOutput\HtmlOutput($qrBill, 'en');
|
|
|
|
$html = $output
|
|
->setPrintable(false)
|
|
->getPaymentPart();
|
|
|
|
return $html;
|
|
}
|
|
|
|
} |