cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 1 Issue- Shopping cart rule does not apply on Reorder from backend

Magento 1 Issue- Shopping cart rule does not apply on Reorder from backend

I am using Magento EE ver. 1.14.2.4 I have observed that shopping cart price rule does not apply on reorder from backend admin side.

It considers the original product amount instead of applying shopping cart price rule into order.

Scenario :-

  1. Add shopping cart rule for fix $25 discount on all products.

  2. Add product, rule applied, order placed with shopping cart rule considered. see here - https://i.stack.imgur.com/DQ8od.png

    3. On reorder page shopping cart rule does on apply. see

        here - https://i.stack.imgur.com/TvK3N.png

 

Is their any way i can set the order total data into quote, so on reorder page the discount gets applied same as the order page ?

2 REPLIES 2

Re: Magento 1 Issue- Shopping cart rule does not apply on Reorder from backend

Hello @hamendrasub7ef 

 

Two tables are used for quote/cart data where you can check total, subtotal, applied cart rules etc :

 

1. sales_flat_quote

2. sales_flat_quote_item

 

Hope it helps !

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

Re: Magento 1 Issue- Shopping cart rule does not apply on Reorder from backend

Hello, thanks for your response.

 

Actually when i click on "Update Items and Qty's" button below items grid,

it applies the shopping cart rule but the shipping method then gets unselected.

 

I am not sure why is it so,

 

Also i have checked app/code/core/Mage/Adminhtml/Model/Sales/Order/Create.php 

in that i get proper order details but when i check $quote->getData() , then it does not have the rule applied total in it.

& this happens after

$this->getQuote()->collectTotals(); returns object with subtotal without discount.