2019-09-01 14:37:53 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2019-11-01 13:40:30 +01:00
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony)
|
2019-09-01 14:37:53 +02:00
|
|
|
*
|
2019-11-01 13:40:30 +01:00
|
|
|
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
|
2019-09-01 14:37:53 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2019-09-01 18:52:22 +02:00
|
|
|
use App\Entity\Parts\Part;
|
2019-09-01 14:37:53 +02:00
|
|
|
use App\Entity\PriceInformations\Currency;
|
|
|
|
use App\Entity\PriceInformations\Pricedetail;
|
|
|
|
use Locale;
|
|
|
|
|
|
|
|
class PricedetailHelper
|
|
|
|
{
|
|
|
|
protected $base_currency;
|
|
|
|
protected $locale;
|
|
|
|
|
|
|
|
public function __construct(string $base_currency)
|
|
|
|
{
|
|
|
|
$this->base_currency = $base_currency;
|
|
|
|
$this->locale = Locale::getDefault();
|
|
|
|
}
|
|
|
|
|
2019-09-01 18:52:22 +02:00
|
|
|
/**
|
|
|
|
* Determines the highest amount, for which you get additional discount.
|
|
|
|
* This function determines the highest min_discount_quantity for the given part.
|
|
|
|
* @param Part $part
|
|
|
|
* @return float|null
|
|
|
|
*/
|
|
|
|
public function getMaxDiscountAmount(Part $part) : ?float
|
|
|
|
{
|
|
|
|
$orderdetails = $part->getOrderdetails(true);
|
|
|
|
|
|
|
|
$max = 0;
|
|
|
|
|
|
|
|
foreach ($orderdetails as $orderdetail) {
|
|
|
|
$pricedetails = $orderdetail->getPricedetails();
|
|
|
|
//The orderdetail must have pricedetails, otherwise this will not work!
|
|
|
|
if (empty($pricedetails)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pricedetails in orderdetails are ordered by min discount quantity,
|
|
|
|
so our first object is our min order amount for the current orderdetail */
|
|
|
|
$max_amount = $pricedetails->last()->getMinDiscountQuantity();
|
|
|
|
|
|
|
|
if ($max_amount > $max) {
|
|
|
|
$max = $max_amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($max > 0) {
|
|
|
|
return $max;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines the minimum amount of the part that can be ordered
|
|
|
|
* @param Part $part The part for which the minimum order amount should be determined.
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function getMinOrderAmount(Part $part) : ?float
|
|
|
|
{
|
|
|
|
$orderdetails = $part->getOrderdetails(true);
|
|
|
|
|
|
|
|
$min = INF;
|
|
|
|
|
|
|
|
foreach ($orderdetails as $orderdetail) {
|
|
|
|
$pricedetails = $orderdetail->getPricedetails();
|
|
|
|
//The orderdetail must have pricedetails, otherwise this will not work!
|
|
|
|
if (count($pricedetails) === 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pricedetails in orderdetails are ordered by min discount quantity,
|
|
|
|
so our first object is our min order amount for the current orderdetail */
|
|
|
|
$min_amount = $pricedetails[0]->getMinDiscountQuantity();
|
|
|
|
|
|
|
|
if ($min_amount < $min) {
|
|
|
|
$min = $min_amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($min < INF) {
|
|
|
|
return $min;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates the average price of a part, when ordering the amount $amount.
|
|
|
|
* @param Part $part The part for which the average price should be calculated.
|
|
|
|
* @param float $amount The order amount for which the average price should be calculated.
|
|
|
|
* If set to null, the mininmum order amount for the part is used.
|
|
|
|
* @param Currency|null $currency The currency in which the average price should be calculated
|
|
|
|
* @return string|null The Average price as bcmath string. Returns null, if it was not possible to calculate the
|
|
|
|
* price for the given
|
|
|
|
*/
|
|
|
|
public function calculateAvgPrice(Part $part, ?float $amount = null, ?Currency $currency = null) : ?string
|
|
|
|
{
|
|
|
|
if ($amount === null) {
|
|
|
|
$amount = $this->getMinOrderAmount($part);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($amount === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$orderdetails = $part->getOrderdetails(true);
|
|
|
|
|
|
|
|
$avg = "0";
|
|
|
|
$count = 0;
|
|
|
|
|
|
|
|
//Find the price for the amount, for the given
|
|
|
|
foreach ($orderdetails as $orderdetail) {
|
|
|
|
$pricedetail = $orderdetail->getPrice($amount);
|
|
|
|
|
|
|
|
//When we dont have informations about this amount, ignore it
|
|
|
|
if ($pricedetail === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$avg = bcadd($avg, $this->convertMoneyToCurrency($pricedetail->getPricePerUnit(), $pricedetail->getCurrency(), $currency), Pricedetail::PRICE_PRECISION);
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($count === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bcdiv($avg, (string) $count, Pricedetail::PRICE_PRECISION);
|
|
|
|
}
|
|
|
|
|
2019-09-01 14:37:53 +02:00
|
|
|
/**
|
|
|
|
* Converts the given value in origin currency to the choosen target currency
|
|
|
|
* @param $value float|string The value that should be converted
|
|
|
|
* @param Currency|null $originCurrency The currency the $value is given in.
|
|
|
|
* Set to null, to use global base currency.
|
|
|
|
* @param Currency|null $targetCurrency The target currency, to which $value should be converted.
|
|
|
|
* Set to null, to use global base currency.
|
|
|
|
* @return string|null The value in $targetCurrency given as bcmath string.
|
|
|
|
* Returns null, if it was not possible to convert between both values (e.g. when the exchange rates are missing)
|
|
|
|
*/
|
|
|
|
public function convertMoneyToCurrency($value, ?Currency $originCurrency = null, ?Currency $targetCurrency = null) : ?string
|
|
|
|
{
|
2019-09-01 18:52:22 +02:00
|
|
|
//Skip conversion, if both currencies are same
|
|
|
|
if ($originCurrency === $targetCurrency) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2019-09-01 14:37:53 +02:00
|
|
|
$value = (string) $value;
|
|
|
|
|
|
|
|
//Convert value to base currency
|
|
|
|
$val_base = $value;
|
2019-09-01 18:52:22 +02:00
|
|
|
if ($originCurrency !== null) {
|
2019-09-01 14:37:53 +02:00
|
|
|
//Without an exchange rate we can not calculate the exchange rate
|
|
|
|
if ((float) $originCurrency->getExchangeRate() === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$val_base = bcmul($value, $originCurrency->getExchangeRate(), Pricedetail::PRICE_PRECISION);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Convert value in base currency to target currency
|
|
|
|
$val_target = $val_base;
|
|
|
|
if ($targetCurrency !== null) {
|
|
|
|
//Without an exchange rate we can not calculate the exchange rate
|
|
|
|
if ($targetCurrency->getExchangeRate() === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$val_target = bcmul($val_base, $targetCurrency->getInverseExchangeRate(), Pricedetail::PRICE_PRECISION);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $val_target;
|
|
|
|
}
|
|
|
|
}
|