dans currency.php $this->currencyHelper->displayPrices(@$row->prices); donne le prix HT
je veux afficher dans l'admin le prix TTC avec la function getTaxedPrice($price,$zone_id,$tax_category_id,$round=2)
$priceTTC = $this->currencyHelper->getTaxedPrice(@$row->prices,73,1,2) ;
$zone_id = 73 c'est la France
$tax_category_id je le trouve où ? dans #__hikashop_taxation il y a une seule ligne avec l'id 1
mais ça ne marche pas je n'obtiens pas le prix TTC
enuite comment trier par prix ?
<?php echo JHTML::_('grid.sort', JText::_('PRODUCT_PRICE'), '
b.product_price', $this->pageInfo->filter->order->dir,$this->pageInfo->filter->order->value ); ?>
par quoi faut il remplacer
b.product_price ?
merci