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

refactor: phpstan fixes

Übergeordneter 8a29edb6
No related branches found
No related tags found
2 Merge Requests!87Next 2.x,!80Update 'next-3.x' with latest changes from 'main'
Pipeline #13625 bestanden mit Phase
in 2 Minuten und 25 Sekunden
......@@ -458,7 +458,7 @@ protected static function verificateField(
*/
public static function getInvoiceFilename(
QUI\ERP\Accounting\Invoice\Invoice|InvoiceTemporary $Invoice,
QUI\Locale $Locale = null
?QUI\Locale $Locale = null
): string {
if (
!($Invoice instanceof QUI\ERP\Accounting\Invoice\Invoice) &&
......@@ -525,7 +525,7 @@ public static function getInvoiceFilename(
*/
public static function roundInvoiceSum(
float|int $amount,
QUI\ERP\Currency\Currency $Currency = null
?QUI\ERP\Currency\Currency $Currency = null
): float|int {
if ($Currency === null) {
$Currency = QUI\ERP\Defaults::getCurrency();
......@@ -858,25 +858,22 @@ public static function getElectronicInvoice(
}
// payment stuff
$PaymentDate = null;
try {
$timeForPayment = $Invoice->getAttribute('time_for_payment');
$timeForPayment = strtotime($timeForPayment);
if ($timeForPayment) {
$timeForPayment = new DateTime((int)$timeForPayment);
}
if (!($timeForPayment instanceof DateTime)) {
$timeForPayment = null;
$PaymentDate = new DateTime();
$PaymentDate->setTimestamp($timeForPayment);
}
} catch (\Exception) {
$timeForPayment = null;
}
$document->addDocumentPaymentTerm(
$Invoice->getAttribute('additional_invoice_text'),
$timeForPayment
$PaymentDate
);
return $document;
......
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