Created
June 5, 2013 19:27
-
-
Save kermie/5716516 to your computer and use it in GitHub Desktop.
getPrice() method in OXID eShop 4.7.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getNettoPrice() | |
{ | |
if ( $this->_blNetPriceMode ) { | |
return oxRegistry::getUtils()->fRound($this->_dNetto); | |
} else { | |
return $this->getBruttoPrice() - $this->getVatValue(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment