use of controllers.catalog.Orders.OrderDetails in project coprhd-controller by CoprHD.
the class ScheduledOrders method edit.
@FlashException("list")
public static void edit(String id) {
OrderDetails details = new OrderDetails(id);
details.catalogService = CatalogServiceUtils.getCatalogService(details.order.getCatalogService());
ScheduleEventForm scheduleEventForm = new ScheduleEventForm(details);
angularRenderArgs().put("scheduler", scheduleEventForm);
render(scheduleEventForm, details);
}
Aggregations