setTitle('Tarifs') ;
$this->addBreadcrumb($this->getTitle()) ;
?>
isBillingTypeFreePrice()) {
echo '
';
echo "Vous bénéficiez actuellement d'un abonnement à prix libre dont voici le montant : ".$producer->getFreePrice()."";
echo '
';
}
elseif($producer->isBillingTypeClassic()) {
$month = date('Y-m', strtotime('-1 month'));
$turnover = $producer->getTurnover($month);
$amountBilledLastMonth = $producer->getAmountToBeBilledByTurnover($turnover);
if($amountBilledLastMonth) {
echo '';
echo "À titre d'information, voici le tarif retenu pour le mois dernier (".strftime('%B', strtotime('-1 month')).") :
".$producer->getAmountToBeBilledByMonth($month, true)."";
echo "
Le chiffre d'affaire pris en compte pour ce calcul est :
".Price::format($turnover)." HT";
echo '
Voir l\'évolution de mon chiffre d\'affaire';
echo '
';
}
}
?>
=
$this->render('@frontend/views/site/_prices_producer', [
'dataProviderPrices' => $dataProviderPrices
]);
?>