Browse Source

二次办理

田爽 11 months ago
parent
commit
78b42b39c5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Hotline.Api/Controllers/OrderController.cs

+ 2 - 2
src/Hotline.Api/Controllers/OrderController.cs

@@ -4737,7 +4737,7 @@ public class OrderController : BaseController
 	{
         var model = await _orderSecondaryHandlingApplication.Entity(dto.Id, HttpContext.RequestAborted);
         if (model == null || model.State != ESecondaryHandlingState.Apply)
-            throw UserFriendlyException.SameMessage("无效特提审批信息!");
+            throw UserFriendlyException.SameMessage("无效二次办理审批信息!");
         await _orderSecondaryHandlingApplication.AuditAsync(dto, model, HttpContext.RequestAborted);
 	}
 
@@ -4754,7 +4754,7 @@ public class OrderController : BaseController
 		{
 			var model = await _orderSecondaryHandlingApplication.Entity(item, HttpContext.RequestAborted);
 			if (model == null || model.State != ESecondaryHandlingState.Apply)
-				throw UserFriendlyException.SameMessage("无效特提审批信息!");
+				throw UserFriendlyException.SameMessage("无效二次办理审批信息!");
 			await _orderSecondaryHandlingApplication.AuditAsync(dto, model, HttpContext.RequestAborted);
 		}
 	}