I'm working on a Magento store, containing 3,000 products, with a main stock and a main price updated automatically from SAGE (each 5 minutes).
Here is the specificity : products can be both IN THE MAIN STOCK and IN THE REFURB STOCK, with different prices. SAGE tell me, each 5 minutes, if the product is in the refurb stock, and what is the refurb price. That can concern 20 products, or 100 products in the same time.
For each product I have from SAGE:
- stock
- price
- stock_refurb
- price_refurb
I know about configurable product, but I think this is a pity to manage 9,000 products in the back-office (3,000 configurable, 3,000 simple in main stock, 3,000 simple in refurb stock), for maybe only 20 products in the refurb stock at the same time...
I have also thought about creating a simple temporary copy of the simple product (in main stock) when I have the product in the refurb stock, but I need to keep the historic of the orders for the customers. And if the Main stock product changes (description, images or else), I need to maintain the Refurb stock product consistant.
Am I missing something ?
Related
I have a woocommerce shop with 3 products (rolling lawns). These products have many different pricing configurations based on geolocation (for delivery) of the customer and quantity(meters) selected. So for all the different quantity levels (below 60 meters, below 100 meters,...) and the zip code I have a product variation for this product with its own price. Now a requirement is that on a specific page I have to show, based on the input of zip code and quantity, a product which the user can add to cart. The price has to adapt to the input of course, thats why I want to use the variation which has the price per meter and multiply it with the quantity. I cannot figure out how to display the needed variation as a product where the customer can click "add to cart". Is this possible? Or have I failed the topic and should solve this a total other way and not with variations?
It is evident that Magento always displays the lowest price of the original price, special price, etc.
I have a condition where I have to display the customer specific price that comes from an ERP system. Let's call it special price. If that special price is higher than the product's price, Magento obviously chooses the least one.
The question, is there any way to override this in a smooth way? Because regardless of the products' price, the requirement is to display the customer specific price from the ERP system on Magento.If there is no customer specific price available, it is OK to fallback to the products' price.
Override
Mage_Catalog_Model_Product_Type_Price
Check Customer specific price against Products price and Do the logic
If I have many products on one category and I want to give discounts for specific quantity like: 2 for 10% off, 3 for 15% off and 4 for 20% off in any product they purchased on that same category.
I've tried to find extensions in opencart but I didn't found one. Does anyone knows any extension for this in opencart?
Thank you.
This features is already exits int the open cart system.
Go to that product form in the admin panel,
Home -> Product-> In product form there is a Discount tab,you can set price for every product according to the quantity.
I am building an online shop where I want to display on the category page and also on the product page the special price also when the qty is 0 and stock is manageable. The idea is to say that the product can be on demand in 24-48 hours and it has a discount but the product is not in actual stock of the client but it can arrive to the customer in 24-48 hours.
How can I make this in Magento because when I look now is taking only the original price and not the promotional price when qty is 0.
in magento version 1.9.1.0 it displays product with special price if it is out of stock so no need to change in code in magento. if not display there then use
echo $_product->getFinalPrice();
for display promotional price.
From what it appears you simply want to discount active in stock products and stop doing so when they're out of stock and then notify the customers that they have a lead time of 24-48 hours if so.
There's a Magento inventory option to do just that:
admin/system_config/edit/section/cataloginventory
Then you need to add a promo that discounts products that are quantity > 0
The promo would reduce necessary products to the 'regular price' but not if their inventory is 0.
admin/promo_quote/new
By default Magento does not give you those promotions so you'd have to use a third party module for such detection/discount such as Amasty which has some of the most robust, stable, compatibly modules in the business:
https://amasty.com/
In woo commerce there is no such thing available to set different prices for a product that adds up together to show total price of the product.
For example in Silver rates for silver / Kg are different and manufacturing rates for each product are different.
So for each product on product page i want to mention the total prices of single product mentioning the rates put up for each thing:
example (to be shown on product page) -
silver coin 8gm - 400 Rs (these rates are on the basis of cost/Gm . Here 50.0/Gm )
manufacturing cost- 110 Rs
Total prices : 510 Rs
Also after all shopping , i also have to apply shipping charges in the cart , depending upon the area etc. Which is not a problem for me. However i need to solve this problem for multiple rates for single product ? any solutions?