Class MyReplenishmentOrdersController


@Controller @RequestMapping("/my-account") public class MyReplenishmentOrdersController extends AbstractSearchPageController
  • Field Details

  • Constructor Details

    • MyReplenishmentOrdersController

      public MyReplenishmentOrdersController()
  • Method Details

    • myReplenishment

      @RequestMapping(value="/my-replenishment", method=GET) public String myReplenishment(@RequestParam(value="page",defaultValue="0") int page, @RequestParam(value="show",defaultValue="Page") AbstractSearchPageController.ShowMode showMode, @RequestParam(value="sort",required=false) String sortCode, org.springframework.ui.Model model) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • cancelReplenishment

      @PostMapping("/my-replenishment/cancel/{jobCode:.*}") public String cancelReplenishment(@PathVariable("jobCode") String jobCode, org.springframework.ui.Model model, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectModel) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • confirmCancelReplenishment

      @RequestMapping(value="/my-replenishment/confirmation/cancel/{jobCode:.*}", method=GET) public String confirmCancelReplenishment(@PathVariable("jobCode") String jobCode, org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • replenishmentDetails

      @RequestMapping(value="/my-replenishment/{jobCode:.*}", method=GET) public String replenishmentDetails(@RequestParam(value="page",defaultValue="0") int page, @RequestParam(value="show",defaultValue="Page") AbstractSearchPageController.ShowMode showMode, @RequestParam(value="sort",required=false) String sortCode, @PathVariable("jobCode") String jobCode, org.springframework.ui.Model model) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • cancelReplenishmentFromDetailPage

      @PostMapping("/my-replenishment/detail/cancel/{jobCode:.*}") public String cancelReplenishmentFromDetailPage(@PathVariable("jobCode") String jobCode, org.springframework.ui.Model model, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectModel) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • confirmCancelReplenishmentFromDetailsPage

      @RequestMapping(value="/my-replenishment/detail/confirmation/cancel/{jobCode:.*}", method=GET) public String confirmCancelReplenishmentFromDetailsPage(@PathVariable("jobCode") String jobCode, org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • replenishmentOrderDetail

      @RequestMapping(value="/my-replenishment/{jobCode:.*}/{orderCode:.*}", method=GET) public String replenishmentOrderDetail(@PathVariable("jobCode") String jobCode, @PathVariable("orderCode") String orderCode, org.springframework.ui.Model model) throws CMSItemNotFoundException
      Throws:
      CMSItemNotFoundException
    • getProductVariantMatrixForResponsive

      @RequestMapping(value="/my-replenishment/{jobCode:.*}/getReadOnlyProductVariantMatrix", method=GET) public String getProductVariantMatrixForResponsive(@PathVariable("jobCode") String jobCode, @RequestParam("productCode") String productCode, org.springframework.ui.Model model)