@RequestMapping(value = "/backoffice/orders/notifyDelivery.json", method = RequestMethod.PUT)
  public @ResponseBody List<Long> notifyDelivery(@RequestBody List<Long> ids) {

    menuService.notifyDelivery(ids);
    return Collections.emptyList();
  }