2023-07-14 00:09:22 +02:00
|
|
|
<?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
|
2023-07-14 00:09:22 +02:00
|
|
|
{
|
2026-02-10 16:53:41 +01:00
|
|
|
/** @var bool|null If the prices contain VAT or not. Null if state is unknown. */
|
|
|
|
|
public ?bool $prices_include_vat;
|
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
public function __construct(
|
2025-09-21 14:25:57 +02:00
|
|
|
public string $distributor_name,
|
|
|
|
|
public string $order_number,
|
2023-07-14 00:09:22 +02:00
|
|
|
/** @var PriceDTO[] */
|
2025-09-21 14:25:57 +02:00
|
|
|
public array $prices,
|
2023-07-14 00:09:22 +02:00
|
|
|
/** @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,
|
2026-02-10 16:53:41 +01:00
|
|
|
?bool $prices_include_vat = null,
|
2023-07-14 00:09:22 +02:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
//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');
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-10 16:53:41 +01:00
|
|
|
|
|
|
|
|
//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;
|
|
|
|
|
}
|
2023-07-14 00:09:22 +02:00
|
|
|
}
|
2025-09-21 14:25:57 +02:00
|
|
|
}
|