User 'motobelfqtmtbpre' has exceeded the 'max_questions' resource (current value: 40000)
SELECT `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 702
ORDER BY `id_specific_price_priority` DESC
LIMIT 1
at line 604 in file classes/db/Db.php
598. if ($webservice_call && $errno)
599. WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. Query was : '.$sql, 97);
600. else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
601. {
602. if ($sql)
603. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
604. throw new PrestaShopDatabaseException($this->getMsgError());
605. }
606. }
607.
608. /**
302. if ($sql instanceof DbQuery)
303. $sql = $sql->build();
304.
305. $this->result = $this->_query($sql);
306. if (_PS_DEBUG_SQL_) {
307. $this->displayError($sql);
308. }
309. return $this->result;
310. }
311.
312. /**
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 702 ORDER BY `id_specific_price_priority` DESC LIMIT 1
517. {
518. $this->last_cached = true;
519. return $result;
520. }
521.
522. $this->result = $this->query($sql);
523. if (!$this->result)
524. return false;
525.
526. $this->last_cached = false;
527. $result = $this->nextRow($this->result);
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 702 ORDER BY `id_specific_price_priority` DESC LIMIT 1
540. public function getValue($sql, $use_cache = true)
541. {
542. if ($sql instanceof DbQuery)
543. $sql = $sql->build();
544.
545. if (!$result = $this->getRow($sql, $use_cache))
546. return false;
547. return array_shift($result);
548. }
549.
550. /**
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 702 ORDER BY `id_specific_price_priority` DESC Argument [1] 1
184. self::$_cache_priorities[(int)$id_product] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue('
185. SELECT `priority`, `id_specific_price_priority`
186. FROM `'._DB_PREFIX_.'specific_price_priority`
187. WHERE `id_product` = '.(int)$id_product.'
188. ORDER BY `id_specific_price_priority` DESC
189. ');
190. }
191.
192. $priority = self::$_cache_priorities[(int)$id_product];
193.
194. if (!$priority)
Argument [0] SELECT `priority`, `id_specific_price_priority` FROM `ps_specific_price_priority` WHERE `id_product` = 702 ORDER BY `id_specific_price_priority` DESC
165. $select = '(';
166.
167. $now = date('Y-m-d H:i:s');
168. $select .= ' IF (\''.$now.'\' >= `from` AND \''.$now.'\' <= `to`, '.pow(2, 0).', 0) + ';
169.
170. $priority = SpecificPrice::getPriority($id_product);
171. foreach (array_reverse($priority) as $k => $field)
172. $select .= ' IF (`'.bqSQL($field).'` = '.(int)$$field.', '.pow(2, $k + 1).', 0) + ';
173.
174. return rtrim($select, ' +').') AS `score`';
175. }
Argument [0] 702
210. $key = ((int)$id_product.'-'.(int)$id_shop.'-'.(int)$id_currency.'-'.(int)$id_country.'-'.(int)$id_group.'-'.(int)$quantity.'-'.(int)$id_product_attribute.'-'.(int)$id_cart);
211. if (!array_key_exists($key, self::$_specificPriceCache))
212. {
213. $now = date('Y-m-d H:i:s');
214. self::$_specificPriceCache[$key] = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('
215. SELECT *, '.SpecificPrice::_getScoreQuery($id_product, $id_shop, $id_currency, $id_country, $id_group, $id_customer).'
216. FROM `'._DB_PREFIX_.'specific_price`
217. WHERE `id_product` IN (0, '.(int)$id_product.')
218. AND `id_product_attribute` IN (0, '.(int)$id_product_attribute.')
219. AND `id_shop` IN (0, '.(int)$id_shop.')
220. AND `id_currency` IN (0, '.(int)$id_currency.')
Argument [0] 702 Argument [1] 1 Argument [2] 1 Argument [3] 8 Argument [4] 1 Argument [5] 0
2409. $id_group,
2410. $quantity,
2411. $id_product_attribute,
2412. $id_customer,
2413. $id_cart
2414. );
2415.
2416. if (isset(self::$_prices[$cache_id]))
2417. return self::$_prices[$cache_id];
2418.
2419. // fetch price & attribute price
Argument [0] 702 Argument [1] 1 Argument [2] 1 Argument [3] 8 Argument [4] 1 Argument [5] 1 Argument [6] Argument [7] 0 Argument [8]
2359. $specific_price_output,
2360. $use_group_reduction,
2361. $id_customer,
2362. $use_customer_price,
2363. $id_cart
2364. );
2365. }
2366.
2367. /**
2368. * Price calculation / Get product price
2369. *
Argument [0] 1 Argument [1] 702 Argument [2] Argument [3] 8 Argument [4] 0 Argument [5] 0 Argument [6] 1 Argument [7] 1 Argument [8] 1 Argument [9] Argument [10] 6 Argument [11] Argument [12] 1 Argument [13] 1 Argument [14] Argument [15] 1 Argument [16] 0 Argument [17] 1 Argument [18]
3504. $row['price_tax_exc'] = Product::getPriceStatic(
3505. (int)$row['id_product'],
3506. false,
3507. ((isset($row['id_product_attribute']) && !empty($row['id_product_attribute'])) ? (int)$row['id_product_attribute'] : null),
3508. (self::$_taxCalculationMethod == PS_TAX_EXC ? 2 : 6)
3509. );
3510.
3511. if (self::$_taxCalculationMethod == PS_TAX_EXC)
3512. {
3513. $row['price_tax_exc'] = Tools::ps_round($row['price_tax_exc'], 2);
3514. $row['price'] = Product::getPriceStatic(
Argument [0] 702 Argument [1] Argument [2] Argument [3] 6
3614. {
3615. $results_array = array();
3616.
3617. if (is_array($query_result))
3618. foreach ($query_result as $row)
3619. if ($row2 = Product::getProductProperties($id_lang, $row))
3620. $results_array[] = $row2;
3621.
3622. return $results_array;
3623. }
3624.
Argument [0]
4
Argument [1]
Array
(
[id_product] => 702
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.050000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086000
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-10-05 15:11:06
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14086000
[link_rewrite] => butee-interieure-embrayage
[name] => Butee Interieure Embrayage
[id_image] => 3365
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
3789. public function getProducts($selected_filters, &$products, &$nb_products, &$p, &$n, &$pages_nb, &$start, &$stop, &$range)
3790. {
3791. global $cookie;
3792.
3793. $products = $this->getProductByFilters($selected_filters);
3794. $products = Product::getProductsProperties((int)$cookie->id_lang, $products);
3795.
3796. $nb_products = $this->nbr_products;
3797. $range = 2; /* how many pages around page selected */
3798.
3799. $n = (int)Tools::getValue('n', Configuration::get('PS_PRODUCTS_PER_PAGE'));
Argument [0]
4
Argument [1]
Array
(
[0] => Array
(
[id_product] => 8342
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.583333
[wholesale_price] => 6.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937701
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2014-09-04 17:29:33
[date_upd] => 2025-11-19 17:54:44
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Aiguille V9
[link_rewrite] => aiguille-v9
[name] => Aiguille V9
[id_image] => 1609
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[1] => Array
(
[id_product] => 8760
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 491.666667
[wholesale_price] => 318.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ARBCA001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2016-01-30 15:11:42
[date_upd] => 2021-05-03 22:40:29
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>
[link_rewrite] => arbre-a-cames-special-modèle-p3
[name] => Arbre à Cames Special Modèle P3
[id_image] => 2815
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[2] => Array
(
[id_product] => 524
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 23.333333
[wholesale_price] => 12.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12031800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-10-20 21:57:58
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] =>
[link_rewrite] => axe-culbuteur-850-940-1000-1100-1200
[name] => Axe Culbuteur 850/940/1000/1100/1200
[id_image] => 2006
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[3] => Array
(
[id_product] => 877
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.666667
[wholesale_price] => 6.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13933100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-23 16:47:05
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13933100
[link_rewrite] => axe-flotteur
[name] => Axe Flotteur de Carburateur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[4] => Array
(
[id_product] => 229
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 28.333333
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91112122 - GU91112128
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-07-28 16:34:52
[advanced_stock_management] => 0
[available_later] => Délai 10 jours à 15 jours
[description_short] => GU91112122 - GU91112128
[link_rewrite] => bague-bronze-pied-de-bielle-
[name] => Bague Bronze Pied de Bielle
[id_image] => 2735
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[5] => Array
(
[id_product] => 8204
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14230711
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-09-13 17:08:01
[date_upd] => 2021-09-15 19:41:54
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14230711
[link_rewrite] => baladeur-boite-vitesses-1e2e-
[name] => Baladeur boite vitesses 1e/2e
[id_image] => 4700
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[6] => Array
(
[id_product] => 3388
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 100.000000
[wholesale_price] => 67.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14231510
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.25
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2024-02-20 22:55:30
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14231510
[link_rewrite] => baladeur-boite-vitesses-5ème
[name] => Baladeur Boite Vitesses 5ème
[id_image] => 3825
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[7] => Array
(
[id_product] => 7952
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.833333
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ALTBO003 - 1471
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:46:00
[date_upd] => 2025-02-27 12:15:49
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Balai Alternateur Bosch la paire
[link_rewrite] => balai-alternateur-bosch
[name] => Balai Alternateur Bosch la paire
[id_image] => 645
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[8] => Array
(
[id_product] => 941
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 79.166667
[wholesale_price] => 0.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14090202
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-01-21 19:04:19
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU14090202 Eclaté n° 12
[link_rewrite] => bielette-embrayage
[name] => Bielette Embrayage
[id_image] => 5413
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[9] => Array
(
[id_product] => 9381
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 130.000000
[wholesale_price] => 91.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937501
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2021-05-31 18:54:55
[date_upd] => 2021-05-31 18:59:59
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU14937501
[link_rewrite] => boisseau-carburateur-vhb30
[name] => Boisseau Carburateur VHB30
[id_image] => 4640
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[10] => Array
(
[id_product] => 3474
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 65.833333
[wholesale_price] => 47.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU55234700
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.11
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-09-18 12:59:05
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU55234700
[link_rewrite] => bonhomme-de-verrouillage-sur-carter-bv
[name] => Bonhomme Verrouillage sur Carter BV
[id_image] => 3315
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[11] => Array
(
[id_product] => 366
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 4.000000
[wholesale_price] => 0.960000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU93180220
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.005
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-08-28 11:30:02
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU93180220
[link_rewrite] => bouchon-caoutchouc-regard-embrayage
[name] => Bouchon Caoutchouc Regard Embrayage
[id_image] => 2520
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[12] => Array
(
[id_product] => 965
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.666667
[wholesale_price] => 20.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12022600 - GU19351200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-03-31 16:47:43
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Réf : 12022600
[link_rewrite] => bouchon-culasse
[name] => Bouchon Culasse - Bouchon vidange huile
[id_image] => 2584
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[13] => Array
(
[id_product] => 968
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.333333
[wholesale_price] => 18.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12065400
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-09 16:30:45
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12065400
[link_rewrite] => bouchon-epurateur-vilebrequin
[name] => Bouchon Epurateur Vilebrequin
[id_image] => 2770
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[14] => Array
(
[id_product] => 980
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.500000
[wholesale_price] => 6.900000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU95980214
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-10-15 14:47:51
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU95980214
[link_rewrite] => bouchon-vidange
[name] => Bouchon Vidange
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[15] => Array
(
[id_product] => 978
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 15.833333
[wholesale_price] => 9.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU31003766
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-21 22:58:12
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>  Réf : GU31003766
[link_rewrite] => bouchon-vidange-aimanté-d10
[name] => Bouchon Vidange Aimanté D10
[id_image] => 2586
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[16] => Array
(
[id_product] => 977
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 857
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 6.550000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12003702
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.03
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 22:11:53
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12003702
[link_rewrite] => bouchon-vidange-moteur
[name] => Bouchon Vidange Moteur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[17] => Array
(
[id_product] => 239
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 3.833333
[wholesale_price] => 2.300000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => BP7ES
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-05-19 15:02:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Bougie BP7ES
[link_rewrite] => bougie-bp7es
[name] => Bougie BP7ES
[id_image] => 1784
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[18] => Array
(
[id_product] => 987
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 116.666667
[wholesale_price] => 79.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12054000 - GU01054001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-12-07 23:16:00
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine (jours ouvrés)
[description_short] => GU12054000 - GU01054001
[link_rewrite] => bride-arbre-a-cames
[name] => Bride Arbre A Cames
[id_image] => 2802
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[19] => Array
(
[id_product] => 8057
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 18.333333
[wholesale_price] => 9.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12087001 - 2A000376
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-01-20 23:32:32
[date_upd] => 2025-10-02 17:48:32
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12087001 - 2A000376
[link_rewrite] => butée-aiguilles-sur-tige-embrayage-850-1000-1100-1200
[name] => Butée aiguilles sur tige embrayage 850 - 1000 - 1100 - 1200
[id_image] => 874
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[20] => Array
(
[id_product] => 8162
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12082800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-05-08 00:24:18
[date_upd] => 2024-11-27 18:10:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Butée Embrayage
[link_rewrite] => butée-embrayage-
[name] => Butée Embrayage
[id_image] => 1073
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[21] => Array
(
[id_product] => 701
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 22:16:22
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14086100
[link_rewrite] => butée-extérieure-embrayage
[name] => Butée Extérieure Embrayage
[id_image] => 4252
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[22] => Array
(
[id_product] => 702
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.050000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086000
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-10-05 15:11:06
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14086000
[link_rewrite] => butee-interieure-embrayage
[name] => Butee Interieure Embrayage
[id_image] => 3365
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[23] => Array
(
[id_product] => 1032
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.666667
[wholesale_price] => 3.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17134050
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 21:58:32
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17134050
[link_rewrite] => cable-starter-t3-sp-court
[name] => Cable Starter T3 - 1000 SP - California II Court
[id_image] => 2222
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[24] => Array
(
[id_product] => 1031
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.250000
[wholesale_price] => 2.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17133550
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-11-04 19:53:24
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17133550
[link_rewrite] => cable-starter-t3-long
[name] => Cable Starter T3 Long
[id_image] => 2205
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[25] => Array
(
[id_product] => 349
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 141.666667
[wholesale_price] => 85.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 1053140
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.6
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-11-27 18:34:08
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => Cache Alternateur  aluminium poli
[link_rewrite] => cache-alternateur-850-1000-1100-v50
[name] => Cache Alternateur 850 - 1000 - 1100 - V50
[id_image] => 2642
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[26] => Array
(
[id_product] => 1041
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 36.000000
[wholesale_price] => 21.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU18001650
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.27
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-07-04 09:48:29
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU18001650
[link_rewrite] => cache-alternateur-plastique-noir
[name] => Cache Alternateur Plastique Noir
[id_image] => 3294
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[27] => Array
(
[id_product] => 3747
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251022
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-05-31 22:21:18
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU92251022 Sur éclaté pièce n° 7
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3797
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[28] => Array
(
[id_product] => 3748
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-06-06 13:28:05
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU92251030 Pièce n° 20 ou 30
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3798
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[29] => Array
(
[id_product] => 250
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.166667
[wholesale_price] => 2.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05E
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 12:27:42
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05E (bougie avec olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05E
[id_image] => 4318
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[30] => Array
(
[id_product] => 9626
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.000000
[wholesale_price] => 2.700000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05F
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-10-06 13:20:34
[date_upd] => 2025-07-13 12:40:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05F (bougie sans olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05F
[id_image] => 5193
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[31] => Array
(
[id_product] => 7956
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 158.333333
[wholesale_price] => 94.640000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17704300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.5
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:59:58
[date_upd] => 2025-01-25 15:29:04
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU17704300
[link_rewrite] => cellule-redresseuse-adaptable-bosch
[name] => Cellule redresseuse Bosch adaptable
[id_image] => 648
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[32] => Array
(
[id_product] => 562
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 66.666667
[wholesale_price] => 38.750000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU05058030 - 28058060 - 13058030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.55
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-02-11 23:46:54
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU05058030 - 28058060 - 13058030
[link_rewrite] => chaine-distribution-85010001100
[name] => Chaine Distribution 850/1000/1100
[id_image] => 1236
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[33] => Array
(
[id_product] => 3900
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 92.000000
[wholesale_price] => 70.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14158200 - GU03158230
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2025-11-21 11:37:11
[advanced_stock_management] => 0
[available_later] => Délai environ 15 jours
[description_short] => GU14158200 - GU03158230 Pièce n° 14
[link_rewrite] => clapet-décharge
[name] => Clapet Décharge
[id_image] => 4610
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[34] => Array
(
[id_product] => 1212
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 7.850000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14234600
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-02-08 18:49:30
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14234600  sur éclaté n° 4
[link_rewrite] => clavette
[name] => Clavette arbre à cames
[id_image] => 4859
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[35] => Array
(
[id_product] => 1216
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 1.666667
[wholesale_price] => 0.820000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13148300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2021-09-15 19:17:07
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13148300
[link_rewrite] => clavette-pompe-huile
[name] => Clavette Pompe Huile
[id_image] => 3243
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[36] => Array
(
[id_product] => 1217
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 29.166667
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91702355
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-09 12:59:17
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU91702355
[link_rewrite] => clavette-vilebrequin
[name] => Clavette Vilebrequin
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[37] => Array
(
[id_product] => 1247
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 7.666667
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU27061385 - GU90351037
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-06-17 16:20:13
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU27061385 - GU90351037  Eclaté n° 23
[link_rewrite] => clips-piston
[name] => Clips Piston
[id_image] => 3669
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[38] => Array
(
[id_product] => 512
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 20.000000
[wholesale_price] => 11.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => COMMA002
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-04-22 13:37:16
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => COMMA002
[link_rewrite] => commande-starter-manuel-vhb30
[name] => Commande Starter Manuel VHB30
[id_image] => 3962
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[39] => Array
(
[id_product] => 1295
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12207200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-12-15 16:33:52
[advanced_stock_management] => 0
[available_later] => Délai 15 j à 3 semaines
[description_short] => GU12207200
[link_rewrite] => contacteur-point-mort
[name] => Contacteur Point Mort
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
)
477. if (is_array($filter_block['title_values']))
478. foreach ($filter_block['title_values'] as $key => $val)
479. $title .= ' – '.$key.' '.implode('/', $val);
480.
481. $smarty->assign('categoryNameComplement', $title);
482. $this->getProducts($selected_filters, $params['catProducts'], $params['nbProducts'], $p, $n, $pages_nb, $start, $stop, $range);
483. // Need a nofollow on the pagination links?
484. $smarty->assign('no_follow', $filter_block['no_follow']);
485. }
486.
487. public function hookAfterSaveProduct($params)
Argument [0]
Array
(
[category] => Array
(
)
)
Argument [1]
Array
(
[0] => Array
(
[id_product] => 8342
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.583333
[wholesale_price] => 6.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937701
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2014-09-04 17:29:33
[date_upd] => 2025-11-19 17:54:44
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Aiguille V9
[link_rewrite] => aiguille-v9
[name] => Aiguille V9
[id_image] => 1609
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[1] => Array
(
[id_product] => 8760
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 491.666667
[wholesale_price] => 318.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ARBCA001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2016-01-30 15:11:42
[date_upd] => 2021-05-03 22:40:29
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>
[link_rewrite] => arbre-a-cames-special-modèle-p3
[name] => Arbre à Cames Special Modèle P3
[id_image] => 2815
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[2] => Array
(
[id_product] => 524
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 23.333333
[wholesale_price] => 12.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12031800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-10-20 21:57:58
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] =>
[link_rewrite] => axe-culbuteur-850-940-1000-1100-1200
[name] => Axe Culbuteur 850/940/1000/1100/1200
[id_image] => 2006
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[3] => Array
(
[id_product] => 877
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.666667
[wholesale_price] => 6.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13933100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-23 16:47:05
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13933100
[link_rewrite] => axe-flotteur
[name] => Axe Flotteur de Carburateur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[4] => Array
(
[id_product] => 229
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 28.333333
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91112122 - GU91112128
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-07-28 16:34:52
[advanced_stock_management] => 0
[available_later] => Délai 10 jours à 15 jours
[description_short] => GU91112122 - GU91112128
[link_rewrite] => bague-bronze-pied-de-bielle-
[name] => Bague Bronze Pied de Bielle
[id_image] => 2735
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[5] => Array
(
[id_product] => 8204
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14230711
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-09-13 17:08:01
[date_upd] => 2021-09-15 19:41:54
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14230711
[link_rewrite] => baladeur-boite-vitesses-1e2e-
[name] => Baladeur boite vitesses 1e/2e
[id_image] => 4700
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[6] => Array
(
[id_product] => 3388
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 100.000000
[wholesale_price] => 67.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14231510
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.25
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2024-02-20 22:55:30
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14231510
[link_rewrite] => baladeur-boite-vitesses-5ème
[name] => Baladeur Boite Vitesses 5ème
[id_image] => 3825
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[7] => Array
(
[id_product] => 7952
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.833333
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ALTBO003 - 1471
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:46:00
[date_upd] => 2025-02-27 12:15:49
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Balai Alternateur Bosch la paire
[link_rewrite] => balai-alternateur-bosch
[name] => Balai Alternateur Bosch la paire
[id_image] => 645
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[8] => Array
(
[id_product] => 941
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 79.166667
[wholesale_price] => 0.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14090202
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-01-21 19:04:19
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU14090202 Eclaté n° 12
[link_rewrite] => bielette-embrayage
[name] => Bielette Embrayage
[id_image] => 5413
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[9] => Array
(
[id_product] => 9381
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 130.000000
[wholesale_price] => 91.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937501
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2021-05-31 18:54:55
[date_upd] => 2021-05-31 18:59:59
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU14937501
[link_rewrite] => boisseau-carburateur-vhb30
[name] => Boisseau Carburateur VHB30
[id_image] => 4640
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[10] => Array
(
[id_product] => 3474
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 65.833333
[wholesale_price] => 47.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU55234700
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.11
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-09-18 12:59:05
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU55234700
[link_rewrite] => bonhomme-de-verrouillage-sur-carter-bv
[name] => Bonhomme Verrouillage sur Carter BV
[id_image] => 3315
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[11] => Array
(
[id_product] => 366
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 4.000000
[wholesale_price] => 0.960000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU93180220
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.005
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-08-28 11:30:02
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU93180220
[link_rewrite] => bouchon-caoutchouc-regard-embrayage
[name] => Bouchon Caoutchouc Regard Embrayage
[id_image] => 2520
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[12] => Array
(
[id_product] => 965
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.666667
[wholesale_price] => 20.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12022600 - GU19351200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-03-31 16:47:43
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Réf : 12022600
[link_rewrite] => bouchon-culasse
[name] => Bouchon Culasse - Bouchon vidange huile
[id_image] => 2584
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[13] => Array
(
[id_product] => 968
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.333333
[wholesale_price] => 18.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12065400
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-09 16:30:45
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12065400
[link_rewrite] => bouchon-epurateur-vilebrequin
[name] => Bouchon Epurateur Vilebrequin
[id_image] => 2770
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[14] => Array
(
[id_product] => 980
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.500000
[wholesale_price] => 6.900000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU95980214
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-10-15 14:47:51
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU95980214
[link_rewrite] => bouchon-vidange
[name] => Bouchon Vidange
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[15] => Array
(
[id_product] => 978
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 15.833333
[wholesale_price] => 9.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU31003766
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-21 22:58:12
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>  Réf : GU31003766
[link_rewrite] => bouchon-vidange-aimanté-d10
[name] => Bouchon Vidange Aimanté D10
[id_image] => 2586
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[16] => Array
(
[id_product] => 977
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 857
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 6.550000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12003702
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.03
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 22:11:53
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12003702
[link_rewrite] => bouchon-vidange-moteur
[name] => Bouchon Vidange Moteur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[17] => Array
(
[id_product] => 239
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 3.833333
[wholesale_price] => 2.300000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => BP7ES
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-05-19 15:02:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Bougie BP7ES
[link_rewrite] => bougie-bp7es
[name] => Bougie BP7ES
[id_image] => 1784
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[18] => Array
(
[id_product] => 987
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 116.666667
[wholesale_price] => 79.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12054000 - GU01054001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-12-07 23:16:00
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine (jours ouvrés)
[description_short] => GU12054000 - GU01054001
[link_rewrite] => bride-arbre-a-cames
[name] => Bride Arbre A Cames
[id_image] => 2802
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[19] => Array
(
[id_product] => 8057
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 18.333333
[wholesale_price] => 9.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12087001 - 2A000376
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-01-20 23:32:32
[date_upd] => 2025-10-02 17:48:32
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12087001 - 2A000376
[link_rewrite] => butée-aiguilles-sur-tige-embrayage-850-1000-1100-1200
[name] => Butée aiguilles sur tige embrayage 850 - 1000 - 1100 - 1200
[id_image] => 874
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[20] => Array
(
[id_product] => 8162
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12082800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-05-08 00:24:18
[date_upd] => 2024-11-27 18:10:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Butée Embrayage
[link_rewrite] => butée-embrayage-
[name] => Butée Embrayage
[id_image] => 1073
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[21] => Array
(
[id_product] => 701
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 22:16:22
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14086100
[link_rewrite] => butée-extérieure-embrayage
[name] => Butée Extérieure Embrayage
[id_image] => 4252
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[22] => Array
(
[id_product] => 702
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.050000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086000
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-10-05 15:11:06
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14086000
[link_rewrite] => butee-interieure-embrayage
[name] => Butee Interieure Embrayage
[id_image] => 3365
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[23] => Array
(
[id_product] => 1032
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.666667
[wholesale_price] => 3.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17134050
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 21:58:32
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17134050
[link_rewrite] => cable-starter-t3-sp-court
[name] => Cable Starter T3 - 1000 SP - California II Court
[id_image] => 2222
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[24] => Array
(
[id_product] => 1031
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.250000
[wholesale_price] => 2.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17133550
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-11-04 19:53:24
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17133550
[link_rewrite] => cable-starter-t3-long
[name] => Cable Starter T3 Long
[id_image] => 2205
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[25] => Array
(
[id_product] => 349
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 141.666667
[wholesale_price] => 85.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 1053140
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.6
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-11-27 18:34:08
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => Cache Alternateur  aluminium poli
[link_rewrite] => cache-alternateur-850-1000-1100-v50
[name] => Cache Alternateur 850 - 1000 - 1100 - V50
[id_image] => 2642
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[26] => Array
(
[id_product] => 1041
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 36.000000
[wholesale_price] => 21.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU18001650
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.27
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-07-04 09:48:29
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU18001650
[link_rewrite] => cache-alternateur-plastique-noir
[name] => Cache Alternateur Plastique Noir
[id_image] => 3294
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[27] => Array
(
[id_product] => 3747
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251022
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-05-31 22:21:18
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU92251022 Sur éclaté pièce n° 7
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3797
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[28] => Array
(
[id_product] => 3748
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-06-06 13:28:05
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU92251030 Pièce n° 20 ou 30
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3798
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[29] => Array
(
[id_product] => 250
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.166667
[wholesale_price] => 2.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05E
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 12:27:42
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05E (bougie avec olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05E
[id_image] => 4318
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[30] => Array
(
[id_product] => 9626
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.000000
[wholesale_price] => 2.700000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05F
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-10-06 13:20:34
[date_upd] => 2025-07-13 12:40:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05F (bougie sans olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05F
[id_image] => 5193
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[31] => Array
(
[id_product] => 7956
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 158.333333
[wholesale_price] => 94.640000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17704300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.5
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:59:58
[date_upd] => 2025-01-25 15:29:04
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU17704300
[link_rewrite] => cellule-redresseuse-adaptable-bosch
[name] => Cellule redresseuse Bosch adaptable
[id_image] => 648
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[32] => Array
(
[id_product] => 562
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 66.666667
[wholesale_price] => 38.750000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU05058030 - 28058060 - 13058030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.55
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-02-11 23:46:54
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU05058030 - 28058060 - 13058030
[link_rewrite] => chaine-distribution-85010001100
[name] => Chaine Distribution 850/1000/1100
[id_image] => 1236
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[33] => Array
(
[id_product] => 3900
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 92.000000
[wholesale_price] => 70.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14158200 - GU03158230
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2025-11-21 11:37:11
[advanced_stock_management] => 0
[available_later] => Délai environ 15 jours
[description_short] => GU14158200 - GU03158230 Pièce n° 14
[link_rewrite] => clapet-décharge
[name] => Clapet Décharge
[id_image] => 4610
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[34] => Array
(
[id_product] => 1212
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 7.850000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14234600
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-02-08 18:49:30
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14234600  sur éclaté n° 4
[link_rewrite] => clavette
[name] => Clavette arbre à cames
[id_image] => 4859
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[35] => Array
(
[id_product] => 1216
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 1.666667
[wholesale_price] => 0.820000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13148300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2021-09-15 19:17:07
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13148300
[link_rewrite] => clavette-pompe-huile
[name] => Clavette Pompe Huile
[id_image] => 3243
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[36] => Array
(
[id_product] => 1217
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 29.166667
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91702355
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-09 12:59:17
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU91702355
[link_rewrite] => clavette-vilebrequin
[name] => Clavette Vilebrequin
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[37] => Array
(
[id_product] => 1247
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 7.666667
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU27061385 - GU90351037
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-06-17 16:20:13
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU27061385 - GU90351037  Eclaté n° 23
[link_rewrite] => clips-piston
[name] => Clips Piston
[id_image] => 3669
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[38] => Array
(
[id_product] => 512
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 20.000000
[wholesale_price] => 11.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => COMMA002
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-04-22 13:37:16
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => COMMA002
[link_rewrite] => commande-starter-manuel-vhb30
[name] => Commande Starter Manuel VHB30
[id_image] => 3962
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[39] => Array
(
[id_product] => 1295
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12207200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-12-15 16:33:52
[advanced_stock_management] => 0
[available_later] => Délai 15 j à 3 semaines
[description_short] => GU12207200
[link_rewrite] => contacteur-point-mort
[name] => Contacteur Point Mort
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
)
Argument [2]
Argument [3]
Argument [4]
Argument [5]
Argument [6]
Argument [7]
Argument [8]
369. $time_start2 = microtime(true);
370. // Call hook method
371. if ($hook_callable)
372. $display = $moduleInstance->{'hook'.$hook_name}($hookArgs);
373. else if ($hook_retro_callable)
374. $display = $moduleInstance->{'hook'.$retro_hook_name}($hookArgs);
375. $time_end = microtime(true);
376. $delay = $time_end - $time_start2;
377. if($delay > 0.1) {
378. $delay = $time_end - $time_start;
379. // error_log(__FILE__ . ' ' . __LINE__ . ' ' . $delay . ' ' . 'hook'.$hook_name . ' ' . $array['module']);
Argument [0]
Array
(
[nbProducts] =>
[catProducts] => Array
(
[0] => Array
(
[id_product] => 8342
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.583333
[wholesale_price] => 6.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937701
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2014-09-04 17:29:33
[date_upd] => 2025-11-19 17:54:44
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Aiguille V9
[link_rewrite] => aiguille-v9
[name] => Aiguille V9
[id_image] => 1609
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[1] => Array
(
[id_product] => 8760
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 491.666667
[wholesale_price] => 318.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ARBCA001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2016-01-30 15:11:42
[date_upd] => 2021-05-03 22:40:29
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>
[link_rewrite] => arbre-a-cames-special-modèle-p3
[name] => Arbre à Cames Special Modèle P3
[id_image] => 2815
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[2] => Array
(
[id_product] => 524
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 23.333333
[wholesale_price] => 12.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12031800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-10-20 21:57:58
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] =>
[link_rewrite] => axe-culbuteur-850-940-1000-1100-1200
[name] => Axe Culbuteur 850/940/1000/1100/1200
[id_image] => 2006
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[3] => Array
(
[id_product] => 877
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.666667
[wholesale_price] => 6.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13933100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-23 16:47:05
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13933100
[link_rewrite] => axe-flotteur
[name] => Axe Flotteur de Carburateur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[4] => Array
(
[id_product] => 229
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 28.333333
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91112122 - GU91112128
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-07-28 16:34:52
[advanced_stock_management] => 0
[available_later] => Délai 10 jours à 15 jours
[description_short] => GU91112122 - GU91112128
[link_rewrite] => bague-bronze-pied-de-bielle-
[name] => Bague Bronze Pied de Bielle
[id_image] => 2735
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[5] => Array
(
[id_product] => 8204
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14230711
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-09-13 17:08:01
[date_upd] => 2021-09-15 19:41:54
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14230711
[link_rewrite] => baladeur-boite-vitesses-1e2e-
[name] => Baladeur boite vitesses 1e/2e
[id_image] => 4700
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[6] => Array
(
[id_product] => 3388
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 100.000000
[wholesale_price] => 67.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14231510
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.25
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2024-02-20 22:55:30
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14231510
[link_rewrite] => baladeur-boite-vitesses-5ème
[name] => Baladeur Boite Vitesses 5ème
[id_image] => 3825
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[7] => Array
(
[id_product] => 7952
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.833333
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ALTBO003 - 1471
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:46:00
[date_upd] => 2025-02-27 12:15:49
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Balai Alternateur Bosch la paire
[link_rewrite] => balai-alternateur-bosch
[name] => Balai Alternateur Bosch la paire
[id_image] => 645
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[8] => Array
(
[id_product] => 941
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 79.166667
[wholesale_price] => 0.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14090202
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-01-21 19:04:19
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU14090202 Eclaté n° 12
[link_rewrite] => bielette-embrayage
[name] => Bielette Embrayage
[id_image] => 5413
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[9] => Array
(
[id_product] => 9381
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 130.000000
[wholesale_price] => 91.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937501
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2021-05-31 18:54:55
[date_upd] => 2021-05-31 18:59:59
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU14937501
[link_rewrite] => boisseau-carburateur-vhb30
[name] => Boisseau Carburateur VHB30
[id_image] => 4640
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[10] => Array
(
[id_product] => 3474
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 65.833333
[wholesale_price] => 47.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU55234700
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.11
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-09-18 12:59:05
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU55234700
[link_rewrite] => bonhomme-de-verrouillage-sur-carter-bv
[name] => Bonhomme Verrouillage sur Carter BV
[id_image] => 3315
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[11] => Array
(
[id_product] => 366
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 4.000000
[wholesale_price] => 0.960000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU93180220
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.005
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-08-28 11:30:02
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU93180220
[link_rewrite] => bouchon-caoutchouc-regard-embrayage
[name] => Bouchon Caoutchouc Regard Embrayage
[id_image] => 2520
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[12] => Array
(
[id_product] => 965
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.666667
[wholesale_price] => 20.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12022600 - GU19351200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-03-31 16:47:43
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Réf : 12022600
[link_rewrite] => bouchon-culasse
[name] => Bouchon Culasse - Bouchon vidange huile
[id_image] => 2584
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[13] => Array
(
[id_product] => 968
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.333333
[wholesale_price] => 18.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12065400
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-09 16:30:45
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12065400
[link_rewrite] => bouchon-epurateur-vilebrequin
[name] => Bouchon Epurateur Vilebrequin
[id_image] => 2770
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[14] => Array
(
[id_product] => 980
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.500000
[wholesale_price] => 6.900000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU95980214
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-10-15 14:47:51
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU95980214
[link_rewrite] => bouchon-vidange
[name] => Bouchon Vidange
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[15] => Array
(
[id_product] => 978
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 15.833333
[wholesale_price] => 9.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU31003766
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-21 22:58:12
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>  Réf : GU31003766
[link_rewrite] => bouchon-vidange-aimanté-d10
[name] => Bouchon Vidange Aimanté D10
[id_image] => 2586
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[16] => Array
(
[id_product] => 977
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 857
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 6.550000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12003702
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.03
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 22:11:53
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12003702
[link_rewrite] => bouchon-vidange-moteur
[name] => Bouchon Vidange Moteur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[17] => Array
(
[id_product] => 239
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 3.833333
[wholesale_price] => 2.300000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => BP7ES
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-05-19 15:02:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Bougie BP7ES
[link_rewrite] => bougie-bp7es
[name] => Bougie BP7ES
[id_image] => 1784
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[18] => Array
(
[id_product] => 987
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 116.666667
[wholesale_price] => 79.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12054000 - GU01054001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-12-07 23:16:00
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine (jours ouvrés)
[description_short] => GU12054000 - GU01054001
[link_rewrite] => bride-arbre-a-cames
[name] => Bride Arbre A Cames
[id_image] => 2802
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[19] => Array
(
[id_product] => 8057
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 18.333333
[wholesale_price] => 9.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12087001 - 2A000376
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-01-20 23:32:32
[date_upd] => 2025-10-02 17:48:32
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12087001 - 2A000376
[link_rewrite] => butée-aiguilles-sur-tige-embrayage-850-1000-1100-1200
[name] => Butée aiguilles sur tige embrayage 850 - 1000 - 1100 - 1200
[id_image] => 874
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[20] => Array
(
[id_product] => 8162
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12082800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-05-08 00:24:18
[date_upd] => 2024-11-27 18:10:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Butée Embrayage
[link_rewrite] => butée-embrayage-
[name] => Butée Embrayage
[id_image] => 1073
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[21] => Array
(
[id_product] => 701
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 22:16:22
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14086100
[link_rewrite] => butée-extérieure-embrayage
[name] => Butée Extérieure Embrayage
[id_image] => 4252
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[22] => Array
(
[id_product] => 702
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.050000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086000
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-10-05 15:11:06
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14086000
[link_rewrite] => butee-interieure-embrayage
[name] => Butee Interieure Embrayage
[id_image] => 3365
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[23] => Array
(
[id_product] => 1032
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.666667
[wholesale_price] => 3.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17134050
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 21:58:32
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17134050
[link_rewrite] => cable-starter-t3-sp-court
[name] => Cable Starter T3 - 1000 SP - California II Court
[id_image] => 2222
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[24] => Array
(
[id_product] => 1031
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.250000
[wholesale_price] => 2.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17133550
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-11-04 19:53:24
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17133550
[link_rewrite] => cable-starter-t3-long
[name] => Cable Starter T3 Long
[id_image] => 2205
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[25] => Array
(
[id_product] => 349
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 141.666667
[wholesale_price] => 85.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 1053140
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.6
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-11-27 18:34:08
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => Cache Alternateur  aluminium poli
[link_rewrite] => cache-alternateur-850-1000-1100-v50
[name] => Cache Alternateur 850 - 1000 - 1100 - V50
[id_image] => 2642
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[26] => Array
(
[id_product] => 1041
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 36.000000
[wholesale_price] => 21.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU18001650
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.27
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-07-04 09:48:29
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU18001650
[link_rewrite] => cache-alternateur-plastique-noir
[name] => Cache Alternateur Plastique Noir
[id_image] => 3294
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[27] => Array
(
[id_product] => 3747
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251022
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-05-31 22:21:18
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU92251022 Sur éclaté pièce n° 7
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3797
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[28] => Array
(
[id_product] => 3748
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-06-06 13:28:05
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU92251030 Pièce n° 20 ou 30
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3798
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[29] => Array
(
[id_product] => 250
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.166667
[wholesale_price] => 2.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05E
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 12:27:42
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05E (bougie avec olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05E
[id_image] => 4318
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[30] => Array
(
[id_product] => 9626
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.000000
[wholesale_price] => 2.700000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05F
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-10-06 13:20:34
[date_upd] => 2025-07-13 12:40:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05F (bougie sans olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05F
[id_image] => 5193
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[31] => Array
(
[id_product] => 7956
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 158.333333
[wholesale_price] => 94.640000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17704300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.5
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:59:58
[date_upd] => 2025-01-25 15:29:04
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU17704300
[link_rewrite] => cellule-redresseuse-adaptable-bosch
[name] => Cellule redresseuse Bosch adaptable
[id_image] => 648
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[32] => Array
(
[id_product] => 562
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 66.666667
[wholesale_price] => 38.750000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU05058030 - 28058060 - 13058030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.55
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-02-11 23:46:54
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU05058030 - 28058060 - 13058030
[link_rewrite] => chaine-distribution-85010001100
[name] => Chaine Distribution 850/1000/1100
[id_image] => 1236
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[33] => Array
(
[id_product] => 3900
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 92.000000
[wholesale_price] => 70.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14158200 - GU03158230
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2025-11-21 11:37:11
[advanced_stock_management] => 0
[available_later] => Délai environ 15 jours
[description_short] => GU14158200 - GU03158230 Pièce n° 14
[link_rewrite] => clapet-décharge
[name] => Clapet Décharge
[id_image] => 4610
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[34] => Array
(
[id_product] => 1212
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 7.850000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14234600
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-02-08 18:49:30
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14234600  sur éclaté n° 4
[link_rewrite] => clavette
[name] => Clavette arbre à cames
[id_image] => 4859
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[35] => Array
(
[id_product] => 1216
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 1.666667
[wholesale_price] => 0.820000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13148300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2021-09-15 19:17:07
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13148300
[link_rewrite] => clavette-pompe-huile
[name] => Clavette Pompe Huile
[id_image] => 3243
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[36] => Array
(
[id_product] => 1217
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 29.166667
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91702355
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-09 12:59:17
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU91702355
[link_rewrite] => clavette-vilebrequin
[name] => Clavette Vilebrequin
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[37] => Array
(
[id_product] => 1247
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 7.666667
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU27061385 - GU90351037
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-06-17 16:20:13
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU27061385 - GU90351037  Eclaté n° 23
[link_rewrite] => clips-piston
[name] => Clips Piston
[id_image] => 3669
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[38] => Array
(
[id_product] => 512
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 20.000000
[wholesale_price] => 11.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => COMMA002
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-04-22 13:37:16
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => COMMA002
[link_rewrite] => commande-starter-manuel-vhb30
[name] => Commande Starter Manuel VHB30
[id_image] => 3962
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[39] => Array
(
[id_product] => 1295
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12207200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-12-15 16:33:52
[advanced_stock_management] => 0
[available_later] => Délai 15 j à 3 semaines
[description_short] => GU12207200
[link_rewrite] => contacteur-point-mort
[name] => Contacteur Point Mort
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
)
[hookExecuted] => 1
[cookie] => Cookie Object
(
[_content:protected] => Array
(
[date_add] => 2025-12-17 18:00:31
[id_lang] => 4
[id_currency] => 1
)
[_name:protected] => 9ffb800e76372160cbb02415dccd7dec
[_expire:protected] => 1767718831
[_domain:protected] => www.motobel.fr
[_path:protected] => /
[_cipherTool:protected] => Rijndael Object
(
[_key:protected] => rvUDbYI459NJcS1aso30RCsjKuNfWogd
[_iv:protected] => eâxû¤@Š2ì%µàÀäZ
)
[_key:protected] => 2foI3Yh6FaLaoun9kvM1ixgrCxR6RQ9wd8G9tDpzIKVTI9eSCjuIJaEc
[_iv:protected] => fTLNORxn
[_modified:protected] => 1
)
[cart] => Cart Object
(
[id] =>
[id_group_shop] => 1
[id_shop] => 1
[id_address_delivery] => 0
[id_address_invoice] => 0
[id_currency] => 1
[id_customer] =>
[id_guest] => 0
[id_lang] => 4
[recyclable] => 1
[gift] => 0
[gift_message] =>
[date_add] =>
[secure_key] =>
[id_carrier] => 0
[date_upd] =>
[checkedTos] =>
[pictures] =>
[textFields] =>
[delivery_option] =>
[allow_seperated_package] =>
[_products:protected] =>
[_taxCalculationMethod:protected] => 0
[webserviceParameters:protected] => Array
(
[fields] => Array
(
[id_address_delivery] => Array
(
[xlink_resource] => addresses
)
[id_address_invoice] => Array
(
[xlink_resource] => addresses
)
[id_currency] => Array
(
[xlink_resource] => currencies
)
[id_customer] => Array
(
[xlink_resource] => customers
)
[id_guest] => Array
(
[xlink_resource] => guests
)
[id_lang] => Array
(
[xlink_resource] => languages
)
)
[associations] => Array
(
[cart_rows] => Array
(
[resource] => cart_row
[virtual_entity] => 1
[fields] => Array
(
[id_product] => Array
(
[required] => 1
[xlink_resource] => products
)
[id_product_attribute] => Array
(
[required] => 1
[xlink_resource] => combinations
)
[quantity] => Array
(
[required] => 1
)
)
)
)
)
[get_shop_from_context:ObjectModelCore:private] => 1
[table:protected] => cart
[identifier:protected] => id_cart
[fieldsRequired:protected] => Array
(
[0] => id_currency
[1] => id_lang
)
[fieldsSize:protected] => Array
(
[secure_key] => 32
)
[fieldsValidate:protected] => Array
(
[id_group_shop] => isUnsignedId
[id_shop] => isUnsignedId
[id_address_delivery] => isUnsignedId
[id_address_invoice] => isUnsignedId
[id_carrier] => isUnsignedId
[id_currency] => isUnsignedId
[id_customer] => isUnsignedId
[id_guest] => isUnsignedId
[id_lang] => isUnsignedId
[recyclable] => isBool
[gift] => isBool
[gift_message] => isMessage
[allow_seperated_package] => isBool
[date_add] => isDateFormat
[date_upd] => isDateFormat
)
[fieldsRequiredLang:protected] => Array
(
)
[fieldsSizeLang:protected] => Array
(
)
[fieldsValidateLang:protected] => Array
(
)
[tables:protected] => Array
(
)
[image_dir:protected] =>
[image_format:protected] => jpg
[def:protected] => Array
(
[table] => cart
[primary] => id_cart
[fields] => Array
(
[id_group_shop] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_shop] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_address_delivery] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_address_invoice] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_carrier] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_currency] => Array
(
[type] => 1
[validate] => isUnsignedId
[required] => 1
)
[id_customer] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_guest] => Array
(
[type] => 1
[validate] => isUnsignedId
)
[id_lang] => Array
(
[type] => 1
[validate] => isUnsignedId
[required] => 1
)
[recyclable] => Array
(
[type] => 2
[validate] => isBool
)
[gift] => Array
(
[type] => 2
[validate] => isBool
)
[gift_message] => Array
(
[type] => 3
[validate] => isMessage
)
[delivery_option] => Array
(
[type] => 3
)
[secure_key] => Array
(
[type] => 3
[size] => 32
)
[allow_seperated_package] => Array
(
[type] => 2
[validate] => isBool
)
[date_add] => Array
(
[type] => 5
[validate] => isDateFormat
)
[date_upd] => Array
(
[type] => 5
[validate] => isDateFormat
)
)
[classname] => Cart Object
*RECURSION*
)
)
[altern] => 1
)
184. $hookExecuted = false;
185. Hook::exec('actionProductListOverride', array(
186. 'nbProducts' => &$this->nbProducts,
187. 'catProducts' => &$this->cat_products,
188. 'hookExecuted' => &$hookExecuted,
189. ));
190.
191. // The hook was not executed, standard working
192. if (!$hookExecuted)
193. {
194. $this->context->smarty->assign('categoryNameComplement', '');
Argument [0]
actionProductListOverride
Argument [1]
Array
(
[nbProducts] =>
[catProducts] => Array
(
[0] => Array
(
[id_product] => 8342
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.583333
[wholesale_price] => 6.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937701
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2014-09-04 17:29:33
[date_upd] => 2025-11-19 17:54:44
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Aiguille V9
[link_rewrite] => aiguille-v9
[name] => Aiguille V9
[id_image] => 1609
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[1] => Array
(
[id_product] => 8760
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 491.666667
[wholesale_price] => 318.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ARBCA001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2016-01-30 15:11:42
[date_upd] => 2021-05-03 22:40:29
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>
[link_rewrite] => arbre-a-cames-special-modèle-p3
[name] => Arbre à Cames Special Modèle P3
[id_image] => 2815
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[2] => Array
(
[id_product] => 524
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 23.333333
[wholesale_price] => 12.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12031800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-10-20 21:57:58
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] =>
[link_rewrite] => axe-culbuteur-850-940-1000-1100-1200
[name] => Axe Culbuteur 850/940/1000/1100/1200
[id_image] => 2006
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[3] => Array
(
[id_product] => 877
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.666667
[wholesale_price] => 6.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13933100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-23 16:47:05
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13933100
[link_rewrite] => axe-flotteur
[name] => Axe Flotteur de Carburateur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[4] => Array
(
[id_product] => 229
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 28.333333
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91112122 - GU91112128
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-07-28 16:34:52
[advanced_stock_management] => 0
[available_later] => Délai 10 jours à 15 jours
[description_short] => GU91112122 - GU91112128
[link_rewrite] => bague-bronze-pied-de-bielle-
[name] => Bague Bronze Pied de Bielle
[id_image] => 2735
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[5] => Array
(
[id_product] => 8204
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14230711
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-09-13 17:08:01
[date_upd] => 2021-09-15 19:41:54
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14230711
[link_rewrite] => baladeur-boite-vitesses-1e2e-
[name] => Baladeur boite vitesses 1e/2e
[id_image] => 4700
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[6] => Array
(
[id_product] => 3388
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 100.000000
[wholesale_price] => 67.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14231510
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.25
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2024-02-20 22:55:30
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14231510
[link_rewrite] => baladeur-boite-vitesses-5ème
[name] => Baladeur Boite Vitesses 5ème
[id_image] => 3825
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[7] => Array
(
[id_product] => 7952
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 10.833333
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => ALTBO003 - 1471
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:46:00
[date_upd] => 2025-02-27 12:15:49
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Balai Alternateur Bosch la paire
[link_rewrite] => balai-alternateur-bosch
[name] => Balai Alternateur Bosch la paire
[id_image] => 645
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[8] => Array
(
[id_product] => 941
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 79.166667
[wholesale_price] => 0.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14090202
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-01-21 19:04:19
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU14090202 Eclaté n° 12
[link_rewrite] => bielette-embrayage
[name] => Bielette Embrayage
[id_image] => 5413
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[9] => Array
(
[id_product] => 9381
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 130.000000
[wholesale_price] => 91.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14937501
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2021-05-31 18:54:55
[date_upd] => 2021-05-31 18:59:59
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU14937501
[link_rewrite] => boisseau-carburateur-vhb30
[name] => Boisseau Carburateur VHB30
[id_image] => 4640
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[10] => Array
(
[id_product] => 3474
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 65.833333
[wholesale_price] => 47.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU55234700
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.11
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-09-18 12:59:05
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU55234700
[link_rewrite] => bonhomme-de-verrouillage-sur-carter-bv
[name] => Bonhomme Verrouillage sur Carter BV
[id_image] => 3315
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[11] => Array
(
[id_product] => 366
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 4.000000
[wholesale_price] => 0.960000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU93180220
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.005
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-08-28 11:30:02
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU93180220
[link_rewrite] => bouchon-caoutchouc-regard-embrayage
[name] => Bouchon Caoutchouc Regard Embrayage
[id_image] => 2520
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[12] => Array
(
[id_product] => 965
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.666667
[wholesale_price] => 20.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12022600 - GU19351200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-03-31 16:47:43
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Réf : 12022600
[link_rewrite] => bouchon-culasse
[name] => Bouchon Culasse - Bouchon vidange huile
[id_image] => 2584
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[13] => Array
(
[id_product] => 968
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 30.333333
[wholesale_price] => 18.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12065400
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-09 16:30:45
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12065400
[link_rewrite] => bouchon-epurateur-vilebrequin
[name] => Bouchon Epurateur Vilebrequin
[id_image] => 2770
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[14] => Array
(
[id_product] => 980
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 11.500000
[wholesale_price] => 6.900000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU95980214
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-10-15 14:47:51
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU95980214
[link_rewrite] => bouchon-vidange
[name] => Bouchon Vidange
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[15] => Array
(
[id_product] => 978
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 15.833333
[wholesale_price] => 9.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU31003766
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-02-21 22:58:12
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] =>  Réf : GU31003766
[link_rewrite] => bouchon-vidange-aimanté-d10
[name] => Bouchon Vidange Aimanté D10
[id_image] => 2586
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[16] => Array
(
[id_product] => 977
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 857
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 6.550000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12003702
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.03
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 22:11:53
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12003702
[link_rewrite] => bouchon-vidange-moteur
[name] => Bouchon Vidange Moteur
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[17] => Array
(
[id_product] => 239
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 3.833333
[wholesale_price] => 2.300000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => BP7ES
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-05-19 15:02:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Bougie BP7ES
[link_rewrite] => bougie-bp7es
[name] => Bougie BP7ES
[id_image] => 1784
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[18] => Array
(
[id_product] => 987
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 154
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 116.666667
[wholesale_price] => 79.400000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12054000 - GU01054001
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-12-07 23:16:00
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine (jours ouvrés)
[description_short] => GU12054000 - GU01054001
[link_rewrite] => bride-arbre-a-cames
[name] => Bride Arbre A Cames
[id_image] => 2802
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[19] => Array
(
[id_product] => 8057
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 18.333333
[wholesale_price] => 9.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12087001 - 2A000376
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-01-20 23:32:32
[date_upd] => 2025-10-02 17:48:32
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU12087001 - 2A000376
[link_rewrite] => butée-aiguilles-sur-tige-embrayage-850-1000-1100-1200
[name] => Butée aiguilles sur tige embrayage 850 - 1000 - 1100 - 1200
[id_image] => 874
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[20] => Array
(
[id_product] => 8162
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 87.500000
[wholesale_price] => 52.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12082800
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2013-05-08 00:24:18
[date_upd] => 2024-11-27 18:10:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => Butée Embrayage
[link_rewrite] => butée-embrayage-
[name] => Butée Embrayage
[id_image] => 1073
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[21] => Array
(
[id_product] => 701
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086100
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.1
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 22:16:22
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14086100
[link_rewrite] => butée-extérieure-embrayage
[name] => Butée Extérieure Embrayage
[id_image] => 4252
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[22] => Array
(
[id_product] => 702
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.050000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14086000
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.15
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-10-05 15:11:06
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU14086000
[link_rewrite] => butee-interieure-embrayage
[name] => Butee Interieure Embrayage
[id_image] => 3365
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[23] => Array
(
[id_product] => 1032
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.666667
[wholesale_price] => 3.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17134050
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-11-16 21:58:32
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17134050
[link_rewrite] => cable-starter-t3-sp-court
[name] => Cable Starter T3 - 1000 SP - California II Court
[id_image] => 2222
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[24] => Array
(
[id_product] => 1031
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.250000
[wholesale_price] => 2.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17133550
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2020-11-04 19:53:24
[advanced_stock_management] => 0
[available_later] => délai 1 semaine
[description_short] => GU17133550
[link_rewrite] => cable-starter-t3-long
[name] => Cable Starter T3 Long
[id_image] => 2205
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[25] => Array
(
[id_product] => 349
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 606
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 141.666667
[wholesale_price] => 85.200000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => 1053140
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.6
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-11-27 18:34:08
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => Cache Alternateur  aluminium poli
[link_rewrite] => cache-alternateur-850-1000-1100-v50
[name] => Cache Alternateur 850 - 1000 - 1100 - V50
[id_image] => 2642
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[26] => Array
(
[id_product] => 1041
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 36.000000
[wholesale_price] => 21.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU18001650
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.27
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-07-04 09:48:29
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU18001650
[link_rewrite] => cache-alternateur-plastique-noir
[name] => Cache Alternateur Plastique Noir
[id_image] => 3294
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[27] => Array
(
[id_product] => 3747
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251022
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-05-31 22:21:18
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU92251022 Sur éclaté pièce n° 7
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3797
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[28] => Array
(
[id_product] => 3748
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 25.000000
[wholesale_price] => 15.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU92251030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.02
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2023-06-06 13:28:05
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU92251030 Pièce n° 20 ou 30
[link_rewrite] => cage-aiguille-boite
[name] => Cage Aiguille Boite
[id_image] => 3798
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[29] => Array
(
[id_product] => 250
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.166667
[wholesale_price] => 2.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05E
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-09-16 12:27:42
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05E (bougie avec olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05E
[id_image] => 4318
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[30] => Array
(
[id_product] => 9626
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 816
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 6.000000
[wholesale_price] => 2.700000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => LB05F
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2023-10-06 13:20:34
[date_upd] => 2025-07-13 12:40:39
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => Capuchon Bougie NGK LB05F (bougie sans olive)
[link_rewrite] => capuchon-bougie-ngk-lb05f
[name] => Capuchon Bougie NGK LB05F
[id_image] => 5193
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[31] => Array
(
[id_product] => 7956
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 280
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 158.333333
[wholesale_price] => 94.640000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU17704300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.5
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-12-06 22:59:58
[date_upd] => 2025-01-25 15:29:04
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours
[description_short] => GU17704300
[link_rewrite] => cellule-redresseuse-adaptable-bosch
[name] => Cellule redresseuse Bosch adaptable
[id_image] => 648
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[32] => Array
(
[id_product] => 562
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 66.666667
[wholesale_price] => 38.750000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU05058030 - 28058060 - 13058030
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.55
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2025-02-11 23:46:54
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU05058030 - 28058060 - 13058030
[link_rewrite] => chaine-distribution-85010001100
[name] => Chaine Distribution 850/1000/1100
[id_image] => 1236
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[33] => Array
(
[id_product] => 3900
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 92.000000
[wholesale_price] => 70.000000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14158200 - GU03158230
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.2
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:20:37
[date_upd] => 2025-11-21 11:37:11
[advanced_stock_management] => 0
[available_later] => Délai environ 15 jours
[description_short] => GU14158200 - GU03158230 Pièce n° 14
[link_rewrite] => clapet-décharge
[name] => Clapet Décharge
[id_image] => 4610
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[34] => Array
(
[id_product] => 1212
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 13.333333
[wholesale_price] => 7.850000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU14234600
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-02-08 18:49:30
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU14234600  sur éclaté n° 4
[link_rewrite] => clavette
[name] => Clavette arbre à cames
[id_image] => 4859
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[35] => Array
(
[id_product] => 1216
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 1.666667
[wholesale_price] => 0.820000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU13148300
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2021-09-15 19:17:07
[advanced_stock_management] => 0
[available_later] =>
[description_short] => GU13148300
[link_rewrite] => clavette-pompe-huile
[name] => Clavette Pompe Huile
[id_image] => 3243
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[36] => Array
(
[id_product] => 1217
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 29.166667
[wholesale_price] => 16.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU91702355
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2023-01-09 12:59:17
[advanced_stock_management] => 0
[available_later] => Délai 8 à 10 jours ouvrés
[description_short] => GU91702355
[link_rewrite] => clavette-vilebrequin
[name] => Clavette Vilebrequin
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[37] => Array
(
[id_product] => 1247
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 7.666667
[wholesale_price] => 4.600000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU27061385 - GU90351037
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.01
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-06-17 16:20:13
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => GU27061385 - GU90351037  Eclaté n° 23
[link_rewrite] => clips-piston
[name] => Clips Piston
[id_image] => 3669
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[38] => Array
(
[id_product] => 512
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 20.000000
[wholesale_price] => 11.800000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => COMMA002
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.05
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2024-04-22 13:37:16
[advanced_stock_management] => 0
[available_later] => Délai 1 semaine
[description_short] => COMMA002
[link_rewrite] => commande-starter-manuel-vhb30
[name] => Commande Starter Manuel VHB30
[id_image] => 3962
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
[39] => Array
(
[id_product] => 1295
[id_supplier] => 0
[id_manufacturer] => 3
[id_category_default] => 909
[on_sale] => 0
[online_only] => 0
[ean13] =>
[upc] =>
[ecotax] => 0.000000
[quantity] => 0
[minimal_quantity] => 1
[price] => 32.500000
[wholesale_price] => 19.500000
[unity] => kg
[unit_price_ratio] => 0.000000
[additional_shipping_cost] => 0.00
[reference] => GU12207200
[supplier_reference] =>
[location] =>
[width] => 0
[height] => 0
[depth] => 0
[weight] => 0.3
[out_of_stock] => 2
[quantity_discount] => 0
[customizable] => 0
[uploadable_files] => 0
[text_fields] => 0
[active] => 1
[available_for_order] => 1
[available_date] => 0000-00-00
[condition] => new
[show_price] => 1
[indexed] => 1
[visibility] => both
[cache_is_pack] => 0
[cache_has_attachments] => 0
[is_virtual] => 0
[cache_default_attribute] => 0
[date_add] => 2012-04-16 18:12:12
[date_upd] => 2022-12-15 16:33:52
[advanced_stock_management] => 0
[available_later] => Délai 15 j à 3 semaines
[description_short] => GU12207200
[link_rewrite] => contacteur-point-mort
[name] => Contacteur Point Mort
[id_image] =>
[legend] =>
[manufacturer_name] => Moto Guzzi
[new] => 0
)
)
[hookExecuted] => 1
)
109. $this->productSort(); // Product sort must be called before assignProductList()
110.
111. $this->assignScenes();
112. $this->assignSubcategories();
113. if ($this->category->id != 1)
114. $this->assignProductList();
115. // print_r($this->cat_products);
116. // mail('blaise@motobel.fr', 'Debug shop initContent', print_r($this->cat_products, true));
117.
118. $this->context->smarty->assign(array(
119. 'category' => $this->category,
163. }
164. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className)))
165. $this->initHeader();
166.
167. if ($this->viewAccess()) {
168. $this->initContent();
169. }
170. else {
171. $this->errors[] = Tools::displayError('Access denied.');
172. }
173.
390. {
391. $mycontroller = Controller::getController($controller_class);
392. if( $_SERVER['REMOTE_ADDR']== IP_DEBUG_BLAISE) {
393. // mail('blaise2@motobel.fr', $time_start . ' ' . __FILE__ . ' ' . __LINE__, $_SERVER['REQUEST_URI'] . print_r($this, true));
394. }
395. $mycontroller->run();
396. if( $_SERVER['REMOTE_ADDR']== IP_DEBUG_BLAISE) {
397. // mail('blaise2@motobel.fr', $time_start . ' ' . __FILE__ . ' ' . __LINE__, $_SERVER['REQUEST_URI'] . print_r($this, true));
398. }
399. }
400. catch (PrestaShopException $e)
75.
76. if( $_SERVER['REMOTE_ADDR']== IP_DEBUG_BLAISE) {
77. //mail('blaise2@motobel.fr', $time_start . ' ' . __FILE__ . ' ' . __LINE__, $_SERVER['REQUEST_URI']);
78. }
79.
80. Dispatcher::getInstance()->dispatch();
81.
82. $time_end = microtime(true);
83. $delay = $time_end - $time_start;
84. if($delay > 1) {
85. // error_log(__FILE__ . ' ' . __LINE__ . ' ' . $delay);