Files
2025-03-12 17:06:23 +01:00

5 lines
206 B
PHP

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