public ActionResult EndProductMakeByProductId(string id, string batchNo)
        {
            var result = _kitchenService.EndSubProductType(id, batchNo, UserCache.CurrentUser.Id);

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