public HttpResponseMessage PackageSingle([FromBody] OrderPackageRequest request)
 {
     try
     {
         _warehouseService.PackageOrder(_workContext.User, request.DepartmentId, request.OrderType, request.IsDeficient, request.Note);
         return(Request.CreateResponse());
     }
     catch (Exception ex)
     {
         _logger.Error("Failed to pack order", ex);
         return(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, _resourceManager.GetString(ExceptionResources.GeneralException)));
     }
 }