[-] FO : Do not suggest states that are not active

This commit is contained in:
gRoussac
2013-01-09 17:05:33 +01:00
parent f768081aa0
commit b672b3281e
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -482,7 +482,8 @@ class CarrierCore extends ObjectModel
$countries[$country['id_country']] = $country;
foreach ($states as &$state)
if (isset($countries[$state['id_country']])) /* Does not keep the state if its country has been disabled and not selected */
$countries[$state['id_country']]['states'][] = $state;
if ($state['active'] == 1)
$countries[$state['id_country']]['states'][] = $state;
return $countries;
}
+3 -2
View File
@@ -82,7 +82,7 @@ class CountryCore extends ObjectModel
'zip_code_format' => array('type' => self::TYPE_STRING, 'validate' => 'isZipCodeFormat'),
'display_tax_label' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
// Lang fields
/* Lang fields */
'name' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 64),
),
'associations' => array(
@@ -132,7 +132,8 @@ class CountryCore extends ObjectModel
if ($list_states)
foreach (Db::getInstance(_PS_USE_SQL_SLAVE_)->ExecuteS('SELECT * FROM `'._DB_PREFIX_.'state` ORDER BY `name` ASC') as $state)
if (isset($countries[$state['id_country']])) /* Does not keep the state if its country has been disabled and not selected */
$countries[$state['id_country']]['states'][] = $state;
if ($state['active'] == 1)
$countries[$state['id_country']]['states'][] = $state;
return $countries;
}