5 lines
206 B
PHP
5 lines
206 B
PHP
<?php
|
|
if (null !== $entity->getWholesaleValue())
|
|
{
|
|
echo $entity->getPriceType() == Discount::PERCENT_TYPE ? $entity->getWholesaleValue().'%' : st_currency_default_format($entity->getWholesaleValue());
|
|
} |