/**
  * Get display price for row total including tax. The Weee amount will be added to row total including tax
  * depending on Weee display setting
  *
  * @param \Magento\Quote\Model\Quote\Item $item
  * @return float
  */
 private function getRowTotalInclTax($item)
 {
     $rowTotalInclTax = $item->getRowTotalInclTax();
     if (!$this->weeeHelper->isEnabled($this->getStoreId())) {
         return $rowTotalInclTax;
     }
     if ($this->getIncludeWeeeFlag()) {
         return $rowTotalInclTax + $this->weeeHelper->getRowWeeeTaxInclTax($item);
     }
     return $rowTotalInclTax;
 }