Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set minimum purchase order amount

Tags:

magento

orders

When customer places an order, how to set minimum order amount?

i.e) Total amount of order not below than $500.

I know how to get total order amount. But I don't know where to place that code and where to check

   sOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
   $oOrder = Mage::getModel('sales/order')->load($sOrderId);
    if($oOrder >=$500)
    {
   .....
     }

If customer has purchased total less than $500, they won't allow to checkout at the cart.

like image 546
DRAJI Avatar asked Jun 10 '13 06:06

DRAJI


People also ask

How do you set a minimum order value?

Look at the cost of the items you sell to determine your minimum order amount. For instance, if you know that you want to make at least $15 per order and you sell items that cost you $1 each for a price of $2.50 each, you need to sell at least 10 items. That means your minimum order value for this example is $25.

What is minimum purchase order?

Minimum Order Quantity refers to the minimum amount that can be ordered from a wholesaler supplier. For example, if you have an MOQ of 100 units or $100, your customers must be able to purchase at least 100 units or spend $100 to be able to buy from you.

How do you set a minimum order quantity in SAP?

to Set Up Minimum Order quantity MM Sales Org 1 view. Distribution -->> Sales -->> Define Variable Message. be Processed until Min Order Quantity is Met. Thank You.


1 Answers

Login as admin, then go to System->configuration, then select ‘Sales‘ from left Nav and click on ‘Minimum order amount‘. Then select Yes from Enable dropdown, enter Minimum order amount, enter message and also enter error message that will be shown whenever the order will be less than specified amount at the shopping cart.

Thanks.

like image 168
Chiragit007 Avatar answered Nov 19 '22 14:11

Chiragit007