diff --git a/phpstan.dist.neon b/phpstan.dist.neon index fd54d2f839f763671fbc814621e23c9d0a1cb924..255fa86b89c4b3e84073f38e3ef65bb6bb192c3b 100644 --- a/phpstan.dist.neon +++ b/phpstan.dist.neon @@ -2,7 +2,7 @@ includes: - phpstan-baseline.neon parameters: - level: 1 + level: 5 paths: - src - ajax diff --git a/src/QUI/ERP/Accounting/Article.php b/src/QUI/ERP/Accounting/Article.php index 4536c3de8ba58ebb9657c4a226f92312c1c334d0..8cb1f637e7a398989c1f6bce50773eb756f64252 100644 --- a/src/QUI/ERP/Accounting/Article.php +++ b/src/QUI/ERP/Accounting/Article.php @@ -14,6 +14,7 @@ use function floatval; use function get_called_class; use function is_array; +use function method_exists; /** * Class Article @@ -348,7 +349,7 @@ public function getImage(): ?QUI\Projects\Media\Image QUI\System\Log::writeDebugException($Exception); } - if (!empty($Product)) { + if (!empty($Product) && method_exists($Product, 'getImage')) { try { return $Product->getImage(); } catch (QUI\Exception) { diff --git a/src/QUI/ERP/Accounting/ArticleDiscount.php b/src/QUI/ERP/Accounting/ArticleDiscount.php index 0079d1b64e6eac2489d13f721fba31725ec9b2c8..5af1e87f83288dc50afad8ef62f80e1ee020f358 100644 --- a/src/QUI/ERP/Accounting/ArticleDiscount.php +++ b/src/QUI/ERP/Accounting/ArticleDiscount.php @@ -15,6 +15,7 @@ use function is_numeric; use function json_decode; use function json_encode; +use function method_exists; use function str_replace; use function strpos; @@ -225,11 +226,11 @@ public function formatted(): string } if ($this->type === Calc::CALCULATION_COMPLEMENT) { - if ($this->Article && $this->Article->getUser()) { + if ($this->Article && method_exists($this->Article, 'getUser') && $this->Article->getUser()) { $User = $this->Article->getUser(); $isNetto = QUI\ERP\Utils\User::isNettoUser($User); - if (!$isNetto) { + if (!$isNetto && method_exists($this->Article, 'getVat')) { $value = $value * ($this->Article->getVat() / 100 + 1); } } diff --git a/src/QUI/ERP/Accounting/ArticleList.php b/src/QUI/ERP/Accounting/ArticleList.php index 23e64c0c4bde1a1a8a5aea76a4ad46a039b9ba7f..3409713d9404e31eb6a0e6f594689d658aa93048 100644 --- a/src/QUI/ERP/Accounting/ArticleList.php +++ b/src/QUI/ERP/Accounting/ArticleList.php @@ -325,9 +325,9 @@ public function toUniqueList(): ArticleListUnique } /** - * @param null $Calc + * @param ?QUI\ERP\Accounting\Calc $Calc */ - public function recalculate($Calc = null): void + public function recalculate(?QUI\ERP\Accounting\Calc $Calc = null): void { $this->calculated = false; @@ -341,10 +341,10 @@ public function recalculate($Calc = null): void } /** - * @param null $Calc $Calc + * @param null|QUI\ERP\Accounting\Calc $Calc $Calc * @return ArticleList */ - public function calc($Calc = null): ArticleList + public function calc(?QUI\ERP\Accounting\Calc $Calc = null): ArticleList { if ($this->calculated) { return $this; @@ -549,9 +549,12 @@ public function renderForMail(): string return $this->toUniqueList()->renderForMail(); } - public function toHTMLWithCSS(): string + public function toHTMLWithCSS( + bool|string $template = false, + bool|string $articleTemplate = false + ): string { - return $this->toUniqueList()->toHTMLWithCSS(); + return $this->toUniqueList()->toHTMLWithCSS($template, $articleTemplate); } //endregion diff --git a/src/QUI/ERP/Accounting/ArticleListUnique.php b/src/QUI/ERP/Accounting/ArticleListUnique.php index 8036b36dc4e5a92767e9b56547ac6003fe0855f0..05254629eb9d6fcc25c7514c72104b45052bb181 100644 --- a/src/QUI/ERP/Accounting/ArticleListUnique.php +++ b/src/QUI/ERP/Accounting/ArticleListUnique.php @@ -10,6 +10,7 @@ use IteratorAggregate; use QUI; use QUI\ERP\Accounting\PriceFactors\FactorList as ErpFactorList; +use QUI\Exception; use Traversable; use function array_map; @@ -232,9 +233,9 @@ protected function sortArticlesWithParents(array $articles = []): array * placeholder. unique list cant be recalculate * recalculate makes the unique article list compatible to the article list * - * @param $Calc + * @param ?QUI\ERP\Accounting\Calc $Calc */ - public function recalculate($Calc = null) + public function recalculate(?QUI\ERP\Accounting\Calc $Calc = null) { // placeholder. unique list cant be recalculate } @@ -243,10 +244,10 @@ public function recalculate($Calc = null) * placeholder. unique list cant be calc * calc makes the unique article list compatible to the article list * - * @param $Calc + * @param ?QUI\ERP\Accounting\Calc $Calc * @return ArticleListUnique */ - public function calc($Calc = null): ArticleListUnique + public function calc(?QUI\ERP\Accounting\Calc $Calc = null): ArticleListUnique { // placeholder. unique list cant be calc return $this; @@ -388,9 +389,10 @@ public function setExchangeRate(float $rate): void * Return the Article List as HTML, without CSS * * @param bool|string $template - custom template + * @param bool|string $articleTemplate * @return string * - * @throws QUI\Exception + * @throws Exception */ public function toHTML( bool|string $template = false, @@ -549,29 +551,39 @@ public function toMailHTML(): string /** * Return the Article List as HTML, with CSS * + * @param bool|string $template + * @param bool|string $articleTemplate * @return string * - * @throws QUI\Exception + * @throws Exception */ - public function toHTMLWithCSS(): string + public function toHTMLWithCSS( + bool|string $template = false, + bool|string $articleTemplate = false + ): string { $style = '<style>'; $style .= file_get_contents(dirname(__FILE__) . '/ArticleList.css'); $style .= '</style>'; - return $style . $this->toHTML(); + return $style . $this->toHTML($template, $articleTemplate); } /** * Alias for toHTMLWithCSS * + * @param bool|string $template + * @param bool|string $articleTemplate * @return string * - * @throws QUI\Exception + * @throws Exception */ - public function render(): string + public function render( + bool|string $template = false, + bool|string $articleTemplate = false + ): string { - return $this->toHTMLWithCSS(); + return $this->toHTMLWithCSS($template, $articleTemplate); } /** diff --git a/src/QUI/ERP/Accounting/Calc.php b/src/QUI/ERP/Accounting/Calc.php index 0edd55110802e4397a5f23f6b52e3a6db86c55f2..7d36657777a3777eac00d5952efcb641ea44c6b8 100644 --- a/src/QUI/ERP/Accounting/Calc.php +++ b/src/QUI/ERP/Accounting/Calc.php @@ -15,6 +15,8 @@ use QUI\ERP\Money\Price; use QUI\Interfaces\Users\User as UserInterface; +use QUI\Locale; + use function array_map; use function array_sum; use function class_exists; @@ -393,7 +395,7 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi $bruttoSum = round($bruttoSum, $precision); foreach ($vatLists as $vat => $bool) { - $vatText[(string)$vat] = self::getVatText($vat, $this->getUser()); + $vatText[(string)$vat] = self::getVatText((float)$vat, $this->getUser()); } // delete 0 % vat, 0% vat is allowed to calculate more easily @@ -460,7 +462,7 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi // works only for one vat entry if (count($vatArray) === 1) { $vat = key($vatArray); - $netto = $bruttoSum / ($vat / 100 + 1); + $netto = $bruttoSum / ((float)$vat / 100 + 1); $vatSum = $bruttoSum - $netto; $vatSum = round($vatSum, $Currency->getPrecision()); @@ -472,7 +474,7 @@ public function calcArticleList(ArticleList $List, $callback = false): ArticleLi } } - if ($bruttoSum === 0 || $nettoSum === 0) { + if (empty($bruttoSum) || empty($nettoSum)) { $bruttoSum = 0; $nettoSum = 0; @@ -647,7 +649,7 @@ public function calcArticlePrice(Article $Article, $callback = false) * Rounds the value via shop config * * @param string|int|float $value - * @return float|mixed + * @return float */ public function round($value): float { @@ -671,11 +673,11 @@ public function round($value): float * * @return string */ - public function getVatTextByUser() + public function getVatTextByUser(): string { try { $Tax = QUI\ERP\Tax\Utils::getTaxByUser($this->getUser()); - } catch (QUI\Exception $Exception) { + } catch (QUI\Exception) { return ''; } @@ -686,13 +688,13 @@ public function getVatTextByUser() * Return tax text * eq: incl or zzgl * - * @param integer $vat + * @param float|int $vat * @param UserInterface $User - * @param null|QUI\Locale $Locale - optional + * @param null|Locale $Locale - optional * - * @return array|string + * @return string */ - public static function getVatText(float $vat, UserInterface $User, QUI\Locale $Locale = null) + public static function getVatText(float|int $vat, UserInterface $User, QUI\Locale $Locale = null): string { if ($Locale === null) { $Locale = $User->getLocale(); @@ -1014,19 +1016,12 @@ public static function calculatePayments($ToCalculate): array * @param mixed $ToCalculate * @return bool */ - public static function isAllowedForCalculation($ToCalculate): bool + public static function isAllowedForCalculation(mixed $ToCalculate): bool { if ($ToCalculate instanceof QUI\ERP\ErpEntityInterface) { return true; } - if ( - class_exists('QUI\ERP\Purchasing\Processes\PurchasingProcess') - && $ToCalculate instanceof QUI\ERP\Purchasing\Processes\PurchasingProcess - ) { - return true; - } - return false; } diff --git a/src/QUI/ERP/Accounting/CalculationValue.php b/src/QUI/ERP/Accounting/CalculationValue.php index 7ae3ccc8517ddf945bdfc604b1f474e3658b2149..80017eb59713fe08fafd8440288aa3239d966b5a 100644 --- a/src/QUI/ERP/Accounting/CalculationValue.php +++ b/src/QUI/ERP/Accounting/CalculationValue.php @@ -19,19 +19,10 @@ */ class CalculationValue { - /** - * @var QUI\ERP\Currency\Currency - */ protected QUI\ERP\Currency\Currency $Currency; - /** - * @var int|float - */ protected int|float $number = 0; - /** - * @var int|string - */ protected int|float $precision = 8; /** diff --git a/src/QUI/ERP/EventHandler.php b/src/QUI/ERP/EventHandler.php index b5ea52220b7c56a010e52e99516272fa78e027e2..56e021c1f2a75babcde82ea9329429704e4c3c2c 100644 --- a/src/QUI/ERP/EventHandler.php +++ b/src/QUI/ERP/EventHandler.php @@ -153,7 +153,7 @@ public static function patchBankAccount(): void $companyName = $Conf->get('company', 'name'); if (empty($bankIban) || empty($bankBic) || empty($companyName)) { - $Conf->setValue('bankAccounts', 'isPatched', true); + $Conf->setValue('bankAccounts', 'isPatched', 1); $Conf->save(); return; @@ -188,7 +188,7 @@ public static function patchBankAccount(): void ); } - $Conf->setValue('bankAccounts', 'isPatched', true); + $Conf->setValue('bankAccounts', 'isPatched', 1); $Conf->save(); } diff --git a/src/QUI/ERP/Manufacturers.php b/src/QUI/ERP/Manufacturers.php index 14d634c8a57e604edac4cc96d467d5a5ebc5f361..33073a2773693f8cf6f72b8719251f3f5e993272 100644 --- a/src/QUI/ERP/Manufacturers.php +++ b/src/QUI/ERP/Manufacturers.php @@ -57,7 +57,6 @@ public static function getManufacturerGroupIds(): array } // If quiqqer/products is installed also check groups of default product field "Manufacturer" - /** @var QUI\ERP\Products\Field\Types\GroupList $ManufacturerField */ try { $ManufacturerField = Fields::getField(Fields::FIELD_MANUFACTURER); } catch (\Exception $Exception) { diff --git a/src/QUI/ERP/Output/Output.php b/src/QUI/ERP/Output/Output.php index 5f6fa76d5f897dc641bc6102573b54f761e27e8d..7c90d59bab61490b326a8ba2977975b6fcde450e 100644 --- a/src/QUI/ERP/Output/Output.php +++ b/src/QUI/ERP/Output/Output.php @@ -180,7 +180,7 @@ public static function getDocumentPdfDownloadUrl(int|string $entityId, string $e * @param string|null $recipientEmail (optional) * @param string|null $mailSubject (optional) * @param string|null $mailContent (optional) - * @param <QUI\Projects\Media\File|QUI\Projects\Media\Image>[] $attachedMediaFiles (optional) + * @param QUI\Projects\Media\File[]|QUI\Projects\Media\Image[] $attachedMediaFiles (optional) * * @return void * diff --git a/src/QUI/ERP/Processes.php b/src/QUI/ERP/Processes.php index 3311de6f4de5951694f400354ff00ea39fd1cc33..4ca0154089f198dde2ff5ada2c287ed25490a894 100644 --- a/src/QUI/ERP/Processes.php +++ b/src/QUI/ERP/Processes.php @@ -47,7 +47,10 @@ public function getEntity($entityHash, $entityPlugin = false): ErpEntityInterfac } } - if ($entityPlugin === false || $entityPlugin === 'quiqqer/contracts') { + if ( + ($entityPlugin === false || $entityPlugin === 'quiqqer/contracts') + && class_exists('QUI\ERP\Accounting\Contracts\Handler') + ) { try { return QUI\ERP\Accounting\Contracts\Handler::getInstance()->get($entityHash); } catch (\Exception) { @@ -61,28 +64,40 @@ public function getEntity($entityHash, $entityPlugin = false): ErpEntityInterfac } } - if ($entityPlugin === false || $entityPlugin === 'quiqqer/invoice') { + if ( + ($entityPlugin === false || $entityPlugin === 'quiqqer/invoice') + && class_exists('QUI\ERP\Accounting\Invoice\Handle') + ) { try { return QUI\ERP\Accounting\Invoice\Handler::getInstance()->getInvoiceByHash($entityHash); } catch (\Exception) { } } - if ($entityPlugin === false || $entityPlugin === 'quiqqer/offers') { + if ( + ($entityPlugin === false || $entityPlugin === 'quiqqer/offers') + && class_exists('QUI\ERP\Accounting\Offers\Handler') + ) { try { return QUI\ERP\Accounting\Offers\Handler::getInstance()->getOfferByHash($entityHash); } catch (\Exception) { } } - if ($entityPlugin === false || $entityPlugin === 'quiqqer/order') { + if ( + ($entityPlugin === false || $entityPlugin === 'quiqqer/order') + && class_exists('QUI\ERP\Order\Handler') + ) { try { return QUI\ERP\Order\Handler::getInstance()->getOrderByHash($entityHash); } catch (\Exception) { } } - if ($entityPlugin === false || $entityPlugin === 'quiqqer/purchasing') { + if ( + ($entityPlugin === false || $entityPlugin === 'quiqqer/purchasing') + && class_exists('QUI\ERP\Purchasing\Processes\Handler') + ) { try { return QUI\ERP\Purchasing\Processes\Handler::getPurchasingProcess($entityHash); } catch (\Exception) { @@ -94,7 +109,10 @@ public function getEntity($entityHash, $entityPlugin = false): ErpEntityInterfac } } - if ($entityPlugin === false || $entityPlugin === 'quiqqer/salesorders') { + if ( + ($entityPlugin === false || $entityPlugin === 'quiqqer/salesorders') + && class_exists('QUI\ERP\SalesOrders\Handler') + ) { try { return QUI\ERP\SalesOrders\Handler::getSalesOrderByHash($entityHash); } catch (\Exception) { diff --git a/src/QUI/ERP/User.php b/src/QUI/ERP/User.php index f18e7e342185eec7b217458f9a3e43b1b8915430..41f65d8fb110e27e5aa49157de1175b7adbb06b6 100644 --- a/src/QUI/ERP/User.php +++ b/src/QUI/ERP/User.php @@ -273,7 +273,6 @@ public static function convertUserDataToErpUser(array $user): User } /** - * @return int|false * @deprecated use getUUID() */ public function getId(): int|false @@ -282,7 +281,6 @@ public function getId(): int|false } /** - * @return string * @deprecated use getUUID() */ public function getUniqueId(): string @@ -290,17 +288,11 @@ public function getUniqueId(): string return $this->getUUID(); } - /** - * @return string - */ public function getUUID(): string { return $this->uuid; } - /** - * @return string - */ public function getName(): string { $Address = $this->getAddress(); @@ -342,8 +334,6 @@ public function getName(): string /** * Return the company if the customer has a company * if not, the user will be returned - * - * @return mixed */ public function getInvoiceName(): string { @@ -359,25 +349,16 @@ public function getInvoiceName(): string return $this->getName(); } - /** - * @return string - */ public function getUsername(): string { return $this->username; } - /** - * @return string - */ public function getLang(): string { return $this->lang; } - /** - * @return QUI\Locale - */ public function getLocale(): QUI\Locale { $Locale = new QUI\Locale(); @@ -386,9 +367,6 @@ public function getLocale(): QUI\Locale return $Locale; } - /** - * @return array - */ public function getAttributes(): array { $attributes = parent::getAttributes(); @@ -412,10 +390,6 @@ public function getAttributes(): array return $attributes; } - /** - * @param string $name - * @return string - */ public function getAttribute(string $name): mixed { return match ($name) { @@ -426,17 +400,11 @@ public function getAttribute(string $name): mixed }; } - /** - * @return mixed - */ public function getType(): string { return get_class($this); } - /** - * @return mixed - */ public function getStatus(): int { return 0; @@ -467,9 +435,6 @@ public function setAddress(QUI\Users\Address $Address): void $this->address = json_decode($Address->toJSON(), true); } - /** - * @return Country|bool - */ public function getCountry(): ?QUI\Countries\Country { if (!empty($this->address) && isset($this->address['country'])) { @@ -489,17 +454,11 @@ public function getCountry(): ?QUI\Countries\Country return QUI\ERP\Defaults::getCountry(); } - /** - * @return bool - */ public function isCompany(): bool { return $this->isCompany; } - /** - * @return bool - */ public function isNetto(): bool { try { @@ -528,34 +487,21 @@ public function isNetto(): bool return $this->isNetto; } - /** - * @return bool - */ public function hasBruttoNettoStatus(): bool { return is_bool($this->isNetto); } - /** - * @return mixed - */ public function isSU(): bool { return false; } - /** - * @param int|string $groupId - * @return mixed - */ public function isInGroup(int|string $groupId): bool { return false; } - /** - * @return mixed - */ public function canUseBackend(): bool { return false; @@ -568,29 +514,16 @@ public function logout(): void { } - /** - * @param string $code - * @param UserInterface|null $PermissionUser - * @return bool - */ public function activate(string $code = '', ?QUI\Interfaces\Users\User $PermissionUser = null): bool { return true; } - /** - * @param UserInterface|null $PermissionUser - * @return bool - */ public function deactivate(?UserInterface $PermissionUser = null): bool { return true; } - /** - * @param UserInterface|null $PermissionUser - * @return true - */ public function disable(UserInterface|null $PermissionUser = null): bool { return true; @@ -598,16 +531,11 @@ public function disable(UserInterface|null $PermissionUser = null): bool /** * Does nothing - * @param UserInterface|null $PermissionUser */ public function save(?UserInterface $PermissionUser = null): void { } - /** - * @param UserInterface|null $PermissionUser - * @return bool - */ public function delete(?UserInterface $PermissionUser = null): bool { return false; @@ -615,19 +543,12 @@ public function delete(?UserInterface $PermissionUser = null): bool /** * This user has nowhere permissions - * - * @param string $right - * @param bool|array $ruleset - * @return bool */ public function getPermission(string $right, bool|array|string|callable $ruleset = false): bool { return false; } - /** - * @return Address - */ public function getStandardAddress(): Address { return $this->getAddress(); @@ -640,16 +561,11 @@ public function addAddress(array $params = [], QUI\Interfaces\Users\User $Parent /** * Does nothing - * @param array|string $groups */ public function setGroups(array|string $groups) { } - /** - * @param bool $array - * @return int[]|string[]|Group[] - */ public function getGroups(bool $array = true): array { $groupIds = $this->getAttribute('usergroup'); @@ -698,8 +614,6 @@ public function getAvatar(): ?QUI\Projects\Media\Image /** * Does nothing - * @param string $new - * @param UserInterface|null $PermissionUser */ public function setPassword(string $new, ?UserInterface $PermissionUser = null) { @@ -711,32 +625,21 @@ public function changePassword(string $newPassword, string $oldPassword, UserInt /** * Does nothing - * @param string $pass - * @param bool $encrypted */ public function checkPassword(string $pass, bool $encrypted = false) { } - /** - * @return bool - */ public function isDeleted(): bool { return false; } - /** - * @return bool - */ public function isActive(): bool { return true; } - /** - * @return bool - */ public function isOnline(): bool { return false; @@ -744,7 +647,6 @@ public function isOnline(): bool /** * Does nothing - * @param bool $status */ public function setCompanyStatus(bool $status) { @@ -752,7 +654,6 @@ public function setCompanyStatus(bool $status) /** * Does nothing - * @param int $groupId */ public function addToGroup(int $groupId) { @@ -760,7 +661,6 @@ public function addToGroup(int $groupId) /** * Does nothing - * @param int|Group $Group */ public function removeGroup(Group|int $Group) { @@ -777,8 +677,6 @@ public function refresh() /** * Get customer no. of this ERP User. - * - * @return string */ public function getCustomerNo(): string { @@ -795,8 +693,6 @@ public function getCustomerNo(): string /** * Get supplier no. of this ERP User. - * - * @return string */ public function getSupplierNo(): string { diff --git a/src/QUI/ERP/Utils/User.php b/src/QUI/ERP/Utils/User.php index 5aa44dbfb7250e8b0ce9af3db9403ba1049dc17c..de4e78d7923ad7014e74fc7f8be5257d773eb497 100644 --- a/src/QUI/ERP/Utils/User.php +++ b/src/QUI/ERP/Utils/User.php @@ -7,6 +7,7 @@ namespace QUI\ERP\Utils; use QUI; +use QUI\Exception; use QUI\Interfaces\Users\User as UserInterface; use QUI\Users\Address; @@ -141,7 +142,7 @@ public static function getBruttoNettoUserStatus(UserInterface $User): int try { $Address = self::getUserERPAddress($User); - if (is_object($Address) && $Address) { + if (is_object($Address)) { $company = $Address->getAttribute('company'); if (!empty($company)) { @@ -271,10 +272,11 @@ public static function getUserArea(UserInterface $User): bool|QUI\ERP\Areas\Area * Return the user ERP address (Rechnungsaddresse, Accounting Address) * * @param UserInterface $User - * @return false|QUI\Users\Address - * @throws QUI\Exception + * @return Address|array|null + * @throws Exception + * @throws QUI\Permissions\Exception */ - public static function getUserERPAddress(UserInterface $User): null|Address + public static function getUserERPAddress(UserInterface $User): null|Address|array { if (!QUI::getUsers()->isUser($User)) { throw new QUI\Exception([