how to create order programmatically logged in customer?












0















Currently I make php script to generate order not logged in customer but i want to use this script for logged in customer dynamically for logged in customer my code is



thanks



$quote = Mage::getModel('sales/quote')

->setStoreId(Mage::app()->getStore('default')->getId());


// for guest orders only:
$quote->setCustomerEmail('customer@email.com');
//}
// add product(s)
$product = Mage::getModel('catalog/product')->load(1307,1305);
$buyInfo = array(
'qty' => 1,
// custom option id => value id
// or
// configurable attribute id => value id
);
$quote->addProduct($product, new Varien_Object($buyInfo));
//$quote->addProduct($product2, new Varien_Object($buyInfo));
$addressData = array(
'firstname' => 'Test',
'lastname' => 'Test',
'street' => 'Sample Street 10',
'city' => 'Somewhere',
'postcode' => '123456',
'telephone' => '123456',
'country_id' => 'US',
'region_id' => 12, // id from directory_country_region table
);
$billingAddress = $quote->getBillingAddress()->addData($addressData);
$shippingAddress = $quote->getShippingAddress()->addData($addressData);
$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
->setShippingMethod('flatrate_flatrate')
->setPaymentMethod('checkmo');
$quote->getPayment()->importData(array('method' => 'checkmo'));
$quote->collectTotals()->save();
echo "quote save";
$service = Mage::getModel('sales/service_quote', $quote);
$service->submitAll();
echo "order save";
$order = $service->getOrder();
printf("Created order %sn", $order->getIncrementId());
}catch(Exception $e){

print_r($e->getMessage());
}


this script is create order programaticaly for not loggedin customer










share|improve this question

























  • Is this the script exactly as you use it because it's not actually valid at the moment? For instance, there is a try catch without the opening try, and loading of the product is wrong - you can't pass 2 ids, only an id and a column to load()

    – Jonathan Hussey
    Nov 24 '15 at 9:32
















0















Currently I make php script to generate order not logged in customer but i want to use this script for logged in customer dynamically for logged in customer my code is



thanks



$quote = Mage::getModel('sales/quote')

->setStoreId(Mage::app()->getStore('default')->getId());


// for guest orders only:
$quote->setCustomerEmail('customer@email.com');
//}
// add product(s)
$product = Mage::getModel('catalog/product')->load(1307,1305);
$buyInfo = array(
'qty' => 1,
// custom option id => value id
// or
// configurable attribute id => value id
);
$quote->addProduct($product, new Varien_Object($buyInfo));
//$quote->addProduct($product2, new Varien_Object($buyInfo));
$addressData = array(
'firstname' => 'Test',
'lastname' => 'Test',
'street' => 'Sample Street 10',
'city' => 'Somewhere',
'postcode' => '123456',
'telephone' => '123456',
'country_id' => 'US',
'region_id' => 12, // id from directory_country_region table
);
$billingAddress = $quote->getBillingAddress()->addData($addressData);
$shippingAddress = $quote->getShippingAddress()->addData($addressData);
$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
->setShippingMethod('flatrate_flatrate')
->setPaymentMethod('checkmo');
$quote->getPayment()->importData(array('method' => 'checkmo'));
$quote->collectTotals()->save();
echo "quote save";
$service = Mage::getModel('sales/service_quote', $quote);
$service->submitAll();
echo "order save";
$order = $service->getOrder();
printf("Created order %sn", $order->getIncrementId());
}catch(Exception $e){

print_r($e->getMessage());
}


this script is create order programaticaly for not loggedin customer










share|improve this question

























  • Is this the script exactly as you use it because it's not actually valid at the moment? For instance, there is a try catch without the opening try, and loading of the product is wrong - you can't pass 2 ids, only an id and a column to load()

    – Jonathan Hussey
    Nov 24 '15 at 9:32














0












0








0








Currently I make php script to generate order not logged in customer but i want to use this script for logged in customer dynamically for logged in customer my code is



thanks



$quote = Mage::getModel('sales/quote')

->setStoreId(Mage::app()->getStore('default')->getId());


// for guest orders only:
$quote->setCustomerEmail('customer@email.com');
//}
// add product(s)
$product = Mage::getModel('catalog/product')->load(1307,1305);
$buyInfo = array(
'qty' => 1,
// custom option id => value id
// or
// configurable attribute id => value id
);
$quote->addProduct($product, new Varien_Object($buyInfo));
//$quote->addProduct($product2, new Varien_Object($buyInfo));
$addressData = array(
'firstname' => 'Test',
'lastname' => 'Test',
'street' => 'Sample Street 10',
'city' => 'Somewhere',
'postcode' => '123456',
'telephone' => '123456',
'country_id' => 'US',
'region_id' => 12, // id from directory_country_region table
);
$billingAddress = $quote->getBillingAddress()->addData($addressData);
$shippingAddress = $quote->getShippingAddress()->addData($addressData);
$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
->setShippingMethod('flatrate_flatrate')
->setPaymentMethod('checkmo');
$quote->getPayment()->importData(array('method' => 'checkmo'));
$quote->collectTotals()->save();
echo "quote save";
$service = Mage::getModel('sales/service_quote', $quote);
$service->submitAll();
echo "order save";
$order = $service->getOrder();
printf("Created order %sn", $order->getIncrementId());
}catch(Exception $e){

print_r($e->getMessage());
}


this script is create order programaticaly for not loggedin customer










share|improve this question
















Currently I make php script to generate order not logged in customer but i want to use this script for logged in customer dynamically for logged in customer my code is



thanks



$quote = Mage::getModel('sales/quote')

->setStoreId(Mage::app()->getStore('default')->getId());


// for guest orders only:
$quote->setCustomerEmail('customer@email.com');
//}
// add product(s)
$product = Mage::getModel('catalog/product')->load(1307,1305);
$buyInfo = array(
'qty' => 1,
// custom option id => value id
// or
// configurable attribute id => value id
);
$quote->addProduct($product, new Varien_Object($buyInfo));
//$quote->addProduct($product2, new Varien_Object($buyInfo));
$addressData = array(
'firstname' => 'Test',
'lastname' => 'Test',
'street' => 'Sample Street 10',
'city' => 'Somewhere',
'postcode' => '123456',
'telephone' => '123456',
'country_id' => 'US',
'region_id' => 12, // id from directory_country_region table
);
$billingAddress = $quote->getBillingAddress()->addData($addressData);
$shippingAddress = $quote->getShippingAddress()->addData($addressData);
$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
->setShippingMethod('flatrate_flatrate')
->setPaymentMethod('checkmo');
$quote->getPayment()->importData(array('method' => 'checkmo'));
$quote->collectTotals()->save();
echo "quote save";
$service = Mage::getModel('sales/service_quote', $quote);
$service->submitAll();
echo "order save";
$order = $service->getOrder();
printf("Created order %sn", $order->getIncrementId());
}catch(Exception $e){

print_r($e->getMessage());
}


this script is create order programaticaly for not loggedin customer







magento-1.9






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 mins ago









Himanshu

812521




812521










asked Nov 24 '15 at 7:34









Arvind JhaArvind Jha

506




506













  • Is this the script exactly as you use it because it's not actually valid at the moment? For instance, there is a try catch without the opening try, and loading of the product is wrong - you can't pass 2 ids, only an id and a column to load()

    – Jonathan Hussey
    Nov 24 '15 at 9:32



















  • Is this the script exactly as you use it because it's not actually valid at the moment? For instance, there is a try catch without the opening try, and loading of the product is wrong - you can't pass 2 ids, only an id and a column to load()

    – Jonathan Hussey
    Nov 24 '15 at 9:32

















Is this the script exactly as you use it because it's not actually valid at the moment? For instance, there is a try catch without the opening try, and loading of the product is wrong - you can't pass 2 ids, only an id and a column to load()

– Jonathan Hussey
Nov 24 '15 at 9:32





Is this the script exactly as you use it because it's not actually valid at the moment? For instance, there is a try catch without the opening try, and loading of the product is wrong - you can't pass 2 ids, only an id and a column to load()

– Jonathan Hussey
Nov 24 '15 at 9:32










1 Answer
1






active

oldest

votes


















0














Add bellow code in your file



// for login customer orders only:
$email = "customer@email.com";

$customer = Mage::getModel('customer/customer');
$customer->setWebsiteId(Mage::app()->getStore()->getWebsiteId())->loadByEmail($email);

$quote->setCustomer($customer)
->setCheckoutMethod($customer->getMode())
->setPasswordHash($customer->encryptPassword($customer->getPassword()));





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%2f91341%2fhow-to-create-order-programmatically-logged-in-customer%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Add bellow code in your file



    // for login customer orders only:
    $email = "customer@email.com";

    $customer = Mage::getModel('customer/customer');
    $customer->setWebsiteId(Mage::app()->getStore()->getWebsiteId())->loadByEmail($email);

    $quote->setCustomer($customer)
    ->setCheckoutMethod($customer->getMode())
    ->setPasswordHash($customer->encryptPassword($customer->getPassword()));





    share|improve this answer




























      0














      Add bellow code in your file



      // for login customer orders only:
      $email = "customer@email.com";

      $customer = Mage::getModel('customer/customer');
      $customer->setWebsiteId(Mage::app()->getStore()->getWebsiteId())->loadByEmail($email);

      $quote->setCustomer($customer)
      ->setCheckoutMethod($customer->getMode())
      ->setPasswordHash($customer->encryptPassword($customer->getPassword()));





      share|improve this answer


























        0












        0








        0







        Add bellow code in your file



        // for login customer orders only:
        $email = "customer@email.com";

        $customer = Mage::getModel('customer/customer');
        $customer->setWebsiteId(Mage::app()->getStore()->getWebsiteId())->loadByEmail($email);

        $quote->setCustomer($customer)
        ->setCheckoutMethod($customer->getMode())
        ->setPasswordHash($customer->encryptPassword($customer->getPassword()));





        share|improve this answer













        Add bellow code in your file



        // for login customer orders only:
        $email = "customer@email.com";

        $customer = Mage::getModel('customer/customer');
        $customer->setWebsiteId(Mage::app()->getStore()->getWebsiteId())->loadByEmail($email);

        $quote->setCustomer($customer)
        ->setCheckoutMethod($customer->getMode())
        ->setPasswordHash($customer->encryptPassword($customer->getPassword()));






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 24 '15 at 7:44









        AbdulAbdul

        7,99511135




        7,99511135






























            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f91341%2fhow-to-create-order-programmatically-logged-in-customer%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

            Polycentropodidae

            Magento 2 Error message: Invalid state change requested

            Paulmy