Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ToPercent.php
Go to the documentation of this file.
1 <?php
7 
8 class ToPercent extends ByPercent
9 {
16  public function calculate($rule, $item, $qty)
17  {
18  $rulePercent = max(0, 100 - $rule->getDiscountAmount());
19  $discountData = $this->_calculate($rule, $item, $qty, $rulePercent);
20 
21  return $discountData;
22  }
23 }