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
171bc030
Commit
171bc030
erstellt
vor 3 Monaten
von
Henning Leutz
Dateien durchsuchen
Optionen
Downloads
Patches
Einfaches Diff
style: psr12 code style
Übergeordneter
9cf11171
No related branches found
Branches enthält Commit
No related tags found
Tags enthält Commit
2 Merge Requests
!87
Next 2.x
,
!80
Update 'next-3.x' with latest changes from 'main'
Pipeline
#13623
mit Warnungen bestanden mit Phase
Phase:
in 2 Minuten und 23 Sekunden
Änderungen
2
Pipelines
1
Leerzeichenänderungen ausblenden
Inline
Nebeneinander
2 geänderte Dateien
src/QUI/ERP/Accounting/Invoice/EventHandler.php
+6
-10
6 Ergänzungen, 10 Löschungen
src/QUI/ERP/Accounting/Invoice/EventHandler.php
src/QUI/ERP/Accounting/Invoice/Utils/Invoice.php
+9
-14
9 Ergänzungen, 14 Löschungen
src/QUI/ERP/Accounting/Invoice/Utils/Invoice.php
werden angezeigt
mit
15 Ergänzungen
und
24 Löschungen
src/QUI/ERP/Accounting/Invoice/EventHandler.php
+
6
−
10
Zeige Datei @
171bc030
...
...
@@ -243,10 +243,9 @@ public static function onUserSaveBegin(QUI\Users\User $User): void
* @param QUI\ERP\Comments $Comments
*/
public
static
function
onQuiqqerErpGetCommentsByUser
(
QUI
\Users\User
$User
,
QUI
\Users\User
$User
,
QUI
\ERP\Comments
$Comments
):
void
{
):
void
{
$Handler
=
Handler
::
getInstance
();
$invoices
=
$Handler
->
getInvoicesByUser
(
$User
);
...
...
@@ -262,10 +261,9 @@ public static function onQuiqqerErpGetCommentsByUser(
* @param QUI\ERP\Comments $Comments
*/
public
static
function
onQuiqqerErpGetHistoryByUser
(
QUI
\Users\User
$User
,
QUI
\Users\User
$User
,
QUI
\ERP\Comments
$Comments
):
void
{
):
void
{
$Handler
=
Handler
::
getInstance
();
$invoices
=
$Handler
->
getInvoicesByUser
(
$User
);
...
...
@@ -306,8 +304,7 @@ public static function onQuiqqerErpOutputSendMailBefore(
string
$recipient
,
QUI
\Mail\Mailer
$Mailer
,
string
$mailFile
=
''
):
void
{
):
void
{
$allowedEntityTypes
=
[
OutputProviderInvoice
::
getEntityType
(),
OutputProviderCancelled
::
getEntityType
(),
...
...
@@ -362,7 +359,7 @@ public static function onQuiqqerErpOutputSendMailBefore(
public
static
function
onQuiqqerHtmlToPDFCreated
(
QUI
\HtmlToPdf\Document
$Document
,
$filename
):
void
{
$Entity
=
$Document
->
getAttribute
(
'Entity'
);
if
(
!
(
$Entity
instanceof
Invoice
))
{
return
;
}
...
...
@@ -378,7 +375,6 @@ public static function onQuiqqerHtmlToPDFCreated(QUI\HtmlToPdf\Document $Documen
$pdfBuilder
=
new
ZugferdDocumentPdfBuilder
(
$document
,
$filename
);
$pdfBuilder
->
generateDocument
()
->
saveDocument
(
$filename
);
}
}
/**
...
...
This diff is collapsed.
Zum Erweitern klicken.
src/QUI/ERP/Accounting/Invoice/Utils/Invoice.php
+
9
−
14
Zeige Datei @
171bc030
...
...
@@ -441,8 +441,7 @@ protected static function verificateField(
array
|
string
$eMessage
=
'Error occurred'
,
int
$eCode
=
0
,
array
$eContext
=
[]
):
void
{
):
void
{
if
(
empty
(
$value
))
{
throw
new
Exception
(
$eMessage
,
$eCode
,
$eContext
);
}
...
...
@@ -459,9 +458,8 @@ protected static function verificateField(
*/
public
static
function
getInvoiceFilename
(
QUI
\ERP\Accounting\Invoice\Invoice
|
InvoiceTemporary
$Invoice
,
QUI
\Locale
$Locale
=
null
):
string
{
QUI
\Locale
$Locale
=
null
):
string
{
if
(
!
(
$Invoice
instanceof
QUI\ERP\Accounting\Invoice\Invoice
)
&&
!
(
$Invoice
instanceof
QUI\ERP\Accounting\Invoice\InvoiceTemporary
)
...
...
@@ -526,10 +524,9 @@ public static function getInvoiceFilename(
* @return int|float
*/
public
static
function
roundInvoiceSum
(
float
|
int
$amount
,
float
|
int
$amount
,
QUI
\ERP\Currency\Currency
$Currency
=
null
):
float
|
int
{
):
float
|
int
{
if
(
$Currency
===
null
)
{
$Currency
=
QUI\ERP\Defaults
::
getCurrency
();
...
...
@@ -570,10 +567,9 @@ public static function getInvoiceTimeForPaymentDate(InvoiceTemporary|Invoice $In
* @return array
*/
public
static
function
getVatTextArrayFromVatArray
(
array
|
string
$vatArray
,
array
|
string
$vatArray
,
QUI
\ERP\Currency\Currency
$Currency
):
array
{
):
array
{
if
(
is_string
(
$vatArray
))
{
$vatArray
=
json_decode
(
$vatArray
,
true
);
}
...
...
@@ -676,9 +672,8 @@ public static function addressRequirementThreshold(): float
public
static
function
getElectronicInvoice
(
InvoiceTemporary
|
QUI\ERP\Accounting\Invoice\Invoice
$Invoice
,
$type
=
ZugferdProfiles
::
PROFILE_EN16931
):
ZugferdDocumentBuilder
{
$type
=
ZugferdProfiles
::
PROFILE_EN16931
):
ZugferdDocumentBuilder
{
$document
=
ZugferdDocumentBuilder
::
CreateNew
(
$type
);
$date
=
$Invoice
->
getAttribute
(
'date'
);
...
...
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