Skip to main content

Overstocked Clearance: Everything Must Go!

Welcome to the most heavily discounted section of the CampSmart End of Financial Year Sale—our Overstocked Must Go category. As June 30th fast approaches, our Sydney warehouse is officially at capacity. To make room for incoming spring inventory, we have taken our biggest price-chopper to excess stock, surplus bulk buys, and end-of-line items.

If you are hunting for the absolute best bargains of the year, you are in the right place. These are premium caravan, RV, and camping essentials priced strictly to clear.

Why Shop the Overstocked Category?

When we say everything must go, we mean it. Here is why you should take advantage of this specific clearance section:

  • The Deepest Price Cuts: These items feature the largest percentage discounts across our entire EOFY event.

  • Ready for Immediate Dispatch: Every product listed here is sitting on our warehouse shelves right now, meaning no supplier delays and lightning-fast shipping directly to your door.

  • Stack Your Savings: Bundle these bargains to easily reach your next discount tier.

  • Strictly Limited Quantities: The prices are based solely on our current excess stock levels. Once an item sells out, it will be removed from this page, and the discount will be gone for good.

Clear the Warehouse With Us!

There is no better time to stock up on spare parts, grab that extra privacy screen, or finally replace your worn-out annexe matting. Because these prices are so low, stock moves incredibly fast.

Do not wait until the end of the month to secure your gear. Browse the Overstocked Must Go category right now, add your essentials to the cart, and help us clear the warehouse before the financial year closes!

Footer
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }