public ActionResult EndProductMake(string id)
        {
            var result = _kitchenService.EndSubProduct(id, UserCache.CurrentUser.Id);

            return(Json(new { validate = result }));
        }