Announcement

Collapse
No announcement yet.

Volume pricing in fixed quantity increments

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Volume pricing in fixed quantity increments

    We have at least 50 products that we sell in individual quantities to consumers and sell them to wholesalers in case quantities at a discount of 50%. We have a price group that works, 24 up 50% off, however if possible I would like to restrict the input quantities for wholesales, specific customers that use this price group, to inputs of 24, 48, 72, 96 etc, increments of 24. They are not allowed to buy in broken case quantities for this discount.

    Anyone doing this? How?
    Thanks,
    Chet Vincentz
    [email protected]

    www.electrodyne.cc Quality Motoring Accessories
    www.racdyn-usa.com BMW, MINI & Porsche performance
    www.artisticartifacts.com Creative art materials

    #2
    Re: Volume pricing in fixed quantity increments

    Sorry forgot to say we are on Ready themes and latest updates
    Thanks,
    Chet Vincentz
    [email protected]

    www.electrodyne.cc Quality Motoring Accessories
    www.racdyn-usa.com BMW, MINI & Porsche performance
    www.artisticartifacts.com Creative art materials

    Comment


      #3
      Re: Volume pricing in fixed quantity increments

      One way to restrict the quantity purchased is to create a new product that's a 24-pack of the base product. Other than that, I think you're going to need a custom module, or maybe some template code. This can restrict the quantity to multiples of 24 when customers are putting the item in their basket, and also when they're changing the quantity of items already in the basket. If you're interested in this solution, you can drop me a line by email to discuss it in detail.

      Thanks --
      Kent Multer
      Magic Metal Productions
      http://TheMagicM.com
      * Web developer/designer
      * E-commerce and Miva
      * Author, The Official Miva Web Scripting Book -- available on-line:
      http://www.amazon.com/exec/obidos/IS...icmetalproducA

      Comment


        #4
        Re: Volume pricing in fixed quantity increments

        Thanks Kent. I came to the same conclusion. I was interested to see if I missed something.
        Thanks,
        Chet Vincentz
        [email protected]

        www.electrodyne.cc Quality Motoring Accessories
        www.racdyn-usa.com BMW, MINI & Porsche performance
        www.artisticartifacts.com Creative art materials

        Comment


          #5
          Re: Volume pricing in fixed quantity increments

          You could modify the PROD page template to check if the customer is part of the price group, if they are output a select drop down vs a input box for the quantity.

          Code:
          <mvt:do name="l.return" file="g.Module_Feature_PGR_DB" value="PriceGroup_Load_Name( 'Test', l.pricegroup )" />
          
          
          <mvt:if expr="l.return EQ 1">
              <mvt:do name="l.exists" file="g.Module_Feature_PGR_DB" value="PriceGroupXCustomer_Load( l.pricegroup:id, g.Basket:cust_id, l.pricegroupxcustomer )" />
          </mvt:if>
          
          
          <mvt:if expr="NOT ISNULL l.pricegroupxcustomer:cust_id">
              <select name="Quantity">
                <option value="24">24</option>
                <option value="48">48</option>
                <option value="72">72</option>
                <option value="96">96</option>
              </select>
          <mvt:else>
              <input type="text" name="Quantity" value="1" class="product-quantity-input textfield">
          </mvt:if>

          This module can also do what you're looking for without any coding.

          http://apps.miva.com/minimum-and-maximum-quantity.html
          Last edited by Brennan; 10-20-15, 08:43 AM.
          Brennan Heyde
          VP Product
          Miva, Inc.
          [email protected]
          https://www.miva.com

          Comment


            #6
            Re: Volume pricing in fixed quantity increments

            Hey Brennan,

            Has the app been updated to work with the groups array yet? Any update on the category minimums module?
            http://www.alphabetsigns.com/

            Comment

            Working...
            X