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

fix: quiqqer/order#82 - VAT on shipping and behavior of different product VATs

Übergeordneter c155991c
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -101,7 +101,7 @@ public static function onQuiqqerOrderBasketToOrderEnd(
}
$PriceFactors = $Products->getPriceFactors();
$PriceFactors->addToEnd($Shipping->toPriceFactor());
$PriceFactors->addToEnd($Shipping->toPriceFactor(null, $Order));
try {
$Products->recalculation();
......@@ -217,6 +217,7 @@ public static function onQuiqqerOrderCustomerDataSave(
} catch (QUI\Exception $Exception) {
$Order->clearAddressDelivery();
$Order->save();
return;
}
......
......@@ -690,11 +690,14 @@ public function setOrder(QUI\ERP\Order\OrderInterface $Order)
/**
* @param null $Locale
* @param QUI\ERP\Order\AbstractOrder|null $Order
*
* @return QUI\ERP\Products\Utils\PriceFactor
*/
public function toPriceFactor($Locale = null)
{
public function toPriceFactor(
$Locale = null,
QUI\ERP\Order\AbstractOrder $Order = null
) {
$PriceFactor = new QUI\ERP\Products\Utils\PriceFactor([
'title' => QUI::getLocale()->get('quiqqer/shipping', 'shipping.order.title', [
'shipping' => $this->getTitle($Locale)
......@@ -707,6 +710,30 @@ public function toPriceFactor($Locale = null)
'visible' => true
]);
/* @var $Article QUI\ERP\Accounting\Article */
$Articles = $Order->getArticles();
$vats = [];
foreach ($Articles as $Article) {
$vat = $Article->getVat();
$price = $Article->getPrice()->getValue();
if (!isset($vats[$vat])) {
$vats[$vat] = 0;
}
$vats[$vat] = $vats[$vat] + $price;
}
// look at vat, which vat should be used
if (\count($vats) === 1) {
$PriceFactor->setVat(\key($vats));
} else {
// get max
$maxVat = \array_keys($vats, \max($vats))[0];
$PriceFactor->setVat($maxVat);
}
return $PriceFactor;
}
......
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