Fix forget check

This commit is contained in:
Michael RICOIS 2017-11-06 12:25:16 +01:00
parent 2fb0bd187d
commit 7c2864d4a1

View File

@ -839,6 +839,13 @@ class Cart extends CartCore {
if (!$order_total)
return Tools::displayError('Cannot add voucher if order is free.');
// Ony for API (application)
$subdomain = substr($_SERVER['HTTP_HOST'], 0, strpos($_SERVER['HTTP_HOST'], '.'));
if ($subdomain != 'api' && $discountObj->appli == 1) {
return Tools::displayError('This voucher is not valid');
}
if (!$discountObj->active)
return Tools::displayError('This voucher has already been used or is disabled.');
if (!$discountObj->quantity)