1. Go to this page and download the library: Download rshop/superfaktura library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rshop / superfaktura example snippets
use Rshop\Synchronization\Superfaktura;
$superfaktura = new Superfaktura('EMAIL', 'API_KEY');
$invoice = $superfaktura->createInvoice([
'name' => 'Názov faktúry',
'invoice_no_formatted' => '12345'
]);
// parametre je možné nastaviť aj zadaním požadovaného atribútu
$invoice['already_paid'] = true;
$invoice->setClient([
'name' => 'Meno zákazníka'
]);
// parametre je možné nastaviť aj zadaním požadovaného atribútu
$client = $invoice->getClient();
$client['city'] = 'Mesto';
try {
$invoice->save();
// $invoice obsahuje všetky parametre uloženej faktúry
var_dump($invoice['token'], $invoice->getSummary());
}
catch (Exception $e) {
// chyby, ktoré nastali pri komunikácii, je možné získať metódou getErrors
var_dump($e->getErrors());
}
$invoice = $superfaktura->getInvoice(616575);
// zmena variabilného symbolu faktúry
$invoice['variable'] = '12345';
// pridanie položky
$invoice->addItem([
'name' => 'Názov pridávanej položky',
'quantity' => 2,
'unit_price' => 5.11,
'tax' => 20
]);
try {
$invoice->save();
// $invoice obsahuje všetky parametre uloženej faktúry
var_dump($invoice['token'], $invoice->getSummary());
}
catch (Exception $e) {
// chyby, ktoré nastali pri komunikácii, je možné získať metódou getErrors
var_dump($e->getErrors());
}