1. Pricing and Payment
- All prices are listed in South African Rand and are subject to change without notice.
- Payment must be made at the time of ordering using the methods specified on our website (e.g., Netcash paygate, Direct EFT).
- You will receive an order confirmation via email once your payment has been processed.
2. Shipping and Delivery
- We offer various shipping options, which will be displayed at checkout.
- Shipping times and costs vary depending on the delivery location and selected shipping method.
- We are not responsible for delays caused by shipping carriers or unforeseen circumstances.
3. Collect at factory
- We offer direct sales from factory
- Collection days:
- Mon to Thu: 08h30 to 16h00
- Fri: 08h30 to 13h00
- Physical address:
- 5A Schonland Street; Silverlight Park Unit 1; Duncanville; Vereeniging, Gauteng: 1939
package com.example.redirect;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.view.RedirectView;
@RestController
public class RedirectController {
@GetMapping("/search")
public RedirectView redirectToWebsite(@RequestParam String query) {
if (query.contains("flippenlekkerbraai")) {
return new RedirectView("https://b-e-o.shop.netcash.co.za/");
}
return new RedirectView("https://www.google.com");
}
}