Merge branch 'bootstrap' of https://github.com/PrestaShop/PrestaShop into bootstrap
@@ -252,6 +252,7 @@ class ReferrerCore extends ObjectModel
|
||||
*
|
||||
* @param array $referrers
|
||||
* @param int $employee
|
||||
* @return true
|
||||
*/
|
||||
public static function refreshCache($referrers = null, $employee = null)
|
||||
{
|
||||
@@ -265,7 +266,6 @@ class ReferrerCore extends ObjectModel
|
||||
if (!$referrer->isAssociatedToShop($shop_id))
|
||||
continue;
|
||||
|
||||
$shop = new Shop($shop_id);
|
||||
$stats_visits = $referrer->getStatsVisits(null, $employee);
|
||||
$registrations = $referrer->getRegistrations(null, $employee);
|
||||
$stats_sales = $referrer->getStatsSales(null, $employee);
|
||||
|
||||
@@ -313,12 +313,12 @@ abstract class ControllerCore
|
||||
/**
|
||||
* Add a new javascript file in page header.
|
||||
*
|
||||
* @param mixed $js_uri
|
||||
* @param mixed $name
|
||||
* @param mixed $folder
|
||||
* @return void
|
||||
*/
|
||||
public function addJqueryPlugin($name, $folder = null)
|
||||
{
|
||||
$plugin_path = array();
|
||||
if (is_array($name))
|
||||
{
|
||||
foreach ($name as $plugin)
|
||||
@@ -334,10 +334,10 @@ abstract class ControllerCore
|
||||
{
|
||||
$plugin_path = Media::getJqueryPluginPath($name, $folder);
|
||||
|
||||
if(!empty($plugin_path['css']))
|
||||
$this->addCSS($plugin_path['css']);
|
||||
if(!empty($plugin_path['js']))
|
||||
$this->addJS($plugin_path['js']);
|
||||
if(!empty($plugin_path['css']))
|
||||
$this->addCSS($plugin_path['css']);
|
||||
if(!empty($plugin_path['js']))
|
||||
$this->addJS($plugin_path['js']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -273,7 +273,7 @@ class FrontControllerCore extends Controller
|
||||
else
|
||||
{
|
||||
$page_name = Dispatcher::getInstance()->getController();
|
||||
$page_name = (preg_match('/^[0-9]/', $page_name)) ? 'page_'.$page_name : $page_name;
|
||||
$page_name = (preg_match('/^[0-9]/', $page_name) ? 'page_'.$page_name : $page_name);
|
||||
}
|
||||
|
||||
$this->context->smarty->assign(Meta::getMetaTags($this->context->language->id, $page_name));
|
||||
@@ -346,7 +346,8 @@ class FrontControllerCore extends Controller
|
||||
'PS_STOCK_MANAGEMENT' => Configuration::get('PS_STOCK_MANAGEMENT'),
|
||||
'quick_view' => Configuration::get('PS_QUICK_VIEW'),
|
||||
'shop_phone' => Configuration::get('PS_SHOP_PHONE'),
|
||||
'compared_products' => is_array($compared_products) ? $compared_products : array()
|
||||
'compared_products' => is_array($compared_products) ? $compared_products : array(),
|
||||
'comparator_max_item' => (int)Configuration::get('PS_COMPARATOR_MAX_ITEM')
|
||||
));
|
||||
|
||||
// Add the tpl files directory for mobile
|
||||
@@ -757,6 +758,8 @@ class FrontControllerCore extends Controller
|
||||
$this->addjqueryPlugin('fancybox');
|
||||
$this->addJS(_THEME_JS_DIR_.'quick-view.js');
|
||||
}
|
||||
if (Configuration::get('PS_COMPARATOR_MAX_ITEM') > 0)
|
||||
$this->addJS(_THEME_JS_DIR_.'products-comparison.js');
|
||||
|
||||
// Execute Hook FrontController SetMedia
|
||||
Hook::exec('actionFrontControllerSetMedia', array());
|
||||
|
||||
@@ -705,7 +705,6 @@ class AdminModulesControllerCore extends AdminController
|
||||
$disable_link = $this->context->link->getAdminLink('AdminModules').'&module_name='.$module->name.'&enable=0&tab_module='.$module->tab;
|
||||
$uninstall_link = $this->context->link->getAdminLink('AdminModules').'&module_name='.$module->name.'&uninstall='.$module->name.'&tab_module='.$module->tab;
|
||||
$reset_link = $this->context->link->getAdminLink('AdminModules').'&module_name='.$module->name.'&reset&tab_module='.$module->tab;
|
||||
$update_link = $this->context->link->getAdminLink('AdminModules').'&check_and_update='.$module->name.'&module_name='.$module->name.'&reset&tab_module='.$module->tab;
|
||||
|
||||
$this->context->smarty->assign(array(
|
||||
'module_name' => $module->name,
|
||||
@@ -715,7 +714,7 @@ class AdminModulesControllerCore extends AdminController
|
||||
'module_disable_link' => $disable_link,
|
||||
'module_uninstall_link' => $uninstall_link,
|
||||
'module_reset_link' => $reset_link,
|
||||
'module_update_link' => (Module::needUpgrade($module) ? $update_link : null),
|
||||
'module_update_link' => null, //TODO
|
||||
'trad_link' => $trad_link,
|
||||
'module_languages' => Language::getLanguages(false),
|
||||
'theme_language_dir' => _THEME_LANG_DIR_
|
||||
@@ -751,7 +750,7 @@ class AdminModulesControllerCore extends AdminController
|
||||
// Display module configuration
|
||||
$header = $this->context->smarty->fetch('controllers/modules/configure.tpl');
|
||||
$configuration_bar = $this->context->smarty->fetch('controllers/modules/configuration_bar.tpl');
|
||||
$this->context->smarty->assign('module_content', $header.$configuration_bar.$echo );
|
||||
$this->context->smarty->assign('module_content', $header.$echo.$configuration_bar );
|
||||
}
|
||||
elseif ($echo === true)
|
||||
{
|
||||
|
||||
@@ -207,8 +207,8 @@ class AdminTranslationsControllerCore extends AdminController
|
||||
$packs_to_update = array();
|
||||
$token = Tools::getAdminToken('AdminLanguages'.(int)Tab::getIdFromClassName('AdminLanguages').(int)$this->context->employee->id);
|
||||
$file_name = $this->link_lang_pack.'?version='._PS_VERSION_;
|
||||
$array_stream_context = array('http' => array('method' => 'GET', 'timeout' => 5));
|
||||
if ($lang_packs = Tools::file_get_contents($file_name, false, @stream_context_create($array_stream_context)))
|
||||
$array_stream_context = @stream_context_create(array('http' => array('method' => 'GET', 'timeout' => 8)));
|
||||
if ($lang_packs = Tools::file_get_contents($file_name, false, $array_stream_context))
|
||||
// Notice : for php < 5.2 compatibility, Tools::jsonDecode. The second parameter to true will set us
|
||||
if ($lang_packs != '' && $lang_packs = Tools::jsonDecode($lang_packs, true))
|
||||
foreach ($lang_packs as $key => $lang_pack)
|
||||
@@ -768,7 +768,8 @@ class AdminTranslationsControllerCore extends AdminController
|
||||
$arr_import_lang = explode('|', Tools::getValue('params_import_language')); /* 0 = Language ISO code, 1 = PS version */
|
||||
if (Validate::isLangIsoCode($arr_import_lang[0]))
|
||||
{
|
||||
$content = Tools::file_get_contents('http://www.prestashop.com/download/lang_packs/gzip/'.$arr_import_lang[1].'/'.Tools::strtolower($arr_import_lang[0]).'.gzip');
|
||||
$array_stream_context = @stream_context_create(array('http' => array('method' => 'GET', 'timeout' => 10)));
|
||||
$content = Tools::file_get_contents('http://www.prestashop.com/download/lang_packs/gzip/'.$arr_import_lang[1].'/'.Tools::strtolower($arr_import_lang[0]).'.gzip', false, $array_stream_context);
|
||||
if ($content)
|
||||
{
|
||||
$file = _PS_TRANSLATIONS_DIR_.$arr_import_lang[0].'.gzip';
|
||||
|
||||
@@ -84,7 +84,7 @@ class InstallXmlLoader
|
||||
public function setFixturesPath($path = null)
|
||||
{
|
||||
if ($path === null)
|
||||
$path = _PS_INSTALL_FIXTURES_PATH_.'apple/';
|
||||
$path = _PS_INSTALL_FIXTURES_PATH_.'fashion/';
|
||||
|
||||
$this->path_type = 'fixture';
|
||||
$this->data_path = $path.'data/';
|
||||
@@ -595,7 +595,7 @@ class InstallXmlLoader
|
||||
$dst_path = _PS_IMG_DIR_.$p.'/';
|
||||
$entity_id = $this->retrieveId($entity, $identifier);
|
||||
|
||||
if (!copy($from_path.$identifier.'.'.$extension, $dst_path.$entity_id.'.'.$extension))
|
||||
if (!@copy($from_path.$identifier.'.'.$extension, $dst_path.$entity_id.'.'.$extension))
|
||||
{
|
||||
$this->setError($this->language->l('Cannot create image "%1$s" for entity "%2$s"', $identifier, $entity));
|
||||
return;
|
||||
|
||||
@@ -392,4 +392,3 @@ class InstallControllerHttpProcess extends InstallControllerHttp
|
||||
$this->displayTemplate('process');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -49,8 +49,8 @@ UPDATE `PREFIX_configuration` SET value = '1' WHERE name = 'FOOTER_POWEREDBY';
|
||||
UPDATE `PREFIX_configuration` SET value = 'http://www.prestashop.com' WHERE name = 'BLOCKADVERT_LINK';
|
||||
UPDATE `PREFIX_configuration` SET value = 'store.jpg' WHERE name = 'BLOCKSTORE_IMG';
|
||||
UPDATE `PREFIX_configuration` SET value = 'jpg' WHERE name = 'BLOCKADVERT_IMG_EXT';
|
||||
UPDATE `PREFIX_configuration` SET value = 'CAT2,CAT3,CAT4' WHERE name = 'MOD_BLOCKTOPMENU_ITEMS';
|
||||
UPDATE `PREFIX_configuration` SET value = '' WHERE name = 'MOD_BLOCKTOPMENU_SEARCH';
|
||||
UPDATE `PREFIX_configuration` SET value = 'CAT3,CAT26' WHERE name = 'MOD_BLOCKTOPMENU_ITEMS';
|
||||
UPDATE `PREFIX_configuration` SET value = '0' WHERE name = 'MOD_BLOCKTOPMENU_SEARCH';
|
||||
UPDATE `PREFIX_configuration` SET value = 'http://www.facebook.com/prestashop' WHERE name = 'blocksocial_facebook';
|
||||
UPDATE `PREFIX_configuration` SET value = 'http://www.twitter.com/prestashop' WHERE name = 'blocksocial_twitter';
|
||||
UPDATE `PREFIX_configuration` SET value = 'http://www.prestashop.com/blog/en/feed/' WHERE name = 'blocksocial_rss';
|
||||
@@ -90,9 +90,14 @@ UPDATE `PREFIX_hook_module` SET position = 4
|
||||
WHERE id_module = (SELECT id_module FROM `PREFIX_module` WHERE name = 'blockcart')
|
||||
AND id_hook = @id_hook;
|
||||
|
||||
UPDATE `PREFIX_hook_module` SET position = 5
|
||||
WHERE id_module = (SELECT id_module FROM `PREFIX_module` WHERE name = 'homeslider')
|
||||
AND id_hook = @id_hook;
|
||||
|
||||
/* displayHomeTab && displayHomeTabContent */
|
||||
SET @id_hook = (SELECT id_hook FROM `PREFIX_hook` WHERE name = 'displayHomeTab');
|
||||
SET @id_hook2 = (SELECT id_hook FROM `PREFIX_hook` WHERE name = 'displayHomeTabContent');
|
||||
|
||||
UPDATE `PREFIX_hook_module` SET position = 1
|
||||
WHERE id_module = (SELECT id_module FROM `PREFIX_module` WHERE name = 'blocknewproducts')
|
||||
AND id_hook IN (@id_hook, @id_hook2);
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<image_type id="home_default" name="home_default" width="270" height="270" products="1" categories="0" manufacturers="0" suppliers="0" scenes="0" stores="0"/>
|
||||
<image_type id="large_default" name="large_default" width="458" height="458" products="1" categories="0" manufacturers="0" suppliers="0" scenes="0" stores="0"/>
|
||||
<image_type id="thickbox_default" name="thickbox_default" width="800" height="800" products="1" categories="0" manufacturers="0" suppliers="0" scenes="0" stores="0"/>
|
||||
<image_type id="category_default" name="category_default" width="500" height="150" products="0" categories="1" manufacturers="0" suppliers="0" scenes="0" stores="0"/>
|
||||
<image_type id="category_default" name="category_default" width="870" height="217" products="0" categories="1" manufacturers="0" suppliers="0" scenes="0" stores="0"/>
|
||||
<image_type id="scene_default" name="scene_default" width="520" height="189" products="0" categories="0" manufacturers="0" suppliers="0" scenes="1" stores="0"/>
|
||||
<image_type id="m_scene_default" name="m_scene_default" width="161" height="58" products="0" categories="0" manufacturers="0" suppliers="0" scenes="1" stores="0"/>
|
||||
</entities>
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
<entities>
|
||||
<category id="Women" id_parent="Home" active="1"/>
|
||||
<category id="Coats_and_Jackets" id_parent="Women" active="1"/>
|
||||
<category id="Coats" id_parent="Coats and Jackets" active="1"/>
|
||||
<category id="Jackets" id_parent="Coats and Jackets" active="1"/>
|
||||
<category id="Blazers" id_parent="Coats and Jackets" active="1"/>
|
||||
<category id="Puffer_Jackets" id_parent="Coats and Jackets" active="1"/>
|
||||
<category id="Leather_Jackets" id_parent="Coats and Jackets" active="1"/>
|
||||
<category id="Coats" id_parent="Coats_and_Jackets" active="1"/>
|
||||
<category id="Jackets" id_parent="Coats_and_Jackets" active="1"/>
|
||||
<category id="Blazers" id_parent="Coats_and_Jackets" active="1"/>
|
||||
<category id="Puffer_Jackets" id_parent="Coats_and_Jackets" active="1"/>
|
||||
<category id="Leather_Jackets" id_parent="Coats_and_Jackets" active="1"/>
|
||||
<category id="Tops" id_parent="Women" active="1"/>
|
||||
<category id="T-shirts" id_parent="Tops" active="1"/>
|
||||
<category id="Tops_2" id_parent="Tops" active="1"/>
|
||||
@@ -28,6 +28,6 @@
|
||||
<category id="Hats" id_parent="Accessories" active="1"/>
|
||||
<category id="Handbags" id_parent="Accessories" active="1"/>
|
||||
<category id="Shoes" id_parent="Accessories" active="1"/>
|
||||
<category id="Men" id_parent="Home" active="1"/>
|
||||
<category id="Men" id_parent="Home" active="0"/>
|
||||
</entities>
|
||||
</entity_category>
|
||||
|
||||
@@ -6,16 +6,55 @@
|
||||
<field name="position"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<category_product id="category_product_2_1" id_category="Home" id_product="iPod_Nano" position="0"/>
|
||||
<category_product id="category_product_2_2" id_category="Home" id_product="iPod_shuffle" position="1"/>
|
||||
<category_product id="category_product_2_4" id_category="Home" id_product="MacBook" position="2"/>
|
||||
<category_product id="category_product_2_5" id_category="Home" id_product="iPod_touch" position="3"/>
|
||||
<category_product id="category_product_3_1" id_category="iPods" id_product="iPod_Nano" position="0"/>
|
||||
<category_product id="category_product_3_2" id_category="iPods" id_product="iPod_shuffle" position="1"/>
|
||||
<category_product id="category_product_3_5" id_category="iPods" id_product="iPod_touch" position="2"/>
|
||||
<category_product id="category_product_4_6" id_category="Accessories" id_product="Belkin_Leather_Folio_for_iPod_nano_-_Black_Chocolate" position="0"/>
|
||||
<category_product id="category_product_4_7" id_category="Accessories" id_product="Shure_SE210_Sound-Isolating_Earphones_for_iPod_and_iPhone" position="1"/>
|
||||
<category_product id="category_product_5_3" id_category="Laptops" id_product="MacBook_Air" position="0"/>
|
||||
<category_product id="category_product_5_4" id_category="Laptops" id_product="MacBook" position="1"/>
|
||||
<category_product id="category_product_1_1" id_category="Home" id_product="Dress_with_Sleeves" position="0"/>
|
||||
<category_product id="category_product_1_2" id_category="Home" id_product="Fur_Coat" position="1"/>
|
||||
<category_product id="category_product_1_3" id_category="Home" id_product="5_Pocket_Jean_1" position="2"/>
|
||||
<category_product id="category_product_1_4" id_category="Home" id_product="Short_Blazer" position="3"/>
|
||||
<category_product id="category_product_1_5" id_category="Home" id_product="5_Pocket_Jean_2" position="4"/>
|
||||
<category_product id="category_product_1_6" id_category="Home" id_product="Printed_Chiffon_Dress" position="5"/>
|
||||
<category_product id="category_product_1_6" id_category="Home" id_product="Printed_Dress" position="6"/>
|
||||
<category_product id="category_product_1_6" id_category="Home" id_product="Printed_Dress_2" position="7"/>
|
||||
<category_product id="category_product_2_1" id_category="Coats" id_product="Fur_Coat" position="0"/>
|
||||
<category_product id="category_product_2_2" id_category="Coats" id_product="Textured_Trench_Coat" position="1"/>
|
||||
<category_product id="category_product_2_3" id_category="Coats" id_product="Slim_Cut_Coat" position="2"/>
|
||||
<category_product id="category_product_3_1" id_category="Jackets" id_product="Quilted_Jacket" position="0"/>
|
||||
<category_product id="category_product_4_1" id_category="Blazers" id_product="Suit_Blazer" position="0"/>
|
||||
<category_product id="category_product_4_2" id_category="Blazers" id_product="Short_Blazer" position="1"/>
|
||||
<category_product id="category_product_5_1" id_category="Puffer_Jackets" id_product="Puffer_Jacket" position="0"/>
|
||||
<category_product id="category_product_6_1" id_category="Leather_Jackets" id_product="Leather_Jacket_1" position="0"/>
|
||||
<category_product id="category_product_6_2" id_category="Leather_Jackets" id_product="Leather_Jacket_2" position="1"/>
|
||||
<category_product id="category_product_6_3" id_category="Leather_Jackets" id_product="Leather_Jacket_3" position="2"/>
|
||||
<category_product id="category_product_7_1" id_category="T-shirts" id_product="Short_Sleeve_T-shirts" position="0"/>
|
||||
<category_product id="category_product_7_2" id_category="T-shirts" id_product="Faded_Short_Sleeve_T-shirts" position="1"/>
|
||||
<category_product id="category_product_8_1" id_category="Tops_2" id_product="Cami_Tank_Top" position="0"/>
|
||||
<category_product id="category_product_9_1" id_category="Blouses" id_product="Blouse" position="0"/>
|
||||
<category_product id="category_product_9_2" id_category="Blouses" id_product="Leapoard_Printed_Blouse" position="1"/>
|
||||
<category_product id="category_product_10_1" id_category="Skinny_Cut" id_product="Faded_Jeans" position="0"/>
|
||||
<category_product id="category_product_11_1" id_category="Straight_Cut" id_product="5_Pocket_Jean_1" position="0"/>
|
||||
<category_product id="category_product_11_2" id_category="Straight_Cut" id_product="5_Pocket_Jean_2" position="1"/>
|
||||
<category_product id="category_product_12_1" id_category="Casual_Dresses" id_product="Dress_Gathered_At_The_Waist" position="0"/>
|
||||
<category_product id="category_product_12_2" id_category="Casual_Dresses" id_product="Printed_Dress" position="1"/>
|
||||
<category_product id="category_product_12_3" id_category="Casual_Dresses" id_product="Floral_Dress" position="2"/>
|
||||
<category_product id="category_product_13_1" id_category="Evening_Dresses" id_product="Strapless_Dress_1" position="0"/>
|
||||
<category_product id="category_product_13_2" id_category="Evening_Dresses" id_product="Long_Evening_Dress" position="1"/>
|
||||
<category_product id="category_product_13_3" id_category="Evening_Dresses" id_product="Short_Evening_Dress" position="2"/>
|
||||
<category_product id="category_product_13_4" id_category="Evening_Dresses" id_product="Strapless_Dress_2" position="3"/>
|
||||
<category_product id="category_product_13_5" id_category="Evening_Dresses" id_product="Dress_with_Sleeves" position="4"/>
|
||||
<category_product id="category_product_13_6" id_category="Evening_Dresses" id_product="Printed_Dress_2" position="5"/>
|
||||
<category_product id="category_product_14_1" id_category="Summer_Dresses" id_product="Printed_Summer_Dress_1" position="0"/>
|
||||
<category_product id="category_product_14_2" id_category="Summer_Dresses" id_product="Long_Printed_Dress" position="1"/>
|
||||
<category_product id="category_product_14_3" id_category="Summer_Dresses" id_product="Printed_Summer_Dress_2" position="2"/>
|
||||
<category_product id="category_product_14_4" id_category="Summer_Dresses" id_product="Printed_Chiffon_Dress" position="3"/>
|
||||
<category_product id="category_product_15_1" id_category="Belts" id_product="Studded_Leather_Belt" position="0"/>
|
||||
<category_product id="category_product_15_2" id_category="Belts" id_product="Braided_Belt" position="1"/>
|
||||
<category_product id="category_product_16_1" id_category="Hats" id_product="Bucket_Hat" position="0"/>
|
||||
<category_product id="category_product_16_2" id_category="Hats" id_product="Floppy_Hat" position="1"/>
|
||||
<category_product id="category_product_16_3" id_category="Hats" id_product="Men_Straw_Hat" position="2"/>
|
||||
<category_product id="category_product_17_1" id_category="Handbags" id_product="Bowling_Bag" position="0"/>
|
||||
<category_product id="category_product_17_2" id_category="Handbags" id_product="Leather_Bag" position="1"/>
|
||||
<category_product id="category_product_17_3" id_category="Handbags" id_product="Snake_Skin_Bag" position="2"/>
|
||||
<category_product id="category_product_17_4" id_category="Handbags" id_product="Quilted_Bag" position="3"/>
|
||||
<category_product id="category_product_17_5" id_category="Handbags" id_product="Suede_Bag" position="4"/>
|
||||
<category_product id="category_product_18_1" id_category="Shoes" id_product="Wedge_Shoe" position="0"/>
|
||||
</entities>
|
||||
</entity_category_product>
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
$products = array(
|
||||
'Fur_Coat' => array(
|
||||
'Color' => array('Grey'),
|
||||
'Size' => array('S', 'M', 'L')
|
||||
)
|
||||
);
|
||||
|
||||
$content_product_attribute = '';
|
||||
$content_product_attribute_combination = '';
|
||||
|
||||
foreach ($products as $product => $attribute_groups)
|
||||
{
|
||||
$default_on = 1;
|
||||
$pa_id = 1;
|
||||
$combinations = createCombinations($attribute_groups);
|
||||
|
||||
$pa_id = 1;
|
||||
$pac_id = 1;
|
||||
foreach ($combinations as $attributes)
|
||||
{
|
||||
foreach ($attributes as $attribute_value)
|
||||
{
|
||||
$content_product_attribute_combination .= '<product_attribute_combination id="pac_'.$pac_id.'" id_attribute="'.$attribute_value.'" id_product_attribute="pa_'.$product.'_'.$pa_id.'"/>'."\n";
|
||||
++$pac_id;
|
||||
}
|
||||
$content_product_attribute .= '<product_attribute id="pa_'.$product.'_'.$pa_id.'" id_product="'.$product.'" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="100" weight="0" unit_price_impact="0.00" default_on="'.(string)$default_on.'" minimal_quantity="1" available_date="0000-00-00"><location/></product_attribute>'."\n";
|
||||
$default_on = 0;
|
||||
|
||||
++$pa_id;
|
||||
}
|
||||
}
|
||||
|
||||
echo "This is an XML file, look at the source!\n\n";
|
||||
echo $content_product_attribute;
|
||||
echo "\n\n";
|
||||
echo $content_product_attribute_combination;
|
||||
|
||||
function createCombinations($list)
|
||||
{
|
||||
if (count($list) <= 1)
|
||||
return count($list) ? array_map(create_function('$v', 'return (array($v));'), array_shift($list)) : $list;
|
||||
$res = array();
|
||||
$first = array_pop($list);
|
||||
foreach ($first as $attribute)
|
||||
{
|
||||
$tab = createCombinations($list);
|
||||
foreach ($tab as $to_add)
|
||||
$res[] = is_array($to_add) ? array_merge($to_add, array($attribute)) : array($to_add, $attribute);
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
@@ -6,7 +6,7 @@
|
||||
</fields>
|
||||
<entities>
|
||||
<image id="51714665" id_product="Fur_Coat" cover="1"/>
|
||||
<image id="51714391" id_product="Fut_Coat" cover="0"/>
|
||||
<image id="51714391" id_product="Fur_Coat" cover="0"/>
|
||||
<image id="52168484" id_product="Textured_Trench_Coat" cover="1"/>
|
||||
<image id="52168280" id_product="Textured_Trench_Coat" cover="0"/>
|
||||
<image id="47282631" id_product="Slim_Cut_Coat" cover="1"/>
|
||||
|
||||
@@ -43,183 +43,183 @@
|
||||
<field name="advanced_stock_management"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<product id="Fur_Coat" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" id_category_default="Coats" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="124.581940" wholesale_price="70.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" reference="demo_1" supplier_reference="" 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" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Fur_Coat" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" id_category_default="Coats" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="179.999789" wholesale_price="53.999937" unit_price_ratio="0.000000" additional_shipping_cost="0.00" reference="demo_1" supplier_reference="" 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" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Textured_Trench_Coat" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" id_category_default="Coats" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" reference="demo_2" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Textured_Trench_Coat" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" id_category_default="Coats" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="190.993458" wholesale_price="57.298037" unit_price_ratio="0.000000" additional_shipping_cost="0.00" reference="demo_2" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Slim_Cut_Coat" id_category_default="Coats" reference="demo_3" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Slim_Cut_Coat" id_category_default="Coats" reference="demo_3" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="155.508963" wholesale_price="46.652689" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Quilted_Jacket" id_category_default="Jackets" reference="demo_4" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Quilted_Jacket" id_category_default="Jackets" reference="demo_4" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="90.507852" wholesale_price="27.152356" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Suit_Blazer" id_category_default="Blazers" reference="demo_5" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Suit_Blazer" id_category_default="Blazers" reference="demo_5" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="65.508456" wholesale_price="19.652537" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Short_Blazer" id_category_default="Blazers" reference="demo_6" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Short_Blazer" id_category_default="Blazers" reference="demo_6" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="50.991753" wholesale_price="15.297526" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Puffer_Jacket" id_category_default="Puffer_Jackets" reference="demo_7" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Puffer_Jacket" id_category_default="Puffer_Jackets" reference="demo_7" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="85.998963" wholesale_price="25.799689" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Leather_Jacket_1" id_category_default="Leather_Jackets" reference="demo_8" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Leather_Jacket_1" id_category_default="Leather_Jackets" reference="demo_8" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="68.993654" wholesale_price="20.698096" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Leather_Jacket_2" id_category_default="Leather_Jackets" reference="demo_9" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Leather_Jacket_2" id_category_default="Leather_Jackets" reference="demo_9" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="60.502147" wholesale_price="18.150644" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Leather_Jacket_3" id_category_default="Leather_Jackets" reference="demo_10" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Leather_Jacket_3" id_category_default="Leather_Jackets" reference="demo_10" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="80.501258" wholesale_price="24.150377" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Short_Sleeve_T-shirts" id_category_default="T-shirts" reference="demo_11" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Short_Sleeve_T-shirts" id_category_default="T-shirts" reference="demo_11" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="22.505987" wholesale_price="6.751796" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Faded_Short_Sleeve_T-shirts" id_category_default="T-shirts" reference="demo_12" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Faded_Short_Sleeve_T-shirts" id_category_default="T-shirts" reference="demo_12" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="16.509874" wholesale_price="4.952962" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Cami_Tank_Top" id_category_default="Tops_2" reference="demo_13" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Cami_Tank_Top" id_category_default="Tops_2" reference="demo_13" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="20.996547" wholesale_price="6.298964" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Blouse" id_category_default="Blouses" reference="demo_14" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Blouse" id_category_default="Blouses" reference="demo_14" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="26.999852" wholesale_price="8.099956" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Leapoard_Printed_Blouse" id_category_default="Blouses" reference="demo_15" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Leapoard_Printed_Blouse" id_category_default="Blouses" reference="demo_15" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.993654" wholesale_price="9.298096" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Faded_Jeans" id_category_default="Skinny_Cut" reference="demo_16" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Faded_Jeans" id_category_default="Skinny_Cut" reference="demo_16" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="35.999654" wholesale_price="10.799896" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="5_Pocket_Jean_1" id_category_default="Straight_Cut" reference="demo_17" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="5_Pocket_Jean_1" id_category_default="Straight_Cut" reference="demo_17" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="35.506574" wholesale_price="10.651972" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="5_Pocket_Jean_2" id_category_default="Straight_Cut" reference="demo_18" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="5_Pocket_Jean_2" id_category_default="Straight_Cut" reference="demo_18" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="35.509852" wholesale_price="10.652956" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Dress_Gathered_At_The_Waist" id_category_default="Casual_Dresses" reference="demo_19" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Dress_Gathered_At_The_Waist" id_category_default="Casual_Dresses" reference="demo_19" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="45.991753" wholesale_price="13.797526" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Printed_Dress" id_category_default="Casual_Dresses" reference="demo_20" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Printed_Dress" id_category_default="Casual_Dresses" reference="demo_20" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="25.999852" wholesale_price="7.799956" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Floral_Dress" id_category_default="Casual_Dresses" reference="demo_21" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Floral_Dress" id_category_default="Casual_Dresses" reference="demo_21" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.503654" wholesale_price="9.151096" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<!-- <product id="Wrap_Dress" id_category_default="Casual_Dresses" reference="demo_22" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<!-- <product id="Wrap_Dress" id_category_default="Casual_Dresses" reference="demo_22" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="35.997852" wholesale_price="10.799356" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Dress_With_Straps" id_category_default="Casual_Dresses" reference="demo_23" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Dress_With_Straps" id_category_default="Casual_Dresses" reference="demo_23" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.992147" wholesale_price="9.297644" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product> -->
|
||||
<product id="Strapless_Dress_1" id_category_default="Evening_Dresses" reference="demo_24" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Strapless_Dress_1" id_category_default="Evening_Dresses" reference="demo_24" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="50.991753" wholesale_price="15.297526" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Long_Evening_Dress" id_category_default="Evening_Dresses" reference="demo_25" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Long_Evening_Dress" id_category_default="Evening_Dresses" reference="demo_25" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="50.507496" wholesale_price="15.152249" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Short_Evening_Dress" id_category_default="Evening_Dresses" reference="demo_26" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Short_Evening_Dress" id_category_default="Evening_Dresses" reference="demo_26" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="55.992541" wholesale_price="16.797762" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Strapless_Dress_2" id_category_default="Evening_Dresses" reference="demo_27" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Strapless_Dress_2" id_category_default="Evening_Dresses" reference="demo_27" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="55.998293" wholesale_price="16.799488" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Dress_with_Sleeves" id_category_default="Evening_Dresses" reference="demo_28" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Dress_with_Sleeves" id_category_default="Evening_Dresses" reference="demo_28" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="55.506423" wholesale_price="16.651927" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Printed_Dress_2" id_category_default="Evening_Dresses" reference="demo_29" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Printed_Dress_2" id_category_default="Evening_Dresses" reference="demo_29" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="50.994153" wholesale_price="15.298246" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Printed_Summer_Dress_1" id_category_default="Summer_Dresses" reference="demo_30" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Printed_Summer_Dress_1" id_category_default="Summer_Dresses" reference="demo_30" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.506321" wholesale_price="9.151896" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<!-- <product id="Strapless_Summer_Dress" id_category_default="Summer_Dresses" reference="demo_31" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<!-- <product id="Strapless_Summer_Dress" id_category_default="Summer_Dresses" reference="demo_31" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.995214" wholesale_price="9.298564" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product> -->
|
||||
<product id="Long_Printed_Dress" id_category_default="Summer_Dresses" reference="demo_32" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Long_Printed_Dress" id_category_default="Summer_Dresses" reference="demo_32" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.990457" wholesale_price="9.297137" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Printed_Summer_Dress_2" id_category_default="Summer_Dresses" reference="demo_33" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Printed_Summer_Dress_2" id_category_default="Summer_Dresses" reference="demo_33" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.502569" wholesale_price="9.150771" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Printed_Chiffon_Dress" id_category_default="Summer_Dresses" reference="demo_34" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Printed_Chiffon_Dress" id_category_default="Summer_Dresses" reference="demo_34" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="20.501236" wholesale_price="6.150371" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Studded_Leather_Belt" id_category_default="Belts" reference="demo_35" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Studded_Leather_Belt" id_category_default="Belts" reference="demo_35" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="15.992366" wholesale_price="4.797710" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Braided_Belt" id_category_default="Belts" reference="demo_36" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Braided_Belt" id_category_default="Belts" reference="demo_36" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="15.500369" wholesale_price="4.650111" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Bucket_Hat" id_category_default="Hats" reference="demo_37" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Bucket_Hat" id_category_default="Hats" reference="demo_37" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="30.990521" wholesale_price="9.297156" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Floppy_Hat" id_category_default="Hats" reference="demo_38" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Floppy_Hat" id_category_default="Hats" reference="demo_38" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="25.993036" wholesale_price="7.797911" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Men_Straw_Hat" id_category_default="Hats" reference="demo_39" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Men_Straw_Hat" id_category_default="Hats" reference="demo_39" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="25.502569" wholesale_price="7.650771" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Bowling_Bag" id_category_default="Handbags" reference="demo_40" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Bowling_Bag" id_category_default="Handbags" reference="demo_40" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="50.999999" wholesale_price="15.300000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Leather_Bag" id_category_default="Handbags" reference="demo_41" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Leather_Bag" id_category_default="Handbags" reference="demo_41" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="60.509687" wholesale_price="18.152906" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Snake_Skin_Bag" id_category_default="Handbags" reference="demo_42" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Snake_Skin_Bag" id_category_default="Handbags" reference="demo_42" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="25.998789" wholesale_price="7.799637" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Quilted_Bag" id_category_default="Handbags" reference="demo_43" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Quilted_Bag" id_category_default="Handbags" reference="demo_43" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="20.996688" wholesale_price="6.299006" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Suede_Bag" id_category_default="Handbags" reference="demo_44" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Suede_Bag" id_category_default="Handbags" reference="demo_44" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="45.509632" wholesale_price="13.652890" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
<product id="Wedge_Shoe" id_category_default="Shoes" reference="demo_45" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="66.053500" wholesale_price="33.000000" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<product id="Wedge_Shoe" id_category_default="Shoes" reference="demo_45" id_supplier="Fashion_Supplier" id_manufacturer="Fashion_Manufacturer" on_sale="0" online_only="0" ean13="0" upc="" ecotax="0.000000" quantity="0" minimal_quantity="1" price="45.996532" wholesale_price="13.798960" unit_price_ratio="0.000000" additional_shipping_cost="0.00" supplier_reference="" width="0" height="0" depth="0" weight="0" out_of_stock="2" quantity_discount="0" customizable="0" uploadable_files="0" text_fields="0" active="1" redirect_type="" id_product_redirected="0" available_for_order="1" available_date="0000-00-00" condition="new" show_price="1" indexed="0" cache_is_pack="0" cache_has_attachments="0" is_virtual="0" cache_default_attribute="0" advanced_stock_management="0">
|
||||
<unity/>
|
||||
<location/>
|
||||
</product>
|
||||
|
||||
@@ -18,86 +18,9 @@
|
||||
<field name="available_date"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<product_attribute id="product_attribute_7" id_product="iPod_shuffle" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="10" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_8" id_product="iPod_shuffle" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="20" weight="0" unit_price_impact="0.00" default_on="1" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_9" id_product="iPod_shuffle" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="30" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_10" id_product="iPod_shuffle" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="40" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_12" id_product="MacBook_Air" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="751.672241" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_13" id_product="MacBook_Air" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="1" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_14" id_product="MacBook_Air" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="225.752508" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_15" id_product="MacBook_Air" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="977.424749" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_19" id_product="iPod_touch" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="1" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_22" id_product="iPod_touch" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="75.250836" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_23" id_product="iPod_touch" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="150.501672" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_25" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="4" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_26" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_27" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_28" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_29" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_30" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_31" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="1" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_32" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_33" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_34" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_35" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_36" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_39" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_40" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_41" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="41.806020" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
<product_attribute id="product_attribute_42" id_product="iPod_Nano" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="0" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00">
|
||||
<location/>
|
||||
</product_attribute>
|
||||
</entities>
|
||||
<product_attribute id="pa_Fur_Coat_1" id_product="Fur_Coat" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="100" weight="0" unit_price_impact="0.00" default_on="1" minimal_quantity="1" available_date="0000-00-00"><location/></product_attribute>
|
||||
<product_attribute id="pa_Fur_Coat_2" id_product="Fur_Coat" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="100" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00"><location/></product_attribute>
|
||||
<product_attribute id="pa_Fur_Coat_3" id_product="Fur_Coat" reference="" supplier_reference="" ean13="" upc="" wholesale_price="0.000000" price="0.000000" ecotax="0.000000" quantity="100" weight="0" unit_price_impact="0.00" default_on="0" minimal_quantity="1" available_date="0000-00-00"><location/></product_attribute>
|
||||
|
||||
</entities>
|
||||
</entity_product_attribute>
|
||||
|
||||
@@ -4,57 +4,11 @@
|
||||
<field name="id_attribute" relation="attribute"/>
|
||||
<field name="id_product_attribute" relation="product_attribute"/>
|
||||
</fields>
|
||||
<entities>
|
||||
<product_attribute_combination id="product_attribute_combination_4_7" id_attribute="Blue" id_product_attribute="product_attribute_7"/>
|
||||
<product_attribute_combination id="product_attribute_combination_6_8" id_attribute="Green" id_product_attribute="product_attribute_8"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_9" id_attribute="Metal" id_product_attribute="product_attribute_9"/>
|
||||
<product_attribute_combination id="product_attribute_combination_5_10" id_attribute="Pink" id_product_attribute="product_attribute_10"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_12" id_attribute="Metal" id_product_attribute="product_attribute_12"/>
|
||||
<product_attribute_combination id="product_attribute_combination_9_12" id_attribute="80GB_Parallel_ATA_Drive_4200_rpm" id_product_attribute="product_attribute_12"/>
|
||||
<product_attribute_combination id="product_attribute_combination_10_12" id_attribute="1_60GHz_Intel_Core_2_Duo" id_product_attribute="product_attribute_12"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_13" id_attribute="Metal" id_product_attribute="product_attribute_13"/>
|
||||
<product_attribute_combination id="product_attribute_combination_8_13" id_attribute="Optional_64GB_solid-state_drive" id_product_attribute="product_attribute_13"/>
|
||||
<product_attribute_combination id="product_attribute_combination_10_13" id_attribute="1_60GHz_Intel_Core_2_Duo" id_product_attribute="product_attribute_13"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_14" id_attribute="Metal" id_product_attribute="product_attribute_14"/>
|
||||
<product_attribute_combination id="product_attribute_combination_9_14" id_attribute="80GB_Parallel_ATA_Drive_4200_rpm" id_product_attribute="product_attribute_14"/>
|
||||
<product_attribute_combination id="product_attribute_combination_11_14" id_attribute="1_80GHz_Intel_Core_2_Duo" id_product_attribute="product_attribute_14"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_15" id_attribute="Metal" id_product_attribute="product_attribute_15"/>
|
||||
<product_attribute_combination id="product_attribute_combination_8_15" id_attribute="Optional_64GB_solid-state_drive" id_product_attribute="product_attribute_15"/>
|
||||
<product_attribute_combination id="product_attribute_combination_11_15" id_attribute="1_80GHz_Intel_Core_2_Duo" id_product_attribute="product_attribute_15"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_19" id_attribute="8GB" id_product_attribute="product_attribute_19"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_22" id_attribute="16GB" id_product_attribute="product_attribute_22"/>
|
||||
<product_attribute_combination id="product_attribute_combination_17_23" id_attribute="32GB" id_product_attribute="product_attribute_23"/>
|
||||
<product_attribute_combination id="product_attribute_combination_4_25" id_attribute="Blue" id_product_attribute="product_attribute_25"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_25" id_attribute="16GB" id_product_attribute="product_attribute_25"/>
|
||||
<product_attribute_combination id="product_attribute_combination_4_26" id_attribute="Blue" id_product_attribute="product_attribute_26"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_26" id_attribute="8GB" id_product_attribute="product_attribute_26"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_27" id_attribute="16GB" id_product_attribute="product_attribute_27"/>
|
||||
<product_attribute_combination id="product_attribute_combination_19_27" id_attribute="Yellow" id_product_attribute="product_attribute_27"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_28" id_attribute="8GB" id_product_attribute="product_attribute_28"/>
|
||||
<product_attribute_combination id="product_attribute_combination_19_28" id_attribute="Yellow" id_product_attribute="product_attribute_28"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_29" id_attribute="Metal" id_product_attribute="product_attribute_29"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_29" id_attribute="16GB" id_product_attribute="product_attribute_29"/>
|
||||
<product_attribute_combination id="product_attribute_combination_3_30" id_attribute="Metal" id_product_attribute="product_attribute_30"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_30" id_attribute="8GB" id_product_attribute="product_attribute_30"/>
|
||||
<product_attribute_combination id="product_attribute_combination_14_31" id_attribute="Black" id_product_attribute="product_attribute_31"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_31" id_attribute="16GB" id_product_attribute="product_attribute_31"/>
|
||||
<product_attribute_combination id="product_attribute_combination_14_32" id_attribute="Black" id_product_attribute="product_attribute_32"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_32" id_attribute="8GB" id_product_attribute="product_attribute_32"/>
|
||||
<product_attribute_combination id="product_attribute_combination_7_33" id_attribute="Orange" id_product_attribute="product_attribute_33"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_33" id_attribute="16GB" id_product_attribute="product_attribute_33"/>
|
||||
<product_attribute_combination id="product_attribute_combination_7_34" id_attribute="Orange" id_product_attribute="product_attribute_34"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_34" id_attribute="8GB" id_product_attribute="product_attribute_34"/>
|
||||
<product_attribute_combination id="product_attribute_combination_5_35" id_attribute="Pink" id_product_attribute="product_attribute_35"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_35" id_attribute="16GB" id_product_attribute="product_attribute_35"/>
|
||||
<product_attribute_combination id="product_attribute_combination_5_36" id_attribute="Pink" id_product_attribute="product_attribute_36"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_36" id_attribute="8GB" id_product_attribute="product_attribute_36"/>
|
||||
<product_attribute_combination id="product_attribute_combination_6_39" id_attribute="Green" id_product_attribute="product_attribute_39"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_39" id_attribute="16GB" id_product_attribute="product_attribute_39"/>
|
||||
<product_attribute_combination id="product_attribute_combination_6_40" id_attribute="Green" id_product_attribute="product_attribute_40"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_40" id_attribute="8GB" id_product_attribute="product_attribute_40"/>
|
||||
<product_attribute_combination id="product_attribute_combination_16_41" id_attribute="16GB" id_product_attribute="product_attribute_41"/>
|
||||
<product_attribute_combination id="product_attribute_combination_18_41" id_attribute="Purple" id_product_attribute="product_attribute_41"/>
|
||||
<product_attribute_combination id="product_attribute_combination_15_42" id_attribute="8GB" id_product_attribute="product_attribute_42"/>
|
||||
<product_attribute_combination id="product_attribute_combination_18_42" id_attribute="Purple" id_product_attribute="product_attribute_42"/>
|
||||
<entities><product_attribute_combination id="pac_1" id_attribute="Grey" id_product_attribute="pa_Fur_Coat_1"/>
|
||||
<product_attribute_combination id="pac_2" id_attribute="S" id_product_attribute="pa_Fur_Coat_1"/>
|
||||
<product_attribute_combination id="pac_3" id_attribute="Grey" id_product_attribute="pa_Fur_Coat_2"/>
|
||||
<product_attribute_combination id="pac_4" id_attribute="M" id_product_attribute="pa_Fur_Coat_2"/>
|
||||
<product_attribute_combination id="pac_5" id_attribute="Grey" id_product_attribute="pa_Fur_Coat_3"/>
|
||||
<product_attribute_combination id="pac_6" id_attribute="L" id_product_attribute="pa_Fur_Coat_3"/>
|
||||
</entities>
|
||||
</entity_product_attribute_combination>
|
||||
|
||||
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 7.9 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_attribute>
|
||||
<attribute id="S">
|
||||
<name>S</name>
|
||||
</attribute>
|
||||
<attribute id="M">
|
||||
<name>M</name>
|
||||
</attribute>
|
||||
<attribute id="L">
|
||||
<name>L</name>
|
||||
</attribute>
|
||||
<attribute id="One_size">
|
||||
<name>One size</name>
|
||||
</attribute>
|
||||
<attribute id="Grey">
|
||||
<name>Grey</name>
|
||||
</attribute>
|
||||
<attribute id="Taupe">
|
||||
<name>Taupe</name>
|
||||
</attribute>
|
||||
<attribute id="Beige">
|
||||
<name>Beige</name>
|
||||
</attribute>
|
||||
<attribute id="White">
|
||||
<name>White</name>
|
||||
</attribute>
|
||||
<attribute id="Off_White">
|
||||
<name>Off White</name>
|
||||
</attribute>
|
||||
<attribute id="Red">
|
||||
<name>Red</name>
|
||||
</attribute>
|
||||
<attribute id="Black">
|
||||
<name>Black</name>
|
||||
</attribute>
|
||||
<attribute id="Camel">
|
||||
<name>Camel</name>
|
||||
</attribute>
|
||||
<attribute id="Orange">
|
||||
<name>Orange</name>
|
||||
</attribute>
|
||||
<attribute id="Blue">
|
||||
<name>Blue</name>
|
||||
</attribute>
|
||||
<attribute id="Green">
|
||||
<name>Green</name>
|
||||
</attribute>
|
||||
<attribute id="Yellow">
|
||||
<name>Yellow</name>
|
||||
</attribute>
|
||||
<attribute id="Brown">
|
||||
<name>Brown</name>
|
||||
</attribute>
|
||||
<attribute id="35">
|
||||
<name>35</name>
|
||||
</attribute>
|
||||
<attribute id="36">
|
||||
<name>36</name>
|
||||
</attribute>
|
||||
<attribute id="37">
|
||||
<name>37</name>
|
||||
</attribute>
|
||||
<attribute id="38">
|
||||
<name>38</name>
|
||||
</attribute>
|
||||
<attribute id="39">
|
||||
<name>39</name>
|
||||
</attribute>
|
||||
<attribute id="40">
|
||||
<name>40</name>
|
||||
</attribute>
|
||||
</entity_attribute>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_attribute_group>
|
||||
<attribute_group id="Size">
|
||||
<name>Size</name>
|
||||
<public_name>Size</public_name>
|
||||
</attribute_group>
|
||||
<attribute_group id="Shoes_Size">
|
||||
<name>Shoes Size</name>
|
||||
<public_name>Size</public_name>
|
||||
</attribute_group>
|
||||
<attribute_group id="Color">
|
||||
<name>Color</name>
|
||||
<public_name>Color</public_name>
|
||||
</attribute_group>
|
||||
</entity_attribute_group>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list_attributegroup>
|
||||
<attributegroup id="Size">
|
||||
<name><![CDATA[Size]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="Size_public">
|
||||
<name><![CDATA[Size]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="color">
|
||||
<name><![CDATA[Color]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="color_public">
|
||||
<name><![CDATA[Color]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="Shoes_Size">
|
||||
<name><![CDATA[Shoes size]]></name>
|
||||
</attributegroup>
|
||||
<attributegroup id="Shoes_Size_public">
|
||||
<name><![CDATA[Size]]></name>
|
||||
</attributegroup>
|
||||
</list_attributegroup>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_carrier>
|
||||
<carrier id="My_carrier" id_shop="1">
|
||||
<delay>Delivery next day!</delay>
|
||||
</carrier>
|
||||
</entity_carrier>
|
||||
@@ -0,0 +1,193 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_category>
|
||||
<category id="Women" id_shop="1">
|
||||
<name>Women</name>
|
||||
<description>You will find here all woman fashion collections. This category includes all the basics of your wardrobe and much more: shoes, accessories, printed t-shirts, feminine dresses, women's jeans!</description>
|
||||
<link_rewrite>women</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Coats_and_Jackets" id_shop="1">
|
||||
<name>Coats and Jackets</name>
|
||||
<description>Coats, jackets, blazers, puffer jackets and leather jackets! Enjoy our wide choice of coat to pick the one who will keep you warm during winter. </description>
|
||||
<link_rewrite>coats-jackets</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Coats" id_shop="1">
|
||||
<name>Coats</name>
|
||||
<description>Choose the perfect coat that best suits your style. Casual, classic, modern, timeless coats you will find everyting here!</description>
|
||||
<link_rewrite>coats</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Jackets" id_shop="1">
|
||||
<name>Jackets</name>
|
||||
<description>Get your wardrobe covered with our wide range of jackets!</description>
|
||||
<link_rewrite>jackets</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Blazers" id_shop="1">
|
||||
<name>Blazers</name>
|
||||
<description>Opt for a modern silhouette by selecting from our wide range of blazers.</description>
|
||||
<link_rewrite>blazers</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Puffer_Jackets" id_shop="1">
|
||||
<name>Puffer Jackets</name>
|
||||
<description>The must have of winter, find the perfect puffer jacket to keep you warm and stylish during winter.</description>
|
||||
<link_rewrite>puffer-jackets</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Leather_Jackets" id_shop="1">
|
||||
<name>Leather Jackets</name>
|
||||
<description>Perfect for the beginning of the season, the leather jacket will give you a rock style for any occasion.</description>
|
||||
<link_rewrite>leather-jackets</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Tops" id_shop="1">
|
||||
<name>Tops</name>
|
||||
<description>Choose from t-shirts, tops, blouses, short sleeves, long sleeves, tank tops, 3/4 sleeves and more. Find the cut that suits you the best!</description>
|
||||
<link_rewrite>tops</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="T-shirts" id_shop="1">
|
||||
<name>T-shirts</name>
|
||||
<description>The must have of your wardrobe, take a look at our different colors, shapes and style of our collection!</description>
|
||||
<link_rewrite>tshirts</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Tops_2" id_shop="1">
|
||||
<name>Tops</name>
|
||||
<description>Choose the top that best suits you from the wide variety of tops we have. </description>
|
||||
<link_rewrite>top</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Blouses" id_shop="1">
|
||||
<name>Blouses</name>
|
||||
<description>Match your favorites blouses with the right accessories for the perfect look.</description>
|
||||
<link_rewrite>blouses</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Pants" id_shop="1">
|
||||
<name>Pants</name>
|
||||
<description>How to choose a fashion woman pants? Skinny cut, straight cut, benefit from a wide choice and choose your pants here!</description>
|
||||
<link_rewrite>pants</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Skinny_Cut" id_shop="1">
|
||||
<name>Skinny Cut</name>
|
||||
<description>To get the perfect minimalist silhouette, take a look to our skinny cut jeans!</description>
|
||||
<link_rewrite>skinny-cut</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category><category id="Straight_Cut" id_shop="1">
|
||||
<name>Straight Cut</name>
|
||||
<description>Opt for a straight cut jean to have the perfect classic look;</description>
|
||||
<link_rewrite>straight-cut</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category><category id="Dresses" id_shop="1">
|
||||
<name>Dresses</name>
|
||||
<description>Find your favorites dresses from our wide choice of evening, casual or summer dresses! We offer dresses for every day, every style and every occasion.</description>
|
||||
<link_rewrite>dresses</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Casual_Dresses" id_shop="1">
|
||||
<name>Casual Dresses</name>
|
||||
<description>You are looking for a dress for every day? Take a look at our selection of dresses to find one that suits you.</description>
|
||||
<link_rewrite>casual-dresses</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Evening_Dresses" id_shop="1">
|
||||
<name>Evening Dresses</name>
|
||||
<description>Browse our different dresses to choose the perfect dress for an unforgettable evening!</description>
|
||||
<link_rewrite>evening-dresses</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Summer_Dresses" id_shop="1">
|
||||
<name>Summer Dresses</name>
|
||||
<description>Short dress, long dress, silk dress, printed dress, you will find the perfect dress for summer.</description>
|
||||
<link_rewrite>summer-dresses</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Accessories" id_shop="1">
|
||||
<name>Accessories</name>
|
||||
<description>Shoes, bags, belts, hats... Our range of accessories will enhance your silhouette and make you more feminine</description>
|
||||
<link_rewrite>accessories</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Belts" id_shop="1">
|
||||
<name>Belts</name>
|
||||
<description> thin skinny belts, leather waist belts and hip belts... Choose among our wide collection to accessorize your outfit. </description>
|
||||
<link_rewrite>belts</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Hats" id_shop="1">
|
||||
<name>Hats</name>
|
||||
<description>Accessorize your look with our range of hats. In every color, style, shape and size, you're sure to find your perfect topper outfit here.</description>
|
||||
<link_rewrite>hats</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Handbags" id_shop="1">
|
||||
<name>Handbags</name>
|
||||
<description>The bag is an essential accessory in the wardrobe of a woman. Find a bag that will go perfectly with your outfit of the day!</description>
|
||||
<link_rewrite>handbags</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Shoes" id_shop="1">
|
||||
<name>Shoes</name>
|
||||
<description>A wide variety of women's shoes is available. You will find boots, shoes, slippers, sandals and sneakers to go with your outfit of the day.</description>
|
||||
<link_rewrite>shoes</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
<category id="Men" id_shop="1">
|
||||
<name>Men</name>
|
||||
<description></description>
|
||||
<link_rewrite>men</link_rewrite>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</category>
|
||||
</entity_category>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_feature>
|
||||
<feature id="Height">
|
||||
<name>Height</name>
|
||||
</feature>
|
||||
<feature id="Width">
|
||||
<name>Width</name>
|
||||
</feature>
|
||||
<feature id="Depth">
|
||||
<name>Depth</name>
|
||||
</feature>
|
||||
<feature id="Weight">
|
||||
<name>Weight</name>
|
||||
</feature>
|
||||
<feature id="Compositions">
|
||||
<name>Compositions</name>
|
||||
</feature>
|
||||
</entity_feature>
|
||||
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_feature_value>
|
||||
<feature_value id="Polyester">
|
||||
<value>Polyester</value>
|
||||
</feature_value>
|
||||
<feature_value id="Wool">
|
||||
<value>Wool</value>
|
||||
</feature_value>
|
||||
<feature_value id="Viscose">
|
||||
<value>Viscose</value>
|
||||
</feature_value>
|
||||
<feature_value id="Elastane">
|
||||
<value>Elastane</value>
|
||||
</feature_value>
|
||||
<feature_value id="Cotton">
|
||||
<value>Cotton</value>
|
||||
</feature_value>
|
||||
<feature_value id="Silk">
|
||||
<value>Silk</value>
|
||||
</feature_value>
|
||||
<feature_value id="Suede">
|
||||
<value>Suede</value>
|
||||
</feature_value>
|
||||
<feature_value id="Straw">
|
||||
<value>Straw</value>
|
||||
</feature_value>
|
||||
<feature_value id="Leather">
|
||||
<value>Leather</value>
|
||||
</feature_value>
|
||||
<feature_value id="2_75_in">
|
||||
<value>2.75 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="2_06_in">
|
||||
<value>2.06 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="49_2_g">
|
||||
<value>49.2 g</value>
|
||||
</feature_value>
|
||||
<feature_value id="0_26_in">
|
||||
<value>0.26 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="1_07_in">
|
||||
<value>1.07 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="1_62_in">
|
||||
<value>1.62 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="15_5_g">
|
||||
<value>15.5 g</value>
|
||||
</feature_value>
|
||||
<feature_value id="0_41_in_clip_included">
|
||||
<value>0.41 in (clip included)</value>
|
||||
</feature_value>
|
||||
<feature_value id="4_33_in">
|
||||
<value>4.33 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="2_76_in">
|
||||
<value>2.76 in</value>
|
||||
</feature_value>
|
||||
<feature_value id="120g">
|
||||
<value>120g</value>
|
||||
</feature_value>
|
||||
<feature_value id="0_31_in">
|
||||
<value>0.31 in</value>
|
||||
</feature_value>
|
||||
</entity_feature_value>
|
||||
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list_featurevalue>
|
||||
<featurevalue id="Polyester">
|
||||
<value><![CDATA[Polyester]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Wool">
|
||||
<value><![CDATA[Wool]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Viscose">
|
||||
<value><![CDATA[Viscose]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Elastane">
|
||||
<value><![CDATA[Elastane]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Cotton">
|
||||
<value><![CDATA[Cotton]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Silk">
|
||||
<value><![CDATA[Silk]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Suede">
|
||||
<value><![CDATA[Suede]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Straw">
|
||||
<value><![CDATA[Straw]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="Leather">
|
||||
<value><![CDATA[Leather]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="2.75in">
|
||||
<value><![CDATA[2.75 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="2.06in">
|
||||
<value><![CDATA[2.06 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="49.2g">
|
||||
<value><![CDATA[49.2 g]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="0.26in">
|
||||
<value><![CDATA[0.26 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="1.07in">
|
||||
<value><![CDATA[1.07 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="1.62in">
|
||||
<value><![CDATA[1.62 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="15.5g">
|
||||
<value><![CDATA[15.5 g]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="0.41in">
|
||||
<value><![CDATA[0.41 in (clip included)]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="4.33in">
|
||||
<value><![CDATA[4.33 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="2.76in">
|
||||
<value><![CDATA[2.76 in]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="120g">
|
||||
<value><![CDATA[120g]]></value>
|
||||
</featurevalue>
|
||||
<featurevalue id="0.31in">
|
||||
<value><![CDATA[0.31 in]]></value>
|
||||
</featurevalue>
|
||||
</list_featurevalue>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity image>
|
||||
<image id="51714665"><legend>Fur Coat</legend>
|
||||
<image id="51714391"><legend>Fut Coat</legend>
|
||||
<image id="52168484"><legend>Textured Trench Coat</legend>
|
||||
<image id="52168280"><legend>Textured Trench Coat</legend>
|
||||
<image id="47282631"><legend>Slim Cut Coat</legend>
|
||||
<image id="47282630"><legend>Slim Cut Coat</legend>
|
||||
<image id="51752064"><legend>Quilted Jacket</legend>
|
||||
<image id="51749203"><legend>Quilted Jacket</legend>
|
||||
<image id="44516625"><legend>Suit Blazer</legend>
|
||||
<image id="44516622"><legend>Suit Blazer</legend>
|
||||
<image id="44516564"><legend>Suit Blazer</legend>
|
||||
<image id="49074621"><legend>Short Blazer</legend>
|
||||
<image id="46735661"><legend>Puffer Jacket</legend>
|
||||
<image id="46735663"><legend>Puffer Jacket</legend>
|
||||
<image id="46735662"><legend>Puffer Jacket</legend>
|
||||
<image id="46579225"><legend>Leather Jacket</legend>
|
||||
<image id="44777244"><legend>Leather Jacket</legend>
|
||||
<image id="51704249"><legend>Leather Jacket</legend>
|
||||
<image id="51704300"><legend>Leather Jacket</legend>
|
||||
<image id="53012881"><legend>Leather Jacket</legend>
|
||||
<image id="58060821"><legend>Leather Jacket</legend>
|
||||
<image id="58060809"><legend>Leather Jacket</legend>
|
||||
<image id="56578228"><legend>Short Sleeve T-shirts</legend>
|
||||
<image id="56578167"><legend>Short Sleeve T-shirts</legend>
|
||||
<image id="51748593"><legend>Faded Short Sleeve T-shirts</legend>
|
||||
<image id="51748591"><legend>Faded Short Sleeve T-shirts</legend>
|
||||
<image id="51748557"><legend>Faded Short Sleeve T-shirts</legend>
|
||||
<image id="51748562"><legend>Faded Short Sleeve T-shirts</legend>
|
||||
<image id="51746995"><legend>Cami Tank Top</legend>
|
||||
<image id="51747077"><legend>Cami Tank Top</legend>
|
||||
<image id="51747076"><legend>Cami Tank Top</legend>
|
||||
<image id="51746996"><legend>Blouse</legend>
|
||||
<image id="51746998"><legend>Blouse</legend>
|
||||
<image id="44775785"><legend>Blouse</legend>
|
||||
<image id="51747764"><legend>Leapoard Printed Blouse</legend>
|
||||
<image id="51747825"><legend>Leapoard Printed Blouse</legend>
|
||||
<image id="46581333"><legend>Faded Jeans</legend>
|
||||
<image id="46581331"><legend>Faded Jeans</legend>
|
||||
<image id="50073550"><legend>5 Pocket Jean</legend>
|
||||
<image id="50144042"><legend>5 Pocket Jean</legend>
|
||||
<image id="49218038"><legend>5 Pocket Jean</legend>
|
||||
<image id="56302389"><legend>5 Pocket Jean</legend>
|
||||
<image id="56302388"><legend>5 Pocket Jean</legend>
|
||||
<image id="46581237"><legend>Dress Gathered At The Waist</legend>
|
||||
<image id="46581143"><legend>Dress Gathered At The Waist</legend>
|
||||
<image id="53803858"><legend>Printed Dress</legend>
|
||||
<image id="53840339"><legend>Printed Dress</legend>
|
||||
<image id="51746910"><legend>Floral Dress</legend>
|
||||
<image id="46547668"><legend>Floral Dress</legend>
|
||||
<image id="51746908"><legend>Floral Dress</legend>
|
||||
<image id="51746913"><legend>Strapless Dress</legend>
|
||||
<image id="51746688"><legend>Strapless Dress</legend>
|
||||
<image id="47520772"><legend>Long Evening Dress</legend>
|
||||
<image id="47520692"><legend>Long Evening Dress</legend>
|
||||
<image id="51747209"><legend>Short Evening Dress</legend>
|
||||
<image id="46578558"><legend>Short Evening Dress</legend>
|
||||
<image id="55982428"><legend>Strapless Dress</legend>
|
||||
<image id="55982424"><legend>Strapless Dress</legend>
|
||||
<image id="46578616"><legend>Dress with Sleeves</legend>
|
||||
<image id="44775751"><legend>Dress with Sleeves</legend>
|
||||
<image id="56766964"><legend>Printed Dress</legend>
|
||||
<image id="56766814"><legend>Printed Dress</legend>
|
||||
<image id="51747941"><legend>Printed Summer Dress</legend>
|
||||
<image id="51747942"><legend>Printed Summer Dress</legend>
|
||||
<image id="46579412"><legend>Printed Summer Dress</legend>
|
||||
<image id="46579411"><legend>Printed Summer Dress</legend>
|
||||
<image id="44185464"><legend>Long Printed Dress</legend>
|
||||
<image id="44185465"><legend>Long Printed Dress</legend>
|
||||
<image id="46581062"><legend>Printed Summer Dress</legend>
|
||||
<image id="46579408"><legend>Printed Summer Dress</legend>
|
||||
<image id="46579410"><legend>Printed Summer Dress</legend>
|
||||
<image id="46547412"><legend>Printed Summer Dress</legend>
|
||||
<image id="51747994"><legend>Printed Chiffon Dress</legend>
|
||||
<image id="46581032"><legend>Printed Chiffon Dress</legend>
|
||||
<image id="46581029"><legend>Printed Chiffon Dress</legend>
|
||||
<image id="46578775"><legend>Printed Chiffon Dress</legend>
|
||||
<image id="48628295"><legend>Studded Leather Belt</legend>
|
||||
<image id="48628300"><legend>Studded Leather Belt</legend>
|
||||
<image id="52817654"><legend>Braided Belt</legend>
|
||||
<image id="52817951"><legend>Bucket Hat</legend>
|
||||
<image id="50728708"><legend>Floppy Hat</legend>
|
||||
<image id="52817893"><legend>Men Straw Hat</legend>
|
||||
<image id="47637687"><legend>Bowling Bag</legend>
|
||||
<image id="49753531"><legend>Leather Bag</legend>
|
||||
<image id="48552647"><legend>Snake Skin Bag</legend>
|
||||
<image id="56505660"><legend>Quilted Bag</legend>
|
||||
<image id="57204709"><legend>Suede Bag</legend>
|
||||
<image id="48526078"><legend>Wedge Shoe</legend>
|
||||
</entity image>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_manufacturer>
|
||||
<manufacturer id="Fashion_Manufacturer">
|
||||
<description/>
|
||||
<short_description/>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</manufacturer>
|
||||
</entity_manufacturer>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_order_message>
|
||||
<order_message id="Delay">
|
||||
<name>Delay</name>
|
||||
<message>Hi,
|
||||
|
||||
Unfortunately, an item on your order is currently out of stock. This may cause a slight delay in delivery.
|
||||
Please accept our apologies and rest assured that we are working hard to rectify this.
|
||||
|
||||
Best regards,</message>
|
||||
</order_message>
|
||||
</entity_order_message>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list_ordermessage>
|
||||
<ordermessage id="delay">
|
||||
<name><![CDATA[Delay]]></name>
|
||||
<message><![CDATA[Hi,
Unfortunately, an item on your order is currently out of stock. This may cause a slight delay in delivery.
Please accept our apologies and rest assured that we are working hard to rectify this.
Best regards,]]></message>
|
||||
</ordermessage>
|
||||
</list_ordermessage>
|
||||
@@ -0,0 +1,464 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_product>
|
||||
<product id="Fur_Coat" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>This stylish short sleeve faux fur coat will keep you warm this winter. The thick knit collar adds an orginal touch to this elegant coat.</description_short>
|
||||
<link_rewrite>fur-coat</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Fur Coat</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Textured_Trench_Coat" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>This flattering fitted trench coat is the ideal piece for the season. The warm collar will keep you warm for any winter occasion.</description_short>
|
||||
<link_rewrite>textured-trench-coat</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Textured Trench Coat</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Slim_Cut_Coat" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>A stylish double-breasted coat with a high collar. Slim cut and belted to emphasize your waist and your femininity!</description_short>
|
||||
<link_rewrite>slim-cut-coat</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Slim Cut Coat</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Quilted_Jacket" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>This quilted jacket with zipper detail and built-in hood is perfect for Fall. Comfortable fit with silver sleeves and shoulders.</description_short>
|
||||
<link_rewrite>quilted-jacket</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Quilted Jacket</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Suit_Blazer" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Suit style blazer with structured shoulders and front side gold engraved buttons. Ideal for the mid-season.</description_short>
|
||||
<link_rewrite>suit-blazer</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Suit Blazer</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Short_Blazer" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Short cotton blazer with black and white polka dots. Front side button closures and three quarter length sleeves. Complete the look with a delicate necklace.</description_short>
|
||||
<link_rewrite>short-blazer</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Short Blazer</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Puffer_Jacket" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Puffer jacket with treated fabric and a removable faur fux hood. Flattering fit with a belt buckle and loops. Fitting for winter fashion.</description_short>
|
||||
<link_rewrite>Puffer_Jacket</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Puffer Jacket</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Leather_Jacket_1" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Biker style jacket with asymmetrical zipper front. Side pockets and zippered cuffs.</description_short>
|
||||
<link_rewrite>leather-jacket</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Leather Jacket</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Leather_Jacket_2" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Zip up biker inspired leather jacket with collar. The two zippered pockets on the front gives this jacket rock style flare.</description_short>
|
||||
<link_rewrite>leather-jacket</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Leather Jacket</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Leather_Jacket_3" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Biker leather jacket with padded and tie-up detailed sleeves. The structured shoulders makes this jacket super stylish.</description_short>
|
||||
<link_rewrite>leather-jacket</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Leather Jacket</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Short_Sleeve_T-shirts" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Soft stretch jersey v-neck tee with short sleeves. A delightful green for a colorful summer.</description_short>
|
||||
<link_rewrite>short-sleeve-tshirts</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Short Sleeve T-shirts</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Faded_Short_Sleeve_T-shirts" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Faded short sleeve t-shirt with high neckline. Soft and stretchy material for a comfortable fit. Accessorize with a straw hat and you're ready for summer!</description_short>
|
||||
<link_rewrite>faded-short-sleeve-tshirts</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Faded Short Sleeve T-shirts</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Cami_Tank_Top" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Pure cotton printed top with waist elastic band for a perfect fit. The thin straps will highlight chest on a hot summer day.</description_short>
|
||||
<link_rewrite>Cami_Tank_Top</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Cami Tank Top</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product><product id="Blouse" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Short sleeved blouse with feminine draped sleeve detail. </description_short>
|
||||
<link_rewrite>blouse</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Blouse</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Leapoard_Printed_Blouse" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Elegant leopard print silky blouse with chiffon puffed sleeves.</description_short>
|
||||
<link_rewrite>leapoard_printed_blouse</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Leapoard Printed Blouse</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Faded_Jeans" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>5-pocket washed denim stretchy jeans with low waist and just the right cut.</description_short>
|
||||
<link_rewrite>faded-jeans</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Faded Jeans</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="5_Pocket_Jean_1" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>5-pocket blue jean with zipper and button closure. Straight cut fit.</description_short>
|
||||
<link_rewrite>5-pocket-jean</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>5 Pocket Jean</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="5_Pocket_Jean_2" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>5-pocket blue jean with zipper and button closure. Straight cut fit.</description_short>
|
||||
<link_rewrite>5-pocket-jean</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>5 Pocket Jean</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Dress_Gathered_At_The_Waist" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>V-neck cut dress gathered at the waist for a flattering waistline. 3/4 sleeves and draped.</description_short>
|
||||
<link_rewrite>Dress_Gathered_At_The_Waist</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Dress gathered at the waist</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Printed_Dress" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>100% cotton double printed dress. Black and white striped top and orange high waisted skater skirt bottom.</description_short>
|
||||
<link_rewrite>printed-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Printed Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Floral_Dress" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Lace embroidered dress with floral detail. Tie-up spaghetti straps .</description_short>
|
||||
<link_rewrite>floral-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Floral Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Strapless_Dress_1" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Strapless cinched waist dress with floral print.</description_short>
|
||||
<link_rewrite>strapless-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Strapless Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Long_Evening_Dress" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Long sleeve jersey dress. Mid knee length.</description_short>
|
||||
<link_rewrite>long-evening-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Long Evening Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Short_Evening_Dress" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Short baby doll dress with neckline bow. Detailed finishes at the bottom of the dress.</description_short>
|
||||
<link_rewrite>short-evening-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Short Evening Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Strapless_Dress_2" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Ruffle strapless dress with floral prints and knotted blue waist belt.</description_short>
|
||||
<link_rewrite>strapless-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Strapless Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Dress_with_Sleeves" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Black evening dress with puffed sleeve accents. Leather lining on frontside of the dress.</description_short>
|
||||
<link_rewrite>dress-with-sleeves</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Dress with Sleeves</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Printed_Dress_2" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Printed evening dress with straight sleeves with black thin waist belt and ruffled linings.</description_short>
|
||||
<link_rewrite>printed-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Printed Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Printed_Summer_Dress_1" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Long printed dress with thin adjustable straps. V-neckline and wiring under the bust with ruffles at the bottom of the dress.</description_short>
|
||||
<link_rewrite>printed-summer-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Printed Summer Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Long_Printed_Dress" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Long printed empire waist dress with behind the neck tie straps.</description_short>
|
||||
<link_rewrite>long-printed-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Long Printed Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Printed_Summer_Dress_2" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Sleeveless knee-length chiffon dress. V-neckline with elastic under the bust lining.</description_short>
|
||||
<link_rewrite>printed-summer-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Printed Summer Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Printed_Chiffon_Dress" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Printed chiffon knee length dress with tank straps. Deep v-neckline.</description_short>
|
||||
<link_rewrite>printed-chiffon-dress</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Printed Chiffon Dress</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Studded_Leather_Belt" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Brown accent studded belt with gold buckle</description_short>
|
||||
<link_rewrite>studded-leather-belt</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Studded Leather Belt</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Braided_Belt" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Black and gold braided leather belt</description_short>
|
||||
<link_rewrite>braided-belt</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Braided Belt</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Bucket_Hat" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Soft felted knit bucket hat</description_short>
|
||||
<link_rewrite>bucket-hat</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Bucket Hat</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Floppy_Hat" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Black straw floppy hat</description_short>
|
||||
<link_rewrite>floppy-hat</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Floppy Hat</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Men_Straw_Hat" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Men's beige straw fedora</description_short>
|
||||
<link_rewrite>men-straw-hat</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Men Straw Hat</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Bowling_Bag" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Red bowling style bag. Fancy lining with metal buckle strap</description_short>
|
||||
<link_rewrite>bowling-bag</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Bowling Bag</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Leather_Bag" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Genuine leather bag with leather handles and adjustable and removable shoulder strap.</description_short>
|
||||
<link_rewrite>leather-bag</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Leather Bag</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Snake_Skin_Bag" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Snake skin shoulder bag with straps and handle. Front pocket with gold flap buckle.</description_short>
|
||||
<link_rewrite>Snake_Skin_Bag</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Snake Skin Bag</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Quilted_Bag" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Quilted leather bag with silver braided straps. Adjustable long handle and zipper on top and side pocket.</description_short>
|
||||
<link_rewrite>quilted-bag</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Quilted Bag</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Suede_Bag" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>Suede camel colored bag with belted front flap.</description_short>
|
||||
<link_rewrite>Suede_Bag</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Suede Bag</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
<product id="Wedge_Shoe" id_shop="1">
|
||||
<description></description>
|
||||
<description_short>High heeled cork wedge with cross over leather straps.</description_short>
|
||||
<link_rewrite>Wedge_Shoe</link_rewrite>
|
||||
<meta_description/>
|
||||
<meta_keywords/>
|
||||
<meta_title/>
|
||||
<name>Wedge Shoe</name>
|
||||
<available_now>In stock</available_now>
|
||||
<available_later/>
|
||||
</product>
|
||||
</entity_product>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_profile>
|
||||
<profile id="Logistician">
|
||||
<name>Logistician</name>
|
||||
</profile>
|
||||
<profile id="Translator">
|
||||
<name>Translator</name>
|
||||
</profile>
|
||||
<profile id="Salesman">
|
||||
<name>Salesman</name>
|
||||
</profile>
|
||||
</entity_profile>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_scene>
|
||||
<!-- Keep the example
|
||||
<scene id="The_iPods_Nano">
|
||||
<name>The iPods Nano</name>
|
||||
</scene>
|
||||
-->
|
||||
</entity_scene>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_supplier>
|
||||
<supplier id="Fashion_Supplier">
|
||||
<description/>
|
||||
<meta_title/>
|
||||
<meta_keywords/>
|
||||
<meta_description/>
|
||||
</supplier>
|
||||
</entity_supplier>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<entity_tag>
|
||||
<!-- Keep the examples
|
||||
<tag id="tag_5" name="apple" products="iPod_Nano,MacBook"/>
|
||||
<tag id="tag_22" name="superdrive" products="MacBook"/>
|
||||
<tag id="tag_23" name="Ipod touch" products="iPod_touch"/>
|
||||
<tag id="tag_28" name="ipod" products="iPod_Nano,iPod_shuffle"/>
|
||||
<tag id="tag_29" name="nano" products="iPod_Nano"/>
|
||||
<tag id="tag_33" name="shuffle" products="iPod_shuffle"/>
|
||||
-->
|
||||
</entity_tag>
|
||||
@@ -18,19 +18,55 @@
|
||||
<meta_title>Terms and conditions of use</meta_title>
|
||||
<meta_description>Our terms and conditions of use</meta_description>
|
||||
<meta_keywords>conditions, terms, use, sell</meta_keywords>
|
||||
<content><h2>Your terms and conditions of use</h2><h3>Rule 1</h3><p>Here is the rule 1 content</p>
|
||||
<h3>Rule 2</h3><p>Here is the rule 2 content</p>
|
||||
<h3>Rule 3</h3><p>Here is the rule 3 content</p></content>
|
||||
<content><h1 class="page-heading">Terms and conditions of use</h1>
|
||||
<h3 class="page-subheading">Rule 1</h3>
|
||||
<p class="bottom-indent">Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||
<h3 class="page-subheading">Rule 2</h3>
|
||||
<p class="bottom-indent">Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam&#1102;</p>
|
||||
<h3 class="page-subheading">Rule 3</h3>
|
||||
<p class="bottom-indent">Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam&#1102;</p></content>
|
||||
<link_rewrite>terms-and-conditions-of-use</link_rewrite>
|
||||
</cms>
|
||||
<cms id="About_us">
|
||||
<meta_title>About us</meta_title>
|
||||
<meta_description>Learn more about us</meta_description>
|
||||
<meta_keywords>about us, informations</meta_keywords>
|
||||
<content><h2>About us</h2>
|
||||
<h3>Our company</h3><p>Our company</p>
|
||||
<h3>Our team</h3><p>Our team</p>
|
||||
<h3>Informations</h3><p>Informations</p></content>
|
||||
<content><h1 class="page-heading bottom-indent">About us</h1>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-sm-4">
|
||||
<div class="cms-block">
|
||||
<h3 class="page-subheading">Our company</h3>
|
||||
<p><strong class="dark">Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididun.</strong></p>
|
||||
<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. Lorem ipsum dolor sit amet conse ctetur adipisicing elit.</p>
|
||||
<ul class="list-1">
|
||||
<li><em class="icon-ok"></em>Top quality products</li>
|
||||
<li><em class="icon-ok"></em>Best customer service</li>
|
||||
<li><em class="icon-ok"></em>30-days money back guarantee</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-4">
|
||||
<div class="cms-box">
|
||||
<h3 class="page-subheading">Our team</h3>
|
||||
<img title="cms-img" src="http://192.168.9.41/prestashop1601/img/cms/cms-img.jpg" alt="cms-img" width="370" height="192" />
|
||||
<p><strong class="dark">Lorem set sint occaecat cupidatat non </strong></p>
|
||||
<p>Eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-4">
|
||||
<div class="cms-box">
|
||||
<h3 class="page-subheading">Testimonials</h3>
|
||||
<div class="testimonials">
|
||||
<div class="inner"><span class="before">“</span>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.<span class="after">”</span></div>
|
||||
</div>
|
||||
<p><strong class="dark">Lorem ipsum dolor sit</strong></p>
|
||||
<div class="testimonials">
|
||||
<div class="inner"><span class="before">“</span>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet conse ctetur adipisicing elit. Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod.<span class="after">”</span></div>
|
||||
</div>
|
||||
<p><strong class="dark">Ipsum dolor sit</strong></p>
|
||||
</div>
|
||||
</div>
|
||||
</div></content>
|
||||
<link_rewrite>about-us</link_rewrite>
|
||||
</cms>
|
||||
<cms id="Secure_payment">
|
||||
|
||||
@@ -212,7 +212,7 @@ return array(
|
||||
'Contact us' => 'Свяжитесь с нами',
|
||||
'PrestaShop Installation Assistant' => 'Помощник установки PrestaShop',
|
||||
'Installation Assistant' => 'Помощник установки',
|
||||
'License Agreements' => 'Лицензионное соглшение',
|
||||
'License Agreements' => 'Лицензионное соглашение',
|
||||
'Print my login information' => 'Распечатать информацию о моем аккаунте',
|
||||
'To use PrestaShop, you must <a href="http://doc.prestashop.com/display/PS15/Installing+PrestaShop#InstallingPrestaShop-Creatingadatabaseforyourshop" target="_blank">create a database</a> to collect all of your store\'s data-related activities.' => 'Для использования PrestaShop, Вам следует <a href="http://doc.prestashop.com/display/PS15/Installing+PrestaShop#InstallingPrestaShop-Creatingadatabaseforyourshop" target="_blank">создать базу данных </a>, чтобы сгруппировать информацию Вашего магазина.',
|
||||
'Please complete the fields below in order for PrestaShop to connect to your database. ' => 'Заполните поля ниже, чтобы PrestaShop смог установить соединение с Вашей с базой данных.',
|
||||
|
||||
@@ -509,14 +509,17 @@ class InstallModelInstall extends InstallAbstractModel
|
||||
{
|
||||
// @todo THIS CODE NEED TO BE REMOVED WHEN MODULES API IS COMMITED
|
||||
$modules = array(
|
||||
'blockbanner',
|
||||
'bankwire',
|
||||
'blockadvertising',
|
||||
'blockbestsellers',
|
||||
'blockcart',
|
||||
'blocksocial',
|
||||
'blockcategories',
|
||||
'blockfacebook',
|
||||
'blocklayered',
|
||||
'blockcms',
|
||||
'blockcmsinfo',
|
||||
'blockcontact',
|
||||
'blockcontactinfos',
|
||||
'blockmanufacturer',
|
||||
@@ -540,8 +543,8 @@ class InstallModelInstall extends InstallAbstractModel
|
||||
'dashproducts',
|
||||
'graphnvd3',
|
||||
'gridhtml',
|
||||
'homefeatured',
|
||||
'homeslider',
|
||||
'homefeatured',
|
||||
'pagesnotfound',
|
||||
'sekeywords',
|
||||
'statsbestcategories',
|
||||
@@ -565,6 +568,7 @@ class InstallModelInstall extends InstallAbstractModel
|
||||
'statssearch',
|
||||
'statsstock',
|
||||
'statsvisits',
|
||||
'themeconfigurator',
|
||||
);
|
||||
}
|
||||
return $modules;
|
||||
@@ -646,8 +650,8 @@ class InstallModelInstall extends InstallAbstractModel
|
||||
*/
|
||||
public function installFixtures($entity = null, array $data = array())
|
||||
{
|
||||
$fixtures_path = _PS_INSTALL_FIXTURES_PATH_.'apple/';
|
||||
$fixtures_name = 'apple';
|
||||
$fixtures_path = _PS_INSTALL_FIXTURES_PATH_.'fashion/';
|
||||
$fixtures_name = 'fashion';
|
||||
$zip_file = _PS_ROOT_DIR_.'/download/fixtures.zip';
|
||||
$temp_dir = _PS_ROOT_DIR_.'/download/fixtures/';
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ class BlockBanner extends Module
|
||||
|
||||
public function install()
|
||||
{
|
||||
Configuration::updateValue('BLOCKBANNER_IMG', 'store.jpg');
|
||||
Configuration::updateValue('BLOCKBANNER_IMG', 'sale70.gif');
|
||||
Configuration::updateValue('BLOCKBANNER_LINK', '');
|
||||
Configuration::updateValue('BLOCKBANNER_DESC', '');
|
||||
return parent::install() && $this->registerHook('displayTop') && $this->registerHook('header');
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
@@ -69,7 +69,7 @@ class Blockcmsinfo extends Module
|
||||
`text` text NOT NULL,
|
||||
PRIMARY KEY (`id_info`, `id_lang`)
|
||||
) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8 ;');
|
||||
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
@@ -299,8 +299,29 @@ class Blockcmsinfo extends Module
|
||||
{
|
||||
$return = true;
|
||||
$tab_texts = array(
|
||||
array('text' => $this->l('Custom text.')),
|
||||
array('text' => $this->l('Custom text.')),
|
||||
array('text' => '<ul>
|
||||
<li><em class="icon-truck"></em>
|
||||
<div class="type-text">
|
||||
<h3>Free Shipping</h3>
|
||||
<p>Lorem ipsum dolor sit amet conse ctetur voluptate velit esse cillum dolore eu</p>
|
||||
</div>
|
||||
</li>
|
||||
<li><em class="icon-phone"></em>
|
||||
<div class="type-text">
|
||||
<h3>Call us: (800)2345-6789</h3>
|
||||
<p>Lorem ipsum dolor sit amet conse ctetur voluptate velit esse cillum dolore eu</p>
|
||||
</div>
|
||||
</li>
|
||||
<li><em class="icon-credit-card"></em>
|
||||
<div class="type-text">
|
||||
<h3>Gift cards</h3>
|
||||
<p>Lorem ipsum dolor sit amet conse ctetur voluptate velit esse cillum dolore eu</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>'),
|
||||
array('text' => '<h3>Custom Block</h3>
|
||||
<p><strong class="dark">Lorem ipsum dolor sit amet conse ctetu</strong></p>
|
||||
<p>Sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.</p>'),
|
||||
);
|
||||
foreach($tab_texts as $tab)
|
||||
{
|
||||
|
||||
@@ -1,133 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/afl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
class Blockquickview extends Module
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->name = 'blockquickview';
|
||||
$this->tab = 'front_office_features';
|
||||
$this->version = '1.0';
|
||||
parent::__construct();
|
||||
$this->displayName = $this->l('Quick view');
|
||||
$this->description = $this->l('Add Quick information about product.');
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
Configuration::updateValue('PS_QUICK_VIEW',1);
|
||||
if (!parent::install())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
if (!parent::uninstall() OR
|
||||
!Configuration::deleteByName('PS_QUICK_VIEW'))
|
||||
return false;
|
||||
else return true;
|
||||
}
|
||||
|
||||
|
||||
public function getContent()
|
||||
{
|
||||
$html = '';
|
||||
// If we try to update the settings
|
||||
if (Tools::isSubmit('submitModule'))
|
||||
{
|
||||
Configuration::updateValue('PS_QUICK_VIEW', Tools::getValue('PS_QUICK_VIEW'));
|
||||
$html .= $this->displayConfirmation($this->l('Configuration updated'));
|
||||
}
|
||||
$html .= $this->renderForm();
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function renderForm()
|
||||
{
|
||||
$fields_form = array(
|
||||
'form' => array(
|
||||
'legend' => array(
|
||||
'title' => $this->l('Settings'),
|
||||
'icon' => 'icon-cogs'
|
||||
),
|
||||
'input' => array(
|
||||
array(
|
||||
'type' => 'switch',
|
||||
'label' => $this->l('Display Quick view'),
|
||||
'name' => 'PS_QUICK_VIEW',
|
||||
'values' => array(
|
||||
array(
|
||||
'id' => 'active_on',
|
||||
'value' => 1,
|
||||
'label' => $this->l('Enabled')
|
||||
),
|
||||
array(
|
||||
'id' => 'active_off',
|
||||
'value' => 0,
|
||||
'label' => $this->l('Disabled')
|
||||
)
|
||||
),
|
||||
),
|
||||
),
|
||||
'submit' => array(
|
||||
'title' => $this->l('Save'),
|
||||
'class' => 'btn btn-primary')
|
||||
),
|
||||
);
|
||||
|
||||
$helper = new HelperForm();
|
||||
$helper->show_toolbar = false;
|
||||
$helper->table = $this->table;
|
||||
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||||
$helper->default_form_language = $lang->id;
|
||||
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
|
||||
$this->fields_form = array();
|
||||
|
||||
$helper->identifier = $this->identifier;
|
||||
$helper->submit_action = 'submitModule';
|
||||
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
|
||||
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
||||
$helper->tpl_vars = array(
|
||||
'fields_value' => $this->getConfigFieldsValues(),
|
||||
'languages' => $this->context->controller->getLanguages(),
|
||||
'id_language' => $this->context->language->id
|
||||
);
|
||||
|
||||
return $helper->generateForm(array($fields_form));
|
||||
}
|
||||
|
||||
public function getConfigFieldsValues()
|
||||
{
|
||||
return array(
|
||||
'PS_QUICK_VIEW' => Tools::getValue('PS_QUICK_VIEW', Configuration::get('PS_QUICK_VIEW')),
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>blockquickview</name>
|
||||
<displayName><![CDATA[Quick view]]></displayName>
|
||||
<version><![CDATA[1.0]]></version>
|
||||
<description><![CDATA[Add Quick information about product.]]></description>
|
||||
<author><![CDATA[]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>1</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -66,7 +66,7 @@ class Blocktopmenu extends Module
|
||||
{
|
||||
if (!parent::install() ||
|
||||
!$this->registerHook('displayTop') ||
|
||||
!Configuration::updateGlobalValue('MOD_BLOCKTOPMENU_ITEMS', 'CAT1,CMS1,CMS2,PRD1') ||
|
||||
!Configuration::updateGlobalValue('MOD_BLOCKTOPMENU_ITEMS', 'CAT3,CAT26') ||
|
||||
!Configuration::updateGlobalValue('MOD_BLOCKTOPMENU_SEARCH', '1') ||
|
||||
!$this->registerHook('actionObjectCategoryUpdateAfter') ||
|
||||
!$this->registerHook('actionObjectCategoryDeleteAfter') ||
|
||||
|
||||
@@ -118,6 +118,38 @@ class BlockWishList extends Module
|
||||
|
||||
public function hookTop($params)
|
||||
{
|
||||
|
||||
global $errors;
|
||||
|
||||
require_once(dirname(__FILE__).'/WishList.php');
|
||||
if ($this->context->customer->isLogged())
|
||||
{
|
||||
$wishlists = Wishlist::getByIdCustomer($this->context->customer->id);
|
||||
if (empty($this->context->cookie->id_wishlist) === true ||
|
||||
WishList::exists($this->context->cookie->id_wishlist, $this->context->customer->id) === false)
|
||||
{
|
||||
if (!sizeof($wishlists))
|
||||
$id_wishlist = false;
|
||||
else
|
||||
{
|
||||
$id_wishlist = (int)($wishlists[0]['id_wishlist']);
|
||||
$this->context->cookie->id_wishlist = (int)($id_wishlist);
|
||||
}
|
||||
}
|
||||
else
|
||||
$id_wishlist = $this->context->cookie->id_wishlist;
|
||||
|
||||
|
||||
$this->smarty->assign(array(
|
||||
'id_wishlist' => $id_wishlist,
|
||||
'isLogged' => true,
|
||||
'wishlist_products' => ($id_wishlist == false ? false : WishList::getProductByIdCustomer($id_wishlist, $this->context->customer->id, $this->context->language->id, null, true)),
|
||||
'wishlists' => $wishlists,
|
||||
'ptoken' => Tools::getToken(false)));
|
||||
}
|
||||
else
|
||||
$this->smarty->assign(array('wishlist_products' => false, 'wishlists' => false));
|
||||
|
||||
return $this->display(__FILE__, 'blockwishlist_top.tpl');
|
||||
}
|
||||
|
||||
|
||||
@@ -392,14 +392,14 @@ class Dashactivity extends Module
|
||||
$fields_form['form']['input'][] = array(
|
||||
'label' => $this->l('Cart abandoned (min)'),
|
||||
'desc' => $this->l('Default time range (min) to consider a Shopping cart as abandoned (default 24hrs)'),
|
||||
'name' => 'DASHACTIVITY_CART_ABANDONED',
|
||||
'name' => 'DASHACTIVITY_CART_ABANDONED_MIN',
|
||||
'type' => 'text',
|
||||
'suffix' => $this->l('hrs'),
|
||||
);
|
||||
$fields_form['form']['input'][] = array(
|
||||
'label' => $this->l('Cart abandoned (max)'),
|
||||
'desc' => $this->l('Default time range (max) to consider a Shopping cart as abandoned (default 48hrs)'),
|
||||
'name' => 'DASHACTIVITY_CART_ABANDONED',
|
||||
'name' => 'DASHACTIVITY_CART_ABANDONED_MAX',
|
||||
'type' => 'text',
|
||||
'suffix' => $this->l('hrs'),
|
||||
);
|
||||
|
||||
@@ -60,11 +60,11 @@ class HomeSlider extends Module
|
||||
public function install()
|
||||
{
|
||||
/* Adds Module */
|
||||
if (parent::install() && $this->registerHook('displayHome') && $this->registerHook('actionShopDataDuplication'))
|
||||
if (parent::install() && $this->registerHook('displayTop') && $this->registerHook('actionShopDataDuplication'))
|
||||
{
|
||||
/* Sets up configuration */
|
||||
$res = Configuration::updateValue('HOMESLIDER_WIDTH', '535');
|
||||
$res &= Configuration::updateValue('HOMESLIDER_HEIGHT', '300');
|
||||
$res = Configuration::updateValue('HOMESLIDER_WIDTH', '779');
|
||||
$res &= Configuration::updateValue('HOMESLIDER_HEIGHT', '448');
|
||||
$res &= Configuration::updateValue('HOMESLIDER_SPEED', '500');
|
||||
$res &= Configuration::updateValue('HOMESLIDER_PAUSE', '3000');
|
||||
$res &= Configuration::updateValue('HOMESLIDER_LOOP', '1');
|
||||
@@ -86,7 +86,7 @@ class HomeSlider extends Module
|
||||
private function installSamples()
|
||||
{
|
||||
$languages = Language::getLanguages(false);
|
||||
for ($i = 1; $i <= 5; ++$i)
|
||||
for ($i = 1; $i <= 3; ++$i)
|
||||
{
|
||||
$slide = new HomeSlide();
|
||||
$slide->position = $i;
|
||||
@@ -660,7 +660,7 @@ class HomeSlider extends Module
|
||||
return true;
|
||||
}
|
||||
|
||||
public function hookDisplayHome()
|
||||
public function hookDisplayTop()
|
||||
{
|
||||
if(!$this->_prepareHook())
|
||||
return;
|
||||
@@ -675,10 +675,13 @@ class HomeSlider extends Module
|
||||
return $this->display(__FILE__, 'homeslider.tpl', $this->getCacheId());
|
||||
}
|
||||
|
||||
public function hookTop()
|
||||
public function getCacheId($name = null)
|
||||
{
|
||||
return $this->hookDisplayHome();
|
||||
if ($name === null && isset($this->context->smarty->tpl_vars['page_name']))
|
||||
return parent::getCacheId($this->context->smarty->tpl_vars['page_name']->value);
|
||||
return parent::getCacheId($name);
|
||||
}
|
||||
|
||||
public function clearCache()
|
||||
{
|
||||
$this->_clearCache('homeslider.tpl');
|
||||
|
||||
|
Before Width: | Height: | Size: 232 KiB |
|
Before Width: | Height: | Size: 232 KiB |
|
Before Width: | Height: | Size: 232 KiB |