forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrice.php
More file actions
51 lines (46 loc) · 1.5 KB
/
Price.php
File metadata and controls
51 lines (46 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Downloadable products price model
*/
namespace Magento\Downloadable\Model\Product;
/**
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
*/
class Price extends \Magento\Catalog\Model\Product\Type\Price
{
/**
* Retrieve product final price
*
* @param integer $qty
* @param \Magento\Catalog\Model\Product $product
* @return float
*/
public function getFinalPrice($qty, $product)
{
if ($qty === null && $product->getCalculatedFinalPrice() !== null) {
return $product->getCalculatedFinalPrice();
}
$finalPrice = parent::getFinalPrice($qty, $product);
/**
* links prices are added to base product price only if they can be purchased separately
*/
if ($product->getLinksPurchasedSeparately()) {
if ($linksIds = $product->getCustomOption('downloadable_link_ids')) {
$linkPrice = 0;
$links = $product->getTypeInstance()->getLinks($product);
foreach (explode(',', $linksIds->getValue() ?? '') as $linkId) {
if (isset($links[$linkId])) {
$linkPrice += $links[$linkId]->getPrice();
}
}
$finalPrice += $linkPrice;
}
}
$product->setData('final_price', $finalPrice);
return max(0, $product->getData('final_price'));
}
}