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 @@
use QUI\ERP\Accounting\Invoice\Handler;
use QUI\ERP\Accounting\Invoice\Utils\Invoice as InvoiceUtils;
use horstoeko\zugferd\ZugferdProfiles;
use QUI\ERP\Output\Output;
use QUI\ERP\Defaults;
use QUI\System\Log;
use Symfony\Component\HttpFoundation\Response;
define('QUIQQER_SYSTEM', true);
......@@ -43,25 +44,42 @@
];
try {
$Invoice = Handler::getInstance()->getInvoiceByHash($invoiceHash);
$fileName = InvoiceUtils::getInvoiceFilename($Invoice);
if ($type === 'PDF') {
$OutputDocument = Output::getDocumentPdf(
$invoiceHash,
QUI\ERP\Accounting\Invoice\Output\OutputProviderInvoice::getEntityType()
);
$defaultTemplates = Defaults::conf('output', 'default_templates');
$defaultTemplates = json_decode($defaultTemplates, true);
$OutputDocument->download();
exit;
}
$templateProvider = '';
$templateId = '';
$Invoice = Handler::getInstance()->getInvoiceByHash($invoiceHash);
$document = InvoiceUtils::getElectronicInvoice($Invoice, $profileMap[$type]);
$xmlContent = $document->getContent();
$fileName = InvoiceUtils::getInvoiceFilename($Invoice);
if (!empty($defaultTemplates['Invoice'])) {
$templateProvider = $defaultTemplates['Invoice']['provider'];
$templateId = $defaultTemplates['Invoice']['id'];
}
$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);
$response->headers->set('Content-Type', 'application/xml');
$response->headers->set('Content-Disposition', 'attachment; filename="'. $fileName . '.xml"');
$response->headers->set('Content-Length', strlen($xmlContent));
$response->send();
include dirname(__FILE__, 4) . '/erp/bin/output/backend/download.php';
} else {
$document = InvoiceUtils::getElectronicInvoice($Invoice, $profileMap[$type]);
$content = $document->getContent();
$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) {
Log::writeException($e);
}
......@@ -403,7 +403,7 @@ define('package/quiqqer/invoice/bin/backend/utils/Dialogs', [
}).inject(document.body);
(function () {
document.getElements('#' + id).destroy();
//document.getElements('#' + id).destroy();
}).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