我需要将旧的Prestashop 1.3中的所有数据客户订单迁移到新的Prestashop 1.6。
我是中级presta开发人员,对我来说这不是一个小问题,我没有找到任何模块或教程来管理这个问题。 presta mySQL中的订单数据在十几个表中分开,版本1.3和1.6之间的差异会带来额外的兼容性问题。数据量不是小商店的问题。
我想知道,您如何处理此类问题?
我的想法很少,但没有一个听起来不错:
这两个想法都非常耗时,也许有人有更好的想法/链接/解决方案?
答案 0 :(得分:0)
我还没有看到这样的免费模块来导入客户订单或.. 我自己进口的类别和产品从一个不熟悉的cms到presta商店1.6 在presta 1.6后台,如果你想要导入它的实体,它在右侧有一个菜单,说明哪些字段应该是你为导入生成的csv文件。 如果您的csv文件不匹配,您应该使用某种语言(如php)获取csv文件,然后解析该文件并生成相应的csv文件以在prestashop中导入。
使用csv文件导入数据是我认为更容易的工作。 上传用于导入presta的csv文件后,请询问您csv文件中的每个列是否与您的presta系统的哪一列相关。
答案 1 :(得分:0)
这个php脚本有4个功能。
<?php
function getHeader()
{
$filename = "past_cms_csv_file.csv";
$contents = file_get_contents($filename);
$records = explode('EOREOR', $contents);
$header = explode(';', $records[0]);
array_splice($header, count($header)-1, 1);
return $header;
}
function getCategories()
{
$header = getHeader();
$index = array_search('v_categories_name_1_4', $header);
$filename = "past_cms_csv_file.csv";
$contents = file_get_contents($filename);
$records = explode('EOREOR', $contents);
$cats = array();
for($i=1;$i<count($records);$i++)
{
$record = $records[$i];
$items = explode('";"', $record);
array_push($cats,$items[$index] );
}
$newCats = array_unique($cats);
$mycats = [];
foreach($newCats as $cat)
{
array_push($mycats, $cat);
}
array_splice($mycats, count($mycats)-1 , 1);
return $mycats;
}
function getRecords()
{
$filename = "past_cms_csv_file.csv";
$contents = file_get_contents($filename);
$records = explode('EOREOR', $contents);
$header = getHeader();
$index = array_search('v_categories_name_1_4', $header);
$cats = getCategories();
for($i=1;$i<count($records);$i++)
{
$record = $records[$i];
$items = explode('";"', $record);
array_push($cats,$items[$index] );
for($j=0;$j<count($items);$j++)
{
$results[$i][$j] = $items[$j];
}
}
return $results;
}
function makecsvfile($filename , $start_index)
{
$header = getHeader();
$results = getRecords();
$active_index = array_search('v_status', $header);
$name_index = array_search('v_products_name_4', $header);
$desc_index = array_search('v_products_description_4', $header);
$meta_title_index = array_search('v_products_meta_title_4', $header);
$meta_keywords_index = array_search('v_products_meta_keywords_4', $header);
$meta_desc_index = array_search('v_products_meta_description_4', $header);
$price_index = array_search('v_products_price', $header);
$quantity_index = array_search('v_products_quantity', $header);
$category_index = array_search('v_categories_name_1_4', $header);
$subcategory_index = array_search('v_categories_name_2_4', $header);
$string = '';
$string .= '"ID";"Active";"Name";"Description";"Meta_title";"Meta_keywords";"Meta_Description";"Categories";"Quantity";"tax_rule";"Price";"Image URLs"';
$string .= PHP_EOL;
for($i=1;$i<count($results);$i++)
{
if( $results[$i][$category_index] != 'Schoenen en sokjes' &&
$results[$i][$category_index] != 'Accessoires meisjes' &&
$results[$i][$category_index] != 'Accessoires jongens' &&
$results[$i][$category_index] != 'Communie -en doopkleding' &&
$results[$i][$category_index] != 'Aanbiedingen'
)
{
$string .= '"';
$string .= $i+$start_index;
$string .= '";"';
if($results[$i][$active_index] == 'Active')
$string .= 1;
else if($results[$i][$active_index] == 'Inactive')
$string .= 0;
$string .= '";"';
$string .= $results[$i][$name_index];
$string .= '";"';
$string .= $results[$i][$desc_index];
$string .= '";"';
$string .= $results[$i][$meta_title_index];
$string .= '";"';
if(strlen($results[$i][$meta_keywords_index]) < 255)
$string .= $results[$i][$meta_keywords_index];
else
{
$meta_key_words = substr($results[$i][$meta_keywords_index],0,254);
$last_comma_pos = strrpos($meta_key_words , ',');
$meta_key_words = substr($meta_key_words,0,$last_comma_pos);
$string .= $meta_key_words;
}
$string .= '";"';
$string .= $results[$i][$meta_desc_index];
$string .= '";"';
if($results[$i][$subcategory_index] == '' &&
$results[$i][$category_index] != 'Tiara\'s & Kroontjes' &&
$results[$i][$category_index] != 'Feest / Gala jurken' &&
$results[$i][$category_index] != 'Ringkussens' &&
$results[$i][$category_index] != 'Bolero\'s en Jasjes')
$string .= $results[$i][$category_index];
else if($results[$i][$category_index] == 'Tiara\'s & Kroontjes')
$string .= 'Kroontjes, diademen & tiara\'s';
else if($results[$i][$category_index] == 'Feest / Gala jurken')
$string .= 'Feest- en galajurken';
else if($results[$i][$category_index] == 'Ringkussens')
$string .= 'kado kussens';
else if($results[$i][$category_index] == 'Bolero\'s en Jasjes')
$string .= 'Bolero’s & jasjes';
else
$string .= $results[$i][$subcategory_index];
$string .= '";"';
$string .= $results[$i][$quantity_index];
$string .= '";"';
$string .= 53;
$string .= '";"';
$string .= $results[$i][$price_index];
$string .= '";"';
$string .= 'http://example.com/path/to/myimage.jpg';
$string .= '"';
$string .= PHP_EOL;
}
}
file_put_contents($filename, $string);
}
makecsvfile('products.csv' , 100);
?>