|
@@ -5839,7 +5839,7 @@ public class OrderController : BaseController
|
|
|
{
|
|
|
var special = await _orderSpecialRepository.Queryable().Where(x => x.OrderId == dto.OrderId && x.State == 0).AnyAsync();
|
|
|
if (special)
|
|
|
- throw new UserFriendlyException("当前工单特提审批中,请审批后再操作!");
|
|
|
+ throw UserFriendlyException.SameMessage("当前工单特提审批中,请审批后再操作!");
|
|
|
if (string.IsNullOrEmpty(dto.StepId))
|
|
|
{
|
|
|
await _orderRepository.Updateable().SetColumns(o => new Orders.Order() { SignerId = dto.Handler.UserId, SignerName = dto.Handler.Username })
|