AMartinez_CustomImportExport - Version 1.5.002

Version Notes

Magento 1.5 version. Please use UTF-8 csv files (to convert from any charset please use iconv linux command)

Download this release

Release Info

Developer Antonio Martinez
Extension AMartinez_CustomImportExport
Version 1.5.002
Comparing to
See all releases


Code changes from version 1.5.001 to 1.5.002

app/code/{local → community}/AMartinez/CustomImportExport/Helper/Data.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import.php RENAMED
@@ -85,4 +85,13 @@ class AMartinez_CustomImportExport_Model_Import extends Mage_ImportExport_Model_
85
  {
86
  Mage::getModel('catalog/product_image')->clearCache();
87
  }
 
 
 
 
 
 
 
 
 
88
  }
85
  {
86
  Mage::getModel('catalog/product_image')->clearCache();
87
  }
88
+
89
+ /**
90
+ * Recalculate catalog price rules
91
+ */
92
+ public function applyRules()
93
+ {
94
+ Mage::getModel('catalogrule/rule')->applyAll();
95
+ Mage::app()->removeCache('catalog_rules_dirty');
96
+ }
97
  }
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Adapter.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Adapter/Csv1.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Entity/Product.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Entity/Product/Type/Configurable.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Entity/Product/Type/Giftcard.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Entity/Product/Type/Grouped.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/Model/Import/Entity/Product/Type/Simple.php RENAMED
File without changes
app/code/{local → community}/AMartinez/CustomImportExport/etc/config.xml RENAMED
@@ -14,7 +14,7 @@
14
 
15
  <modules>
16
  <AMartinez_CustomImportExport>
17
- <version>1.5.001</version>
18
  <depends>
19
  <!-- no dependencies -->
20
  </depends>
14
 
15
  <modules>
16
  <AMartinez_CustomImportExport>
17
+ <version>1.5.002</version>
18
  <depends>
19
  <!-- no dependencies -->
20
  </depends>
app/code/{local → community}/AMartinez/CustomImportExport/shell/run.php RENAMED
@@ -25,7 +25,7 @@ class AMartinez_CustomImportExport extends Mage_Shell_Abstract
25
  Mage::setIsDeveloperMode(true);
26
  ini_set('display_errors', 1);
27
  // ini_set("memory_limit","2048M");
28
-
29
  $file = $this->getFile();
30
  echo "Found $file\n";
31
  Mage::log("Starting import $file", Zend_Log::DEBUG);
@@ -91,7 +91,18 @@ class AMartinez_CustomImportExport extends Mage_Shell_Abstract
91
  {
92
  $import->flushImages();
93
  }
94
- catch (Exception $e) {} }
 
 
 
 
 
 
 
 
 
 
 
95
  }
96
 
97
  /**
@@ -155,14 +166,14 @@ class AMartinez_CustomImportExport extends Mage_Shell_Abstract
155
  {
156
  return <<<HELP
157
 
158
- AMartinez_CustomImportExport script
159
 
160
  NAME
161
  run.php
162
 
163
  SYNOPSIS
164
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php
165
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php [-- [OPTIONS...]]
166
 
167
  DESCRIPTION
168
  Import products to Magento database from CSV file, creating categories and attribute options automatically.
@@ -173,11 +184,12 @@ OPTIONS
173
  -r, --reindex reindex data by all indexers (attributes, prices, etc)
174
  -c, --cleancache clean cache storage (html output, etc)
175
  -f, --flushimages flush catalog images cache (pregenerated product images files)
 
176
 
177
  EXAMPLES
178
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php -- -source var/importexport/products.csv
179
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php -- -reindex
180
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php -- -s var/importexport/products.csv -r -c
181
 
182
 
183
  HELP;
25
  Mage::setIsDeveloperMode(true);
26
  ini_set('display_errors', 1);
27
  // ini_set("memory_limit","2048M");
28
+
29
  $file = $this->getFile();
30
  echo "Found $file\n";
31
  Mage::log("Starting import $file", Zend_Log::DEBUG);
91
  {
92
  $import->flushImages();
93
  }
94
+ catch (Exception $e) {}
95
+ }
96
+
97
+ if ($this->getArg('p') || $this->getArg('applyrules'))
98
+ {
99
+ echo "Recalculating catalog price rules...\n";
100
+ try
101
+ {
102
+ $import->applyRules();
103
+ }
104
+ catch (Exception $e) {}
105
+ }
106
  }
107
 
108
  /**
166
  {
167
  return <<<HELP
168
 
169
+ AMartinez_CustomImportExport script (v. 1.5.002)
170
 
171
  NAME
172
  run.php
173
 
174
  SYNOPSIS
175
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php
176
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php [-- [OPTIONS...]]
177
 
178
  DESCRIPTION
179
  Import products to Magento database from CSV file, creating categories and attribute options automatically.
184
  -r, --reindex reindex data by all indexers (attributes, prices, etc)
185
  -c, --cleancache clean cache storage (html output, etc)
186
  -f, --flushimages flush catalog images cache (pregenerated product images files)
187
+ -p, --applyrules recalculate catalog price rules
188
 
189
  EXAMPLES
190
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php -- -source var/importexport/products.csv
191
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php -- -reindex
192
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php -- -s var/importexport/products.csv -r -c -f -p
193
 
194
 
195
  HELP;
app/etc/modules/AMartinez_CustomImportExport.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <AMartinez_CustomImportExport>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </AMartinez_CustomImportExport>
8
+ </modules>
9
+ </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>AMartinez_CustomImportExport</name>
4
- <version>1.5.001</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0">OSL v3.0</license>
7
  <channel>community</channel>
@@ -21,20 +21,20 @@ To daily automatize imports, you must call "run.php" via crontab or similar.&#xD
21
  &#xD;
22
  USE:&#xD;
23
  &#xD;
24
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php&#xD;
25
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php [-- [OPTIONS...]]&#xD;
26
  &#xD;
27
  OPTIONS&#xD;
28
  -s, --source csv file to import, if not passed uses the defined in config.xml&#xD;
29
  -r, --reindex reindex data by all indexers (attributes, prices, etc)&#xD;
30
  -c, --cleancache clean cache storage (html output, etc)&#xD;
31
  -f, --flushimages flush catalog images cache (pregenerated product images files)&#xD;
 
32
  &#xD;
33
  EXAMPLES&#xD;
34
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php -- -source var/importexport/products.csv&#xD;
35
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php -- -reindex&#xD;
36
- php -f app/code/local/AMartinez/CustomImportExport/shell/run.php -- -s var/importexport/products.csv -r -c&#xD;
37
- &#xD;
38
  &#xD;
39
  &#xD;
40
  More options is coming soon!&#xD;
@@ -47,9 +47,9 @@ More options is coming soon!&#xD;
47
  &lt;/form&gt;</description>
48
  <notes>Magento 1.5 version. Please use UTF-8 csv files (to convert from any charset please use iconv linux command)</notes>
49
  <authors><author><name>Antonio Martinez</name><user>amartinez</user><email>toniyecla@gmail.com</email></author></authors>
50
- <date>2011-04-26</date>
51
- <time>09:01:46</time>
52
- <contents><target name="magelocal"><dir name="AMartinez"><dir name="CustomImportExport"><dir name="Helper"><file name="Data.php" hash="0c8b64920ba9cf893513573bbbb55549"/></dir><dir name="Model"><dir name="Import"><dir name="Adapter"><file name="Csv1.php" hash="fa713ee0bc9034befd91eee758fc2d0a"/></dir><file name="Adapter.php" hash="6d7d568cc3dfe002763638513bc04b7f"/><dir name="Entity"><dir name="Product"><dir name="Type"><file name="Configurable.php" hash="3614bf1abe10bb500219c787c2a6ebcc"/><file name="Giftcard.php" hash="26353aaf786f8a91ba880f3c1f692bd7"/><file name="Grouped.php" hash="b7c054303353d88e5d0c9fd303670ef5"/><file name="Simple.php" hash="48cdfdfc5c2e42b011e83483f50690c4"/></dir></dir><file name="Product.php" hash="e0b2ee2eade739d0a9c1c2d96f2f3c57"/></dir></dir><file name="Import.php" hash="ec248cde0e06ec76076f8be90e633d30"/></dir><dir name="etc"><file name="config.xml" hash="3be3626acad3c9cb4afaa2a08d41565c"/></dir><dir name="shell"><file name="run.php" hash="6e21c74b8f49869b9c4b37e561471265"/></dir></dir></dir></target></contents>
53
  <compatible/>
54
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
55
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>AMartinez_CustomImportExport</name>
4
+ <version>1.5.002</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0">OSL v3.0</license>
7
  <channel>community</channel>
21
  &#xD;
22
  USE:&#xD;
23
  &#xD;
24
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php&#xD;
25
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php [-- [OPTIONS...]]&#xD;
26
  &#xD;
27
  OPTIONS&#xD;
28
  -s, --source csv file to import, if not passed uses the defined in config.xml&#xD;
29
  -r, --reindex reindex data by all indexers (attributes, prices, etc)&#xD;
30
  -c, --cleancache clean cache storage (html output, etc)&#xD;
31
  -f, --flushimages flush catalog images cache (pregenerated product images files)&#xD;
32
+ -p, --applyrules recalculate catalog price rules&#xD;
33
  &#xD;
34
  EXAMPLES&#xD;
35
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php -- -source var/importexport/products.csv&#xD;
36
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php -- -reindex&#xD;
37
+ php -f app/code/community/AMartinez/CustomImportExport/shell/run.php -- -s var/importexport/products.csv -r -c -f -p&#xD;
 
38
  &#xD;
39
  &#xD;
40
  More options is coming soon!&#xD;
47
  &lt;/form&gt;</description>
48
  <notes>Magento 1.5 version. Please use UTF-8 csv files (to convert from any charset please use iconv linux command)</notes>
49
  <authors><author><name>Antonio Martinez</name><user>amartinez</user><email>toniyecla@gmail.com</email></author></authors>
50
+ <date>2011-04-27</date>
51
+ <time>17:18:45</time>
52
+ <contents><target name="magecommunity"><dir name="AMartinez"><dir name="CustomImportExport"><dir name="Helper"><file name="Data.php" hash="0c8b64920ba9cf893513573bbbb55549"/></dir><dir name="Model"><dir name="Import"><dir name="Adapter"><file name="Csv1.php" hash="fa713ee0bc9034befd91eee758fc2d0a"/></dir><file name="Adapter.php" hash="6d7d568cc3dfe002763638513bc04b7f"/><dir name="Entity"><dir name="Product"><dir name="Type"><file name="Configurable.php" hash="3614bf1abe10bb500219c787c2a6ebcc"/><file name="Giftcard.php" hash="26353aaf786f8a91ba880f3c1f692bd7"/><file name="Grouped.php" hash="b7c054303353d88e5d0c9fd303670ef5"/><file name="Simple.php" hash="48cdfdfc5c2e42b011e83483f50690c4"/></dir></dir><file name="Product.php" hash="e0b2ee2eade739d0a9c1c2d96f2f3c57"/></dir></dir><file name="Import.php" hash="2659523fed863f17915134b4e8d5d347"/></dir><dir name="etc"><file name="config.xml" hash="11d5d56828845460bd2c63331c1be918"/></dir><dir name="shell"><file name="run.php" hash="98af071038f2cabcb7f94e91603eef6b"/></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="AMartinez_CustomImportExport.xml" hash="75ba4fbc265d1cf2b6ab61b8f3a3b95e"/></dir></dir></dir><dir name="var"><dir name="customimportexport"><file name="test_configurable.csv" hash="da1cb8fea77cc7ee591e3488d12ca6d8"/><file name="test_grouped.csv" hash="1281612b7e89e4681367e654631b2521"/><file name="test_single_row_style.csv1" hash="e1c7d5ff3b101c34de7d8c62b82294da"/></dir><dir name="log"><file name="exception.log" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="system.log" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></target></contents>
53
  <compatible/>
54
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
55
  </package>
var/customimportexport/test_configurable.csv ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "sku", "_type", "_product_websites", "_attribute_set", "news_from_date", "tipo_articulo", "_category", "status", "visibility", "weight", "is_in_stock", "qty", "size", "price", "delivery_date", "tax_class_id", "name", "short_description", "description", "_super_products_sku", "_super_attribute_code", "image"
2
+ "TEST1-S1-35","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","35","43.90","1899-12-31","2","TEST1-S1 (35)","TEST COLLECTION","TEST COLLECTION",,,
3
+ "TEST1-S1-36","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","36","43.90","1899-12-31","2","TEST1-S1 (36)","TEST COLLECTION","TEST COLLECTION",,,
4
+ "TEST1-S1-37","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","37","43.90","1899-12-31","2","TEST1-S1 (37)","TEST COLLECTION","TEST COLLECTION",,,
5
+ "TEST1-S1-38","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","38","43.90","1899-12-31","2","TEST1-S1 (38)","TEST COLLECTION","TEST COLLECTION",,,
6
+ "TEST1-S1-39","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","39","43.90","1899-12-31","2","TEST1-S1 (39)","TEST COLLECTION","TEST COLLECTION",,,
7
+ "TEST1-S1-40","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","40","43.90","1899-12-31","2","TEST1-S1 (40)","TEST COLLECTION","TEST COLLECTION",,,
8
+ "TEST1-S1-41","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","41","43.90","1899-12-31","2","TEST1-S1 (41)","TEST COLLECTION","TEST COLLECTION",,,
9
+ "TEST1-S1-42","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","42","43.90","1899-12-31","2","TEST1-S1 (42)","TEST COLLECTION","TEST COLLECTION",,,
10
+ "TEST1-S1-43","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","43","43.90","1899-12-31","2","TEST1-S1 (43)","TEST COLLECTION","TEST COLLECTION",,,
11
+ "TEST1-S1-44","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","44","43.90","1899-12-31","2","TEST1-S1 (44)","TEST COLLECTION","TEST COLLECTION",,,
12
+ "TEST1-S1-45","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","45","43.90","1899-12-31","2","TEST1-S1 (45)","TEST COLLECTION","TEST COLLECTION",,,
13
+ "TEST1-S1-46","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","46","43.90","1899-12-31","2","TEST1-S1 (46)","TEST COLLECTION","TEST COLLECTION",,,
14
+ "TEST1-S1-47","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","47","43.90","1899-12-31","2","TEST1-S1 (47)","TEST COLLECTION","TEST COLLECTION",,,
15
+ "TEST1-S1-48","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","48","43.90","1899-12-31","2","TEST1-S1 (48)","TEST COLLECTION","TEST COLLECTION",,,
16
+ "TEST1-S1","configurable","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","4","1.10","1","13986","","43.90","1899-12-31","2","TEST 1 ANTIK NEGRO, PISO TEST (WITH ZIP)","TEST COLLECTION",,"TEST1-S1-35","size","/img_articulos/TEST1-S1.jpg"
17
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-36",,
18
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-37",,
19
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-38",,
20
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-39",,
21
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-40",,
22
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-41",,
23
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-42",,
24
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-43",,
25
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-44",,
26
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-45",,
27
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-46",,
28
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-47",,
29
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-48",,
var/customimportexport/test_grouped.csv ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "sku", "_type", "_product_websites", "_attribute_set", "news_from_date", "tipo_articulo", "_category", "status", "visibility", "weight", "is_in_stock", "qty", "size", "price", "delivery_date", "tax_class_id", "name", "short_description", "description", "_associated_sku", "image"
2
+ "TEST1-S1-35","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","35","43.90","1899-12-31","2","TEST1-S1 (35)","TEST COLLECTION","TEST COLLECTION",,
3
+ "TEST1-S1-36","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","36","43.90","1899-12-31","2","TEST1-S1 (36)","TEST COLLECTION","TEST COLLECTION",,
4
+ "TEST1-S1-37","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","37","43.90","1899-12-31","2","TEST1-S1 (37)","TEST COLLECTION","TEST COLLECTION",,
5
+ "TEST1-S1-38","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","38","43.90","1899-12-31","2","TEST1-S1 (38)","TEST COLLECTION","TEST COLLECTION",,
6
+ "TEST1-S1-39","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","39","43.90","1899-12-31","2","TEST1-S1 (39)","TEST COLLECTION","TEST COLLECTION",,
7
+ "TEST1-S1-40","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","40","43.90","1899-12-31","2","TEST1-S1 (40)","TEST COLLECTION","TEST COLLECTION",,
8
+ "TEST1-S1-41","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","41","43.90","1899-12-31","2","TEST1-S1 (41)","TEST COLLECTION","TEST COLLECTION",,
9
+ "TEST1-S1-42","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","42","43.90","1899-12-31","2","TEST1-S1 (42)","TEST COLLECTION","TEST COLLECTION",,
10
+ "TEST1-S1-43","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","43","43.90","1899-12-31","2","TEST1-S1 (43)","TEST COLLECTION","TEST COLLECTION",,
11
+ "TEST1-S1-44","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","44","43.90","1899-12-31","2","TEST1-S1 (44)","TEST COLLECTION","TEST COLLECTION",,
12
+ "TEST1-S1-45","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","45","43.90","1899-12-31","2","TEST1-S1 (45)","TEST COLLECTION","TEST COLLECTION",,
13
+ "TEST1-S1-46","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","46","43.90","1899-12-31","2","TEST1-S1 (46)","TEST COLLECTION","TEST COLLECTION",,
14
+ "TEST1-S1-47","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","47","43.90","1899-12-31","2","TEST1-S1 (47)","TEST COLLECTION","TEST COLLECTION",,
15
+ "TEST1-S1-48","simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","48","43.90","1899-12-31","2","TEST1-S1 (48)","TEST COLLECTION",,,
16
+ "TEST1-S1","grouped","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","4","1.10","1","13986","","43.90","1899-12-31","2","TEST 1 ANTIK NEGRO, PISO TEST (WITH ZIP)","TEST COLLECTION",,"TEST1-S1-35","/img_articulos/TEST1-S1.jpg"
17
+ ,,,,,,"MALICIA",,,,,,,,,,,,,"TEST1-S1-36",
18
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-37",
19
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-38",
20
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-39",
21
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-40",
22
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-41",
23
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-42",
24
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-43",
25
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-44",
26
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-45",
27
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-46",
28
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-47",
29
+ ,,,,,,,,,,,,,,,,,,,"TEST1-S1-48",
var/customimportexport/test_single_row_style.csv1 ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ "sku", "_store", "_type", "_product_websites", "_attribute_set", "news_from_date", "tipo_articulo", "_category", "status", "visibility", "weight", "is_in_stock", "qty", "size", "price", "delivery_date", "tax_class_id", "name", "short_description", "description", "_associated_sku", "image", "small_image", "thumbnail"
2
+ "TEST1-S1-35",,"simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","35","43.90","1899-12-31","2","TEST1-S1 (35)","TEST COLLECTION",,,,,
3
+ "TEST1-S1-36",,"simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","36","43.90","1899-12-31","2","TEST1-S1 (36)","TEST COLLECTION",,,,,
4
+ "TEST1-S1-37",,"simple","base","Default","2011-4-8","Shoes","TEST COLLECTION","1","1","1.10","1","999","37","43.90","1899-12-31","2","TEST1-S1 (37)","TEST COLLECTION",,,,,
5
+ "TEST1-S1",,"grouped","base","Default","2011-4-8","Shoes","TEST COLLECTION,MALICIA","1","4","1.10","1","13986","","43.90","1899-12-31","2","TEST 1 ANTIK NEGRO, PISO TEST test","TEST COLLECTION",,"TEST1-S1-35,TEST1-S1-36,TEST1-S1-37","/img_articulos/TEST1-S1.jpg","/img_articulos/TEST1-S1.jpg","/img_articulos/TEST1-S1.jpg"
var/log/exception.log ADDED
File without changes
var/log/system.log ADDED
File without changes