[-] MO : #PSCFV-3550 - Module Check : Display warning only if the module is active

This commit is contained in:
mDeflotte
2012-08-07 12:24:19 +00:00
parent c7105bfe11
commit e39ce99efe
+2 -2
View File
@@ -59,9 +59,9 @@ class Cheque extends PaymentModule
$this->description = $this->l('Module for accepting payments by check.');
$this->confirmUninstall = $this->l('Are you sure you want to delete your details ?');
if (!isset($this->chequeName) || !isset($this->address) || empty($this->chequeName) || empty($this->address))
if ($this->active && (!isset($this->chequeName) || !isset($this->address) || empty($this->chequeName) || empty($this->address)))
$this->warning = $this->l('\'To the order of\' and address must be configured in order to use this module correctly.');
if (!count(Currency::checkPaymentCurrencies($this->id)))
if ($this->active && !count(Currency::checkPaymentCurrencies($this->id)))
$this->warning = $this->l('No currency set for this module');
$this->extra_mail_vars = array(