Part-DB-server/src/Services/InfoProviderSystem/DTOs/PurchaseInfoDTO.php

65 lines
2.5 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace App\Services\InfoProviderSystem\DTOs;
2023-07-15 18:18:35 +02:00
/**
* This DTO represents a purchase information for a part (supplier name, order number and prices).
2024-06-22 00:31:43 +02:00
* @see \App\Tests\Services\InfoProviderSystem\DTOs\PurchaseInfoDTOTest
2023-07-15 18:18:35 +02:00
*/
2025-09-21 14:25:57 +02:00
readonly class PurchaseInfoDTO
{
/** @var bool|null If the prices contain VAT or not. Null if state is unknown. */
public ?bool $prices_include_vat;
public function __construct(
2025-09-21 14:25:57 +02:00
public string $distributor_name,
public string $order_number,
/** @var PriceDTO[] */
2025-09-21 14:25:57 +02:00
public array $prices,
/** @var string|null An url to the product page of the vendor */
2025-09-21 14:25:57 +02:00
public ?string $product_url = null,
?bool $prices_include_vat = null,
)
{
//Ensure that the prices are PriceDTO instances
foreach ($this->prices as $price) {
if (!$price instanceof PriceDTO) {
throw new \InvalidArgumentException('The prices array must only contain PriceDTO instances');
}
}
//If no prices_include_vat information is given, try to deduct it from the prices
if ($prices_include_vat === null) {
$vatValues = array_unique(array_map(fn(PriceDTO $price) => $price->includes_tax, $this->prices));
if (count($vatValues) === 1) {
$this->prices_include_vat = $vatValues[0]; //Use the value of the prices if they are all the same
} else {
$this->prices_include_vat = null; //If there are different values for the prices, we cannot determine if the prices include VAT or not
}
} else {
$this->prices_include_vat = $prices_include_vat;
}
}
2025-09-21 14:25:57 +02:00
}