Analysing the design and requirements to prepare the solution design for the individual modules . Integrating the template design Implementing the individual modules Customizing the core functionalities of the cms as per the requirements Reporting to the Project manager. Testing the implemented functions by executing test cases. Fixing the bugs reported by the QA
Wednesday 12 September 2012
Product import using CSV
This is the correct format to
import product using csv.
Shipping (11923 => 24h, 11924 => 48h)
For some special drop down attributes
you have to use some special attribute values to insert csv
Example:
Shipping (11923 => 24h, 11924 => 48h)
Note: 11923 (Feature id)
24h (Feature value)
Open AdminImport.php (
root/adminfolder/tabs)
Goto line #185 define the array
values in function __construct()
,'Shipping' => array('label' =>
$this->l(' Shipping (11923 => 24h, 11924 => 48h)'))
Go to line #870 to insert the new
fields
if(isset($info['Shipping'])){
Db::getInstance()->Execute('INSERT
INTO `'._DB_PREFIX_.'feature_product` (`id_feature`, `id_product`,
`id_feature_value`)
VALUES (23, '.$product->id.',
'.(int)($info['Shipping']).')
ON DUPLICATE KEY UPDATE
`id_feature_value` = '.(int)($info['Shipping']));
}
Note : “23 ” is Shipping's feature
id
After uploading csv we should
Select from the drop-down list above each column the value you want
to attribute to the corresponding value.
Tuesday 11 September 2012
Free Prestashop Modules
You can download free prestashop interesting modules from here
http://www.custommodule.com/prestashop/prestashop-module
Subscribe to:
Posts (Atom)