Citation de code source en PHPn° 225
7 July 2014 à 08:25
function getIsTroifois($order) {
if ($order->getPayment()->getMethod() == '3X')
return $order->hasSim();
}
function hasSim() {
return $this->getPrice() != '1.00' ? false: $this->getPrice();
}