Skip to content
Code-Schnipsel Gruppen Projekte
Commit 7397935f erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

fix: pdf download

Übergeordneter 0501a860
No related branches found
No related tags found
3 Merge Requests!85Next 2.x,!84Feat e rechnung,!80Update 'next-3.x' with latest changes from 'main'
Pipeline #13320 bestanden mit Phase
in 2 Minuten und 31 Sekunden
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
use QUI\ERP\Accounting\Invoice\Handler; use QUI\ERP\Accounting\Invoice\Handler;
use QUI\ERP\Accounting\Invoice\Utils\Invoice as InvoiceUtils; use QUI\ERP\Accounting\Invoice\Utils\Invoice as InvoiceUtils;
use horstoeko\zugferd\ZugferdProfiles; use horstoeko\zugferd\ZugferdProfiles;
use QUI\ERP\Output\Output; use QUI\ERP\Defaults;
use QUI\System\Log;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
define('QUIQQER_SYSTEM', true); define('QUIQQER_SYSTEM', true);
...@@ -43,25 +44,42 @@ ...@@ -43,25 +44,42 @@
]; ];
try { try {
$Invoice = Handler::getInstance()->getInvoiceByHash($invoiceHash);
$fileName = InvoiceUtils::getInvoiceFilename($Invoice);
if ($type === 'PDF') { if ($type === 'PDF') {
$OutputDocument = Output::getDocumentPdf( $defaultTemplates = Defaults::conf('output', 'default_templates');
$invoiceHash, $defaultTemplates = json_decode($defaultTemplates, true);
QUI\ERP\Accounting\Invoice\Output\OutputProviderInvoice::getEntityType()
);
$OutputDocument->download(); $templateProvider = '';
exit; $templateId = '';
}
$Invoice = Handler::getInstance()->getInvoiceByHash($invoiceHash); if (!empty($defaultTemplates['Invoice'])) {
$document = InvoiceUtils::getElectronicInvoice($Invoice, $profileMap[$type]); $templateProvider = $defaultTemplates['Invoice']['provider'];
$xmlContent = $document->getContent(); $templateId = $defaultTemplates['Invoice']['id'];
$fileName = InvoiceUtils::getInvoiceFilename($Invoice); }
$Request = QUI::getRequest();
$Request->query->set('id', $invoiceHash);
$Request->query->set('t', 'Invoice');
$Request->query->set('ep', 'quiqqer/invoice');
$Request->query->set('tpl', $templateId);
$Request->query->set('tplpr', $templateProvider);
$response = new Response($xmlContent); include dirname(__FILE__, 4) . '/erp/bin/output/backend/download.php';
$response->headers->set('Content-Type', 'application/xml'); } else {
$response->headers->set('Content-Disposition', 'attachment; filename="'. $fileName . '.xml"'); $document = InvoiceUtils::getElectronicInvoice($Invoice, $profileMap[$type]);
$response->headers->set('Content-Length', strlen($xmlContent)); $content = $document->getContent();
$response->send(); $contentType = 'application/xml';
$fileName .= '.xml';
$response = new Response($content);
$response->headers->set('Content-Type', $contentType);
$response->headers->set('Content-Disposition', 'attachment; filename="' . $fileName . '"');
$response->headers->set('Content-Length', strlen($content));
$response->send();
}
} catch (Exception $e) { } catch (Exception $e) {
Log::writeException($e);
} }
...@@ -403,7 +403,7 @@ define('package/quiqqer/invoice/bin/backend/utils/Dialogs', [ ...@@ -403,7 +403,7 @@ define('package/quiqqer/invoice/bin/backend/utils/Dialogs', [
}).inject(document.body); }).inject(document.body);
(function () { (function () {
document.getElements('#' + id).destroy(); //document.getElements('#' + id).destroy();
}).delay(1000, this); }).delay(1000, this);
}); });
}); });
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren