How to export orders in csv file?












1














I'm new on Magento.



How to export orders with code SKU price etc.



I read the link below but didn't get where to add this code and how this code works please help.




Programmatically Export Sales order customer details to excel format











share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Create orderExport.php on magento root directory and add this code and run the file in browser.
    – Purushotam Sharma
    Jan 16 '18 at 4:37










  • Please accept my answer if it is helpful to you
    – Jigs Parmar
    Jan 18 '18 at 5:07
















1














I'm new on Magento.



How to export orders with code SKU price etc.



I read the link below but didn't get where to add this code and how this code works please help.




Programmatically Export Sales order customer details to excel format











share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Create orderExport.php on magento root directory and add this code and run the file in browser.
    – Purushotam Sharma
    Jan 16 '18 at 4:37










  • Please accept my answer if it is helpful to you
    – Jigs Parmar
    Jan 18 '18 at 5:07














1












1








1


1





I'm new on Magento.



How to export orders with code SKU price etc.



I read the link below but didn't get where to add this code and how this code works please help.




Programmatically Export Sales order customer details to excel format











share|improve this question















I'm new on Magento.



How to export orders with code SKU price etc.



I read the link below but didn't get where to add this code and how this code works please help.




Programmatically Export Sales order customer details to excel format








magento-1.9 magento-1.8 sales-order export






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 25 '18 at 3:51









Shashank Kumrawat

1,3701341




1,3701341










asked Jan 16 '18 at 4:32









SajjadSajjad

62




62





bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • Create orderExport.php on magento root directory and add this code and run the file in browser.
    – Purushotam Sharma
    Jan 16 '18 at 4:37










  • Please accept my answer if it is helpful to you
    – Jigs Parmar
    Jan 18 '18 at 5:07


















  • Create orderExport.php on magento root directory and add this code and run the file in browser.
    – Purushotam Sharma
    Jan 16 '18 at 4:37










  • Please accept my answer if it is helpful to you
    – Jigs Parmar
    Jan 18 '18 at 5:07
















Create orderExport.php on magento root directory and add this code and run the file in browser.
– Purushotam Sharma
Jan 16 '18 at 4:37




Create orderExport.php on magento root directory and add this code and run the file in browser.
– Purushotam Sharma
Jan 16 '18 at 4:37












Please accept my answer if it is helpful to you
– Jigs Parmar
Jan 18 '18 at 5:07




Please accept my answer if it is helpful to you
– Jigs Parmar
Jan 18 '18 at 5:07










2 Answers
2






active

oldest

votes


















0














You can use below script to export order



<?php    
require_once('app/Mage.php');
Mage::app();

$data=Mage::getModel('sales/order')->getCollection();

$fp = fopen('exports_order.csv', 'w+');
$csvHeader = array('ID','STATUS');
fputcsv( $fp, $csvHeader,",");
foreach($data as $row)
{
fputcsv($fp, array($row->getId(),$row->getStatus()), ",");
}
fclose($fp);
?>





share|improve this answer





















  • where should i use this script
    – Sajjad
    Jan 17 '18 at 4:48










  • create test.php file in root
    – Jigs Parmar
    Jan 17 '18 at 4:51










  • i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
    – Sajjad
    Jan 17 '18 at 4:54










  • i have file orderExport.php with the above code
    – Sajjad
    Jan 17 '18 at 4:56










  • you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
    – Jigs Parmar
    Jan 17 '18 at 4:56



















0














<?php
require_once("app/Mage.php");
Mage::app();
Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID);
$orders = Mage::getModel('sales/order')->getCollection();
$orders->addAttributeToFilter('status', Mage_Sales_Model_Order::STATE_COMPLETE);
$fp = fopen('export.csv', 'w');

$header = array("Customer ID", "First Name", "Last Name", "Email", "City", "Telephone", "Country", "Postcode", "Status");
fputcsv($fp, $header);

foreach($orders as $order) {
$billingAddress = $order->getBillingAddress();
$countryCode = $billingAddress->getCountryId();
$country = Mage::getModel('directory/country')->loadByCode($countryCode);
$countryName = $country->getName();

$fields = array($order->getId(), $billingAddress->getFirstname(),$billingAddress->getLastname(), $billingAddress->getEmail(), $billingAddress->getCity(), $billingAddress->getTelephone(), $countryName, $billingAddress->getPostcode(), $order->getStatus());
fputcsv($fp, $fields);
}
?>


Please try this, Its working for me






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "479"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f209568%2fhow-to-export-orders-in-csv-file%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You can use below script to export order



    <?php    
    require_once('app/Mage.php');
    Mage::app();

    $data=Mage::getModel('sales/order')->getCollection();

    $fp = fopen('exports_order.csv', 'w+');
    $csvHeader = array('ID','STATUS');
    fputcsv( $fp, $csvHeader,",");
    foreach($data as $row)
    {
    fputcsv($fp, array($row->getId(),$row->getStatus()), ",");
    }
    fclose($fp);
    ?>





    share|improve this answer





















    • where should i use this script
      – Sajjad
      Jan 17 '18 at 4:48










    • create test.php file in root
      – Jigs Parmar
      Jan 17 '18 at 4:51










    • i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
      – Sajjad
      Jan 17 '18 at 4:54










    • i have file orderExport.php with the above code
      – Sajjad
      Jan 17 '18 at 4:56










    • you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
      – Jigs Parmar
      Jan 17 '18 at 4:56
















    0














    You can use below script to export order



    <?php    
    require_once('app/Mage.php');
    Mage::app();

    $data=Mage::getModel('sales/order')->getCollection();

    $fp = fopen('exports_order.csv', 'w+');
    $csvHeader = array('ID','STATUS');
    fputcsv( $fp, $csvHeader,",");
    foreach($data as $row)
    {
    fputcsv($fp, array($row->getId(),$row->getStatus()), ",");
    }
    fclose($fp);
    ?>





    share|improve this answer





















    • where should i use this script
      – Sajjad
      Jan 17 '18 at 4:48










    • create test.php file in root
      – Jigs Parmar
      Jan 17 '18 at 4:51










    • i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
      – Sajjad
      Jan 17 '18 at 4:54










    • i have file orderExport.php with the above code
      – Sajjad
      Jan 17 '18 at 4:56










    • you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
      – Jigs Parmar
      Jan 17 '18 at 4:56














    0












    0








    0






    You can use below script to export order



    <?php    
    require_once('app/Mage.php');
    Mage::app();

    $data=Mage::getModel('sales/order')->getCollection();

    $fp = fopen('exports_order.csv', 'w+');
    $csvHeader = array('ID','STATUS');
    fputcsv( $fp, $csvHeader,",");
    foreach($data as $row)
    {
    fputcsv($fp, array($row->getId(),$row->getStatus()), ",");
    }
    fclose($fp);
    ?>





    share|improve this answer












    You can use below script to export order



    <?php    
    require_once('app/Mage.php');
    Mage::app();

    $data=Mage::getModel('sales/order')->getCollection();

    $fp = fopen('exports_order.csv', 'w+');
    $csvHeader = array('ID','STATUS');
    fputcsv( $fp, $csvHeader,",");
    foreach($data as $row)
    {
    fputcsv($fp, array($row->getId(),$row->getStatus()), ",");
    }
    fclose($fp);
    ?>






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Jan 16 '18 at 5:15









    Jigs ParmarJigs Parmar

    1,092323




    1,092323












    • where should i use this script
      – Sajjad
      Jan 17 '18 at 4:48










    • create test.php file in root
      – Jigs Parmar
      Jan 17 '18 at 4:51










    • i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
      – Sajjad
      Jan 17 '18 at 4:54










    • i have file orderExport.php with the above code
      – Sajjad
      Jan 17 '18 at 4:56










    • you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
      – Jigs Parmar
      Jan 17 '18 at 4:56


















    • where should i use this script
      – Sajjad
      Jan 17 '18 at 4:48










    • create test.php file in root
      – Jigs Parmar
      Jan 17 '18 at 4:51










    • i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
      – Sajjad
      Jan 17 '18 at 4:54










    • i have file orderExport.php with the above code
      – Sajjad
      Jan 17 '18 at 4:56










    • you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
      – Jigs Parmar
      Jan 17 '18 at 4:56
















    where should i use this script
    – Sajjad
    Jan 17 '18 at 4:48




    where should i use this script
    – Sajjad
    Jan 17 '18 at 4:48












    create test.php file in root
    – Jigs Parmar
    Jan 17 '18 at 4:51




    create test.php file in root
    – Jigs Parmar
    Jan 17 '18 at 4:51












    i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
    – Sajjad
    Jan 17 '18 at 4:54




    i didn't see any other information accept get mail or order i want complete order detail like sku price inventory
    – Sajjad
    Jan 17 '18 at 4:54












    i have file orderExport.php with the above code
    – Sajjad
    Jan 17 '18 at 4:56




    i have file orderExport.php with the above code
    – Sajjad
    Jan 17 '18 at 4:56












    you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
    – Jigs Parmar
    Jan 17 '18 at 4:56




    you change code as per your requirment , current code genrate exports_order.csv file in your root with order id and order status only
    – Jigs Parmar
    Jan 17 '18 at 4:56













    0














    <?php
    require_once("app/Mage.php");
    Mage::app();
    Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID);
    $orders = Mage::getModel('sales/order')->getCollection();
    $orders->addAttributeToFilter('status', Mage_Sales_Model_Order::STATE_COMPLETE);
    $fp = fopen('export.csv', 'w');

    $header = array("Customer ID", "First Name", "Last Name", "Email", "City", "Telephone", "Country", "Postcode", "Status");
    fputcsv($fp, $header);

    foreach($orders as $order) {
    $billingAddress = $order->getBillingAddress();
    $countryCode = $billingAddress->getCountryId();
    $country = Mage::getModel('directory/country')->loadByCode($countryCode);
    $countryName = $country->getName();

    $fields = array($order->getId(), $billingAddress->getFirstname(),$billingAddress->getLastname(), $billingAddress->getEmail(), $billingAddress->getCity(), $billingAddress->getTelephone(), $countryName, $billingAddress->getPostcode(), $order->getStatus());
    fputcsv($fp, $fields);
    }
    ?>


    Please try this, Its working for me






    share|improve this answer


























      0














      <?php
      require_once("app/Mage.php");
      Mage::app();
      Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID);
      $orders = Mage::getModel('sales/order')->getCollection();
      $orders->addAttributeToFilter('status', Mage_Sales_Model_Order::STATE_COMPLETE);
      $fp = fopen('export.csv', 'w');

      $header = array("Customer ID", "First Name", "Last Name", "Email", "City", "Telephone", "Country", "Postcode", "Status");
      fputcsv($fp, $header);

      foreach($orders as $order) {
      $billingAddress = $order->getBillingAddress();
      $countryCode = $billingAddress->getCountryId();
      $country = Mage::getModel('directory/country')->loadByCode($countryCode);
      $countryName = $country->getName();

      $fields = array($order->getId(), $billingAddress->getFirstname(),$billingAddress->getLastname(), $billingAddress->getEmail(), $billingAddress->getCity(), $billingAddress->getTelephone(), $countryName, $billingAddress->getPostcode(), $order->getStatus());
      fputcsv($fp, $fields);
      }
      ?>


      Please try this, Its working for me






      share|improve this answer
























        0












        0








        0






        <?php
        require_once("app/Mage.php");
        Mage::app();
        Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID);
        $orders = Mage::getModel('sales/order')->getCollection();
        $orders->addAttributeToFilter('status', Mage_Sales_Model_Order::STATE_COMPLETE);
        $fp = fopen('export.csv', 'w');

        $header = array("Customer ID", "First Name", "Last Name", "Email", "City", "Telephone", "Country", "Postcode", "Status");
        fputcsv($fp, $header);

        foreach($orders as $order) {
        $billingAddress = $order->getBillingAddress();
        $countryCode = $billingAddress->getCountryId();
        $country = Mage::getModel('directory/country')->loadByCode($countryCode);
        $countryName = $country->getName();

        $fields = array($order->getId(), $billingAddress->getFirstname(),$billingAddress->getLastname(), $billingAddress->getEmail(), $billingAddress->getCity(), $billingAddress->getTelephone(), $countryName, $billingAddress->getPostcode(), $order->getStatus());
        fputcsv($fp, $fields);
        }
        ?>


        Please try this, Its working for me






        share|improve this answer












        <?php
        require_once("app/Mage.php");
        Mage::app();
        Mage::app()->getStore()->setId(Mage_Core_Model_App::ADMIN_STORE_ID);
        $orders = Mage::getModel('sales/order')->getCollection();
        $orders->addAttributeToFilter('status', Mage_Sales_Model_Order::STATE_COMPLETE);
        $fp = fopen('export.csv', 'w');

        $header = array("Customer ID", "First Name", "Last Name", "Email", "City", "Telephone", "Country", "Postcode", "Status");
        fputcsv($fp, $header);

        foreach($orders as $order) {
        $billingAddress = $order->getBillingAddress();
        $countryCode = $billingAddress->getCountryId();
        $country = Mage::getModel('directory/country')->loadByCode($countryCode);
        $countryName = $country->getName();

        $fields = array($order->getId(), $billingAddress->getFirstname(),$billingAddress->getLastname(), $billingAddress->getEmail(), $billingAddress->getCity(), $billingAddress->getTelephone(), $countryName, $billingAddress->getPostcode(), $order->getStatus());
        fputcsv($fp, $fields);
        }
        ?>


        Please try this, Its working for me







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Oct 25 '18 at 2:52









        Manish BhojwaniManish Bhojwani

        211




        211






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Magento Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f209568%2fhow-to-export-orders-in-csv-file%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            An IMO inspired problem

            Management

            Investment