Order_Export - Version 0.1.1

Version Notes

This is first release.

Download this release

Release Info

Developer Unicode Systems
Extension Order_Export
Version 0.1.1
Comparing to
See all releases


Code changes from version 0.1.0 to 0.1.1

Files changed (27) hide show
  1. app/code/community/Uni/Orderexport/Block/Adminhtml/Customer/Grid.php +2 -2
  2. app/code/community/Uni/Orderexport/Block/Adminhtml/Export.php +2 -2
  3. app/code/community/Uni/Orderexport/Block/Adminhtml/Orderexport.php +2 -2
  4. app/code/community/Uni/Orderexport/Block/Adminhtml/Orderexport/Edit/Form.php +2 -2
  5. app/code/community/Uni/Orderexport/Block/Adminhtml/Orderexport/Grid.php +2 -2
  6. app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Creditmemo/Grid.php +2 -2
  7. app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Invoice/Grid.php +2 -2
  8. app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Order/Grid.php +2 -2
  9. app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Shipment/Grid.php +2 -2
  10. app/code/community/Uni/Orderexport/Helper/Data.php +2 -2
  11. app/code/community/Uni/Orderexport/Model/Export/CreditmemoExportCsv.php +2 -2
  12. app/code/community/Uni/Orderexport/Model/Export/CustomerExportCsv.php +2 -2
  13. app/code/community/Uni/Orderexport/Model/Export/InvoiceExportCsv.php +2 -2
  14. app/code/community/Uni/Orderexport/Model/Export/OrderExportCsv.php +2 -2
  15. app/code/community/Uni/Orderexport/Model/Export/ShipmentExportCsv.php +2 -2
  16. app/code/community/Uni/Orderexport/Model/Mysql4/Orderexport.php +2 -2
  17. app/code/community/Uni/Orderexport/Model/Mysql4/Orderexport/Collection.php +2 -2
  18. app/code/community/Uni/Orderexport/Model/Orderexport.php +2 -2
  19. app/code/community/Uni/Orderexport/controllers/Adminhtml/ExportController.php +2 -2
  20. app/code/community/Uni/Orderexport/controllers/Adminhtml/SalesexportController.php +2 -2
  21. app/code/community/Uni/Orderexport/etc/adminhtml.xml +2 -2
  22. app/code/community/Uni/Orderexport/etc/config.xml +3 -3
  23. app/code/community/Uni/Orderexport/etc/system.xml +2 -2
  24. app/code/community/Uni/Orderexport/sql/orderexport_setup/mysql4-install-0.1.0.php +2 -2
  25. app/design/adminhtml/default/default/layout/orderexport.xml +7 -0
  26. app/etc/modules/Uni_Orderexport.xml +15 -8
  27. package.xml +12 -8
app/code/community/Uni/Orderexport/Block/Adminhtml/Customer/Grid.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Customer_Grid extends Mage_Adminhtml_Block_Customer_Grid {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Customer_Grid extends Mage_Adminhtml_Block_Customer_Grid {
11
 
app/code/community/Uni/Orderexport/Block/Adminhtml/Export.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
 
11
  class Uni_Orderexport_Block_Adminhtml_Export extends Mage_Adminhtml_Block_Widget_Grid_Container {
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
 
11
  class Uni_Orderexport_Block_Adminhtml_Export extends Mage_Adminhtml_Block_Widget_Grid_Container {
app/code/community/Uni/Orderexport/Block/Adminhtml/Orderexport.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Orderexport extends Mage_Adminhtml_Block_Widget_Form_Container {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Orderexport extends Mage_Adminhtml_Block_Widget_Form_Container {
11
 
app/code/community/Uni/Orderexport/Block/Adminhtml/Orderexport/Edit/Form.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  ?>
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  ?>
11
 
app/code/community/Uni/Orderexport/Block/Adminhtml/Orderexport/Grid.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Orderexport_Grid extends Mage_Adminhtml_Block_Widget_Grid {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Orderexport_Grid extends Mage_Adminhtml_Block_Widget_Grid {
11
 
app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Creditmemo/Grid.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Sales_Creditmemo_Grid extends Mage_Adminhtml_Block_Sales_Creditmemo_Grid {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Sales_Creditmemo_Grid extends Mage_Adminhtml_Block_Sales_Creditmemo_Grid {
11
 
app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Invoice/Grid.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Sales_Invoice_Grid extends Mage_Adminhtml_Block_Sales_Invoice_Grid {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Sales_Invoice_Grid extends Mage_Adminhtml_Block_Sales_Invoice_Grid {
11
 
app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Order/Grid.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
 
11
  class Uni_Orderexport_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Sales_Order_Grid {
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
 
11
  class Uni_Orderexport_Block_Adminhtml_Sales_Order_Grid extends Mage_Adminhtml_Block_Sales_Order_Grid {
app/code/community/Uni/Orderexport/Block/Adminhtml/Sales/Shipment/Grid.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Sales_Shipment_Grid extends Mage_Adminhtml_Block_Sales_Shipment_Grid {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Block_Adminhtml_Sales_Shipment_Grid extends Mage_Adminhtml_Block_Sales_Shipment_Grid {
11
 
app/code/community/Uni/Orderexport/Helper/Data.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Helper_Data extends Mage_Core_Helper_Abstract {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Helper_Data extends Mage_Core_Helper_Abstract {
11
 
app/code/community/Uni/Orderexport/Model/Export/CreditmemoExportCsv.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Model_Export_CreditmemoExportCsv {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Model_Export_CreditmemoExportCsv {
11
 
app/code/community/Uni/Orderexport/Model/Export/CustomerExportCsv.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Model_Export_CustomerExportCsv {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Model_Export_CustomerExportCsv {
11
 
app/code/community/Uni/Orderexport/Model/Export/InvoiceExportCsv.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Model_Export_InvoiceExportCsv {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Model_Export_InvoiceExportCsv {
11
 
app/code/community/Uni/Orderexport/Model/Export/OrderExportCsv.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Model_Export_OrderExportCsv {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Model_Export_OrderExportCsv {
11
 
app/code/community/Uni/Orderexport/Model/Export/ShipmentExportCsv.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Model_Export_ShipmentExportCsv {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Model_Export_ShipmentExportCsv {
11
 
app/code/community/Uni/Orderexport/Model/Mysql4/Orderexport.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
 
11
  class Uni_Orderexport_Model_Mysql4_Orderexport extends Mage_Core_Model_Mysql4_Abstract {
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
 
11
  class Uni_Orderexport_Model_Mysql4_Orderexport extends Mage_Core_Model_Mysql4_Abstract {
app/code/community/Uni/Orderexport/Model/Mysql4/Orderexport/Collection.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
 
11
  class Uni_Orderexport_Model_Mysql4_Orderexport_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract{
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
 
11
  class Uni_Orderexport_Model_Mysql4_Orderexport_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract{
app/code/community/Uni/Orderexport/Model/Orderexport.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
 
11
  class Uni_Orderexport_Model_Orderexport extends Mage_Core_Model_Abstract {
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
 
11
  class Uni_Orderexport_Model_Orderexport extends Mage_Core_Model_Abstract {
app/code/community/Uni/Orderexport/controllers/Adminhtml/ExportController.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Adminhtml_ExportController extends Mage_Adminhtml_Controller_Action {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Adminhtml_ExportController extends Mage_Adminhtml_Controller_Action {
11
 
app/code/community/Uni/Orderexport/controllers/Adminhtml/SalesexportController.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  class Uni_Orderexport_Adminhtml_SalesexportController extends Mage_Adminhtml_Controller_Action {
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  class Uni_Orderexport_Adminhtml_SalesexportController extends Mage_Adminhtml_Controller_Action {
11
 
app/code/community/Uni/Orderexport/etc/adminhtml.xml CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  -->
11
  <config>
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  -->
11
  <config>
app/code/community/Uni/Orderexport/etc/config.xml CHANGED
@@ -4,14 +4,14 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  -->
11
  <config>
12
  <modules>
13
  <Uni_Orderexport>
14
- <version>0.1.0</version>
15
  </Uni_Orderexport>
16
  </modules>
17
  <admin>
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  -->
11
  <config>
12
  <modules>
13
  <Uni_Orderexport>
14
+ <version>0.1.1</version>
15
  </Uni_Orderexport>
16
  </modules>
17
  <admin>
app/code/community/Uni/Orderexport/etc/system.xml CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  -->
11
  <config>
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  -->
11
  <config>
app/code/community/Uni/Orderexport/sql/orderexport_setup/mysql4-install-0.1.0.php CHANGED
@@ -4,8 +4,8 @@
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
- * @copyright Copyright (c) 2010-2011 Unicode Systems. (http://www.unicodesystems.in)
8
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
9
  */
10
  $installer = $this;
11
 
4
  * Unicode Systems
5
  * @category Uni
6
  * @package Uni_Orderexport
7
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
8
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
9
  */
10
  $installer = $this;
11
 
app/design/adminhtml/default/default/layout/orderexport.xml CHANGED
@@ -1,4 +1,11 @@
1
  <?xml version="1.0" ?>
 
 
 
 
 
 
 
2
  <layout version="0.1.0">
3
  <orderexport_adminhtml_export_history>
4
  <reference name="content">
1
  <?xml version="1.0" ?>
2
+ <!--/**
3
+ * Unicode Systems
4
+ * @category Uni
5
+ * @package Uni_Orderexport
6
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
7
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
8
+ */-->
9
  <layout version="0.1.0">
10
  <orderexport_adminhtml_export_history>
11
  <reference name="content">
app/etc/modules/Uni_Orderexport.xml CHANGED
@@ -1,11 +1,18 @@
1
  <?xml version="1.0"?>
 
 
 
 
 
 
 
2
  <config>
3
- <modules>
4
- <Uni_Orderexport>
5
- <active>1</active>
6
- <codePool>community</codePool>
7
- <version>0.1.0</version>
8
- <depends>Mage_Adminhtml</depends>
9
- </Uni_Orderexport>
10
- </modules>
11
  </config>
1
  <?xml version="1.0"?>
2
+ <!--/**
3
+ * Unicode Systems
4
+ * @category Uni
5
+ * @package Uni_Bargain
6
+ * @copyright Copyright (c) 2014-2015 Unicode Systems. (http://www.unicodesystems.in)
7
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL)
8
+ */-->
9
  <config>
10
+ <modules>
11
+ <Uni_Orderexport>
12
+ <active>1</active>
13
+ <codePool>community</codePool>
14
+ <version>0.1.0</version>
15
+ <depends>Mage_Adminhtml</depends>
16
+ </Uni_Orderexport>
17
+ </modules>
18
  </config>
package.xml CHANGED
@@ -1,20 +1,24 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Order_Export</name>
4
- <version>0.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Exporting orders/invoices/shipments/creditmemos/customer into CSV/XML formats.</summary>
10
- <description>Exporting orders/invoices/shipments/creditmemos/customer into CSV/XML formats.&#xD;
11
- Sending the exported files of one profile to two FTP servers and one email recipient.&#xD;
12
- Exporting orders/invoices/shipments/creditmemos/customer on demand for accounting purposes right from the Magento backend.</description>
 
 
 
 
13
  <notes>This is first release.</notes>
14
  <authors><author><name>Unicode Systems</name><user>Unicode_Systems</user><email>magento@unicodesystems.in</email></author></authors>
15
- <date>2015-01-22</date>
16
- <time>10:43:10</time>
17
- <contents><target name="magecommunity"><dir name="Uni"><dir name="Orderexport"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="33ae40db46a6ac2059aa1036aa17f827"/></dir><file name="Export.php" hash="ae915c93cccb65f0f8629eeeb95fe540"/><dir name="Orderexport"><dir name="Edit"><file name="Form.php" hash="0f02c1be8e9d851164d25b809c20d498"/></dir><file name="Grid.php" hash="0e83322d152e73571a1e94e60655183f"/></dir><file name="Orderexport.php" hash="144906f08ca09e4a2afafaf259463aa3"/><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="f114ecfbfd0ad51514f3f6c885a4ddd7"/></dir><dir name="Invoice"><file name="Grid.php" hash="a4b48c5fe30d168379711868e2d07f99"/></dir><dir name="Order"><file name="Grid.php" hash="d3be8928d9682c361e9856e34d0d79cc"/></dir><dir name="Shipment"><file name="Grid.php" hash="761259bf4d1294b00bf1d55993c9bf6c"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="b57f319caa4983466e96e93b35d22791"/></dir><dir name="Model"><dir name="Export"><file name="CreditmemoExportCsv.php" hash="0d40c43ec5e624e3dd8e7fef66ba3dce"/><file name="CustomerExportCsv.php" hash="7ae6099412be095d6c82ef55b15b25e2"/><file name="InvoiceExportCsv.php" hash="5babcaa05599fc81091e0763634a4092"/><file name="OrderExportCsv.php" hash="efc9525a11661cb45fdb8a3074c81128"/><file name="ShipmentExportCsv.php" hash="b7f5edd9e2176e239a469c94f4580ec5"/></dir><dir name="Mysql4"><dir name="Orderexport"><file name="Collection.php" hash="a206c333111e8d9f642843f11fb31baa"/></dir><file name="Orderexport.php" hash="0df46849476ff37d77e416c42f03a670"/></dir><file name="Orderexport.php" hash="bd4b49beb8cb391fc4af10b5a2a3947b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="235a2b95c0f8344d692e91f697d4aff7"/><file name="SalesexportController.php" hash="6555cb9da2697a8079cbecefd5816041"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b4adf3b552d087f237279966d7d574ee"/><file name="config.xml" hash="548fe518a47fe519caa6959a2173d4ef"/><file name="system.xml" hash="c3339227a366da7d674dfc4deb4af6ab"/></dir><dir name="sql"><dir name="orderexport_setup"><file name="mysql4-install-0.1.0.php" hash="75ddba61755c2955da53e82f9b7f71f6"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uni_Orderexport.xml" hash="5995dd6a402b4e2652ff9b6eac560831"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="orderexport.xml" hash="12871ee8a962353b73b34b1602f015db"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="app"><dir name="locale"><dir name="en_US"><dir name="template"><dir name="email"><file name="orderexport_form.html" hash="25472b5f75ab2ef809a75762c2b230b8"/></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.5.0.0</min><max>1.8.1.0</max></package><extension><name>gd</name><min>1.5.0.0</min><max>1.9.0.1</max></extension></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Order_Export</name>
4
+ <version>0.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary> The "Sales Export Extension" extension enable Exporting sales and Customer into CSV/XML formats.</summary>
10
+ <description> 1. Exporting orders/invoices/shipments/creditmemo and Customer into CSV/XML formats.&#xD;
11
+ 2. Sending the exported files of one profile to two FTP servers and one email recipient.&#xD;
12
+ 3. Exporting invoices on demand for accounting purposes right from the Magento backend.&#xD;
13
+ 4. Export directly from the Sales &gt; Order, Invoice, Shipment, Credit Memo, Customer grids.&#xD;
14
+ 5. Export history is maintained and can be managed very easily from admin pannel like download exported file, delete files from disk and FTP.&#xD;
15
+ 6. Export an unlimited amount of orders/invoices/shipments/credit memos quickly - there are no limits with regards to how many objects can be exported.&#xD;
16
+ 7. Works with all Magento versions.</description>
17
  <notes>This is first release.</notes>
18
  <authors><author><name>Unicode Systems</name><user>Unicode_Systems</user><email>magento@unicodesystems.in</email></author></authors>
19
+ <date>2015-01-23</date>
20
+ <time>06:55:13</time>
21
+ <contents><target name="magecommunity"><dir name="Uni"><dir name="Orderexport"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="d9160df28c1f3da9f73aa3007fcb231e"/></dir><file name="Export.php" hash="e8cd5c97c0a1fa82f5a97df3b770021f"/><dir name="Orderexport"><dir name="Edit"><file name="Form.php" hash="4e1722d04c1fe12be7a8d498499cafac"/></dir><file name="Grid.php" hash="33edb1e9de3e10b3c6e7c3cf56fc243a"/></dir><file name="Orderexport.php" hash="23381d894ccde9adb8b352f5dacb9774"/><dir name="Sales"><dir name="Creditmemo"><file name="Grid.php" hash="f93c875e0da18456026f3d3c9177e3f3"/></dir><dir name="Invoice"><file name="Grid.php" hash="e3698254a547b063d3612cb36aa2e33f"/></dir><dir name="Order"><file name="Grid.php" hash="065e82d6a487d2b295f8babf9e3d591c"/></dir><dir name="Shipment"><file name="Grid.php" hash="bc280d300e3e7dc73793f3f770e80d7f"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="2dfa0b85a86ecfaa86210c7407a15dfa"/></dir><dir name="Model"><dir name="Export"><file name="CreditmemoExportCsv.php" hash="c0c579e116955afce02ce9a9b60aaa29"/><file name="CustomerExportCsv.php" hash="20554cb43217cb8c125b897c9d1d6356"/><file name="InvoiceExportCsv.php" hash="bf2f0ba86480f50fe16f221ab7c8de6b"/><file name="OrderExportCsv.php" hash="029fe81b65272e46ff654ce8fba55ce5"/><file name="ShipmentExportCsv.php" hash="dfd6acd39fa45b5ec58baab6f829ff23"/></dir><dir name="Mysql4"><dir name="Orderexport"><file name="Collection.php" hash="a1b211aad9184f7ac95e3ea6b8aaba41"/></dir><file name="Orderexport.php" hash="1553e0684bbbc43c95b1009e9e06110f"/></dir><file name="Orderexport.php" hash="98c52b5384a7162a8ea622bf5f690ea2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ExportController.php" hash="4dc993704f4213def81367fb804e38f7"/><file name="SalesexportController.php" hash="aed6c8fb55cdfc97cca6c6c9033959c6"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="079285ed8be081b05706c54d71e14651"/><file name="config.xml" hash="b3e409e9a4f8c52b33b6e63f2f8a5e7f"/><file name="system.xml" hash="e582eaa9bec748b4222f603dea1d55f1"/></dir><dir name="sql"><dir name="orderexport_setup"><file name="mysql4-install-0.1.0.php" hash="fd0be6e886bc069c9dccc1faabcd00c3"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Uni_Orderexport.xml" hash="edfc087828b5e2ffc7d1672bcc611ab8"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="orderexport.xml" hash="49388ccbf26b3ad18bce2c3a79461bf9"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="app"><dir name="locale"><dir name="en_US"><dir name="template"><dir name="email"><file name="orderexport_form.html" hash="25472b5f75ab2ef809a75762c2b230b8"/></dir></dir></dir></dir></dir></target></contents>
22
  <compatible/>
23
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.5.0.0</min><max>1.8.1.0</max></package><extension><name>gd</name><min>1.5.0.0</min><max>1.9.0.1</max></extension></required></dependencies>
24
  </package>