Version Notes
Resolved issue with Magento security patch SUPEE-6285
Download this release
Release Info
Developer | Magento Core Team |
Extension | Bluejalappeno_Orderexport |
Version | 2.12.1 |
Comparing to | |
See all releases |
Code changes from version 2.11.1 to 2.12.1
app/code/community/Bluejalappeno/Orderexport/Block/Sales/Order/Grid.php
DELETED
@@ -1,41 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Magento Bluejalappeno Order Export Module
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
-
*
|
15 |
-
* DISCLAIMER
|
16 |
-
*
|
17 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
-
* versions in the future. If you wish to customize Magento for your
|
19 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
-
*
|
21 |
-
* @category Bluejalappeno
|
22 |
-
* @package Bluejalappeno_OrderExport
|
23 |
-
* @copyright Copyright (c) 2010 Wimbolt Ltd (http://www.bluejalappeno.com)
|
24 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
25 |
-
* @author Genevieve Eddison <sales@bluejalappeno.com>
|
26 |
-
* */
|
27 |
-
class Bluejalappeno_Orderexport_Block_Sales_Order_Grid extends Mage_Adminhtml_Block_Sales_Order_Grid
|
28 |
-
{
|
29 |
-
protected function _prepareMassaction()
|
30 |
-
{
|
31 |
-
parent::_prepareMassaction();
|
32 |
-
if (Mage::getStoreConfig("order_export/export_orders/active")) {
|
33 |
-
|
34 |
-
$this->getMassactionBlock()->addItem('orderexport', array(
|
35 |
-
'label'=> Mage::helper('sales')->__('Export orders'),
|
36 |
-
'url' => $this->getUrl('*/sales_order_export/csvexport'),
|
37 |
-
));
|
38 |
-
}
|
39 |
-
}
|
40 |
-
}
|
41 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Bluejalappeno/Orderexport/changelog.txt
CHANGED
@@ -16,4 +16,6 @@ v2.10 - Altered test for block type in Observer
|
|
16 |
|
17 |
v2.11 - Added support for Enterprise
|
18 |
|
|
|
|
|
19 |
|
16 |
|
17 |
v2.11 - Added support for Enterprise
|
18 |
|
19 |
+
v2.12 - Resolved issue following Magento patch SUPEE-6285
|
20 |
+
|
21 |
|
app/code/community/Bluejalappeno/Orderexport/controllers/Sales/Order/ExportController.php
CHANGED
@@ -75,5 +75,10 @@ class Bluejalappeno_Orderexport_Sales_Order_ExportController extends Mage_Adminh
|
|
75 |
break;
|
76 |
}
|
77 |
}
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
?>
|
75 |
break;
|
76 |
}
|
77 |
}
|
78 |
+
|
79 |
+
protected function _isAllowed()
|
80 |
+
{
|
81 |
+
return true;
|
82 |
+
}
|
83 |
}
|
84 |
?>
|
package.xml
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Bluejalappeno_Orderexport</name>
|
4 |
-
<version>2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Export your Magento orders in three versatile formats, including exports for CSV, Sage 50 and Highrise
|
10 |
<description>Order Export includes:
|
11 |

|
12 |
-export of full order details including customer details, payment, tax, shipping method
|
13 |
- standard csv format also includes item details and custom options with one line item per row
|
14 |
-Sage export is pre-formatted for upload to Sage accounting systems
|
15 |
-
-Highrise export will connect with your Highrise CRM account and update your customer details, order history and background information
|
16 |
-
<notes>
|
17 |
-
<authors><author><name>Genevieve Eddison</name><user>
|
18 |
-
<date>
|
19 |
-
<time>01:
|
20 |
-
<contents><target name="magecommunity"><dir name="Bluejalappeno"><dir name="Orderexport"><dir name="
|
21 |
<compatible/>
|
22 |
-
<dependencies
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Bluejalappeno_Orderexport</name>
|
4 |
+
<version>2.12.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Export your Magento orders in three versatile formats, including exports for CSV, Sage 50 and Highrise</summary>
|
10 |
<description>Order Export includes:
|
11 |

|
12 |
-export of full order details including customer details, payment, tax, shipping method
|
13 |
- standard csv format also includes item details and custom options with one line item per row
|
14 |
-Sage export is pre-formatted for upload to Sage accounting systems
|
15 |
+
-Highrise export will connect with your Highrise CRM account and update your customer details, order history and background information.</description>
|
16 |
+
<notes>Resolved issue with Magento security patch SUPEE-6285</notes>
|
17 |
+
<authors><author><name>Genevieve Eddison</name><user>auto-converted</user><email>sales@bluejalappeno.com</email></author></authors>
|
18 |
+
<date>2016-01-30</date>
|
19 |
+
<time>01:42:14</time>
|
20 |
+
<contents><target name="magecommunity"><dir name="Bluejalappeno"><dir name="Orderexport"><dir name="Helper"><file name="Data.php" hash="54167d4d52bbe2a993031b12d29f0b89"/></dir><dir name="Model"><dir name="Export"><file name="Abstractcsv.php" hash="01607a1c81b14816fa8236a2f9eaf2bd"/><file name="Csv.php" hash="f00ae2076f43a7f73e30fd86ca940371"/><file name="Highrise.php" hash="846f2903af565ded408c8d68745545bb"/><file name="Sage.php" hash="c02b7792430a48f1cd497fd477c911fb"/><file name="Status.php" hash="9864800aa692cfc3846a50cead36c4b1"/></dir><dir name="Options"><file name="Options.php" hash="21f4fdf0df408aad2a0898d1e1459cfd"/></dir><file name="Observer.php" hash="23262c9e09abd58d14365b47ea7fbe00"/></dir><dir name="controllers"><dir name="Sales"><dir name="Order"><file name="ExportController.php" hash="c03eeb7c86210a11400287e64c570561"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="ea64eff226e20394b5514700b31a9b58"/><file name="system.xml" hash="b2d7e6ec001938c450e602b45eefcad1"/></dir><file name="changelog.txt" hash="30f55b601636083ff8178baf5cca11d3"/><file name="versions_supported.txt" hash="a3e69dd4d9f892aab0dcbf0a5dd246e2"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Bluejalappeno_Orderexport.xml" hash="2475d3204e4ed96a2969993d51eacfe2"/></dir></target></contents>
|
21 |
<compatible/>
|
22 |
+
<dependencies/>
|
23 |
</package>
|