Skip to content
GitLab
Erkunden
Anmelden
Registrieren
Primärnavigation
Suchen oder aufrufen …
Projekt
invoice
Verwalten
Aktivität
Mitglieder
Labels
Planen
Tickets
18
Ticketübersichten
Meilensteine
Wiki
Code
Merge Requests
0
Repository
Branch
Commits
Tags
Repository-Diagramm
Revisionen vergleichen
Build
Pipelines
Aufgaben
Pipeline-Zeitpläne
Artefakte
Bereitstellung
Releases
Betreiben
Umgebungen
Überwachen
Vorfälle
Service-Desk
Analysieren
Wertschöpfungskettenanalyse
Mitwirkenden-Analyse
CI/CD-Analyse
Repository-Analysen
Hilfe
Hilfe
Support
GitLab-Dokumentation
GitLab-Pläne vergleichen
Community-Forum
Zu GitLab beitragen
Feedback geben
Tastenkürzel
?
Code-Schnipsel
Gruppen
Projekte
Show more breadcrumbs
QUIQQER
invoice
Commits
7397935f
Commit
7397935f
erstellt
vor 3 Monaten
von
Henning Leutz
Dateien durchsuchen
Optionen
Downloads
Patches
Einfaches Diff
fix: pdf download
Übergeordneter
0501a860
No related branches found
Branches enthält Commit
No related tags found
Tags enthält Commit
3 Merge Requests
!85
Next 2.x
,
!84
Feat e rechnung
,
!80
Update 'next-3.x' with latest changes from 'main'
Pipeline
#13320
bestanden mit Phase
in 2 Minuten und 31 Sekunden
Änderungen
2
Pipelines
1
Leerzeichenänderungen ausblenden
Inline
Nebeneinander
2 geänderte Dateien
bin/backend/download.php
+35
-17
35 Ergänzungen, 17 Löschungen
bin/backend/download.php
bin/backend/utils/Dialogs.js
+1
-1
1 Ergänzung, 1 Löschung
bin/backend/utils/Dialogs.js
werden angezeigt
mit
36 Ergänzungen
und
18 Löschungen
bin/backend/download.php
+
35
−
17
Zeige Datei @
7397935f
...
@@ -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
);
}
}
This diff is collapsed.
Zum Erweitern klicken.
bin/backend/utils/Dialogs.js
+
1
−
1
Zeige Datei @
7397935f
...
@@ -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
);
});
});
});
});
...
...
This diff is collapsed.
Zum Erweitern klicken.
Vorschau
0%
Wiederholen
oder
Neue Datei anhängen
.
Abbrechen
You are about to add
0
people
to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Kommentar speichern
Abbrechen
Bitte
registrieren
oder
Anmelden
zum Kommentieren